* * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ class sfContext { private static $instance = null; static public function getInstance() { if (!isset(self::$instance)) { self::$instance = new sfContext(); } return self::$instance; } public function getModuleName() { return ''; } public function getRequest() { static $request; if (!$request) { $request = new sfWebRequest(); $request->initialize($this); } return $request; } public function getResponse() { static $response; if (!$response) { $response = new sfWebResponse(); $response->initialize($this); } return $response; } public function getStorage() { $storage = sfStorage::newInstance('sfSessionTestStorage'); $storage->initialize($this); return $storage; } public function getUser() { static $user; if (!$user) { $user = new sfUser; $user->initialize($this); } return $user; } }