SYSPATH/classes/Kohana/Session.php [ 325 ]
320 }
321 }
322 catch (Exception $e)
323 {
324 // Error reading the session, usually a corrupt session.
325 throw new Session_Exception('Error reading session data.', NULL, Session_Exception::SESSION_CORRUPT);
326 }
327
328 if (is_array($data))
329 {
330 // Load the data locally
-
SYSPATH/classes/Kohana/Session.php [ 125 ] » Kohana_Session->read(arguments)
0NULL
120 // Enable or disable encryption of data 121 $this->_encrypted = $config['encrypted']; 122 } 123 124 // Load the session 125 $this->read($id); 126 } 127 128 /** 129 * Session object is rendered to a serialized string. If encryption is 130 * enabled, the session will be encrypted. If not, the output string will -
SYSPATH/classes/Kohana/Session.php [ 54 ] » Kohana_Session->__construct(arguments)
0array(2) ( "name" => string(8) "homeinfo" "lifetime" => integer 0 )
1NULL
49 50 // Set the session class name 51 $class = 'Session_'.ucfirst($type); 52 53 // Create a new session instance 54 Session::$instances[$type] = $session = new $class($config, $id); 55 56 // Write the session at shutdown 57 register_shutdown_function(array($session, 'write')); 58 } 59 -
APPPATH/classes/Controller/Site.php [ 35 ] » Kohana_Session::instance()
30 // Set the language 31 I18n::Lang($this->request->param('lang')); 32 33 // Controller variables 34 35 $this->session = Session::instance(); 36 37 $this->controller = strtolower($this->request->controller()); 38 $this->action = strtolower($this->request->action()); 39 $this->detect = $detect; 40 -
SYSPATH/classes/Kohana/Controller.php [ 69 ] » Controller_Site->before()
64 * @return Response 65 */ 66 public function execute() 67 { 68 // Execute the "before action" method 69 $this->before(); 70 71 // Determine the action to use 72 $action = 'action_'.$this->request->action(); 73 74 // If the action doesn't exist, it's a 404 -
{PHP internal call} » Kohana_Controller->execute()
-
SYSPATH/classes/Kohana/Request/Client/Internal.php [ 97 ] » ReflectionMethod->invoke(arguments)
0object Controller_Product(11)
{ protected session => NULL public template => object View(2){ protected _file => string(65) "/home/dasl1/homeinfo.hu/public_html/termekek/app/views/layout.php" protected _data => array(0) }public SimplePayConfig => NULL public szamlaAgentKey => NULL public szamlaPrefix => NULL public nyugtaPrefix => NULL public auto_render => bool TRUE public request => object Request(19){ protected _requested_with => NULL protected _method => string(3) "GET" protected _protocol => string(8) "HTTP/1.1" protected _secure => bool TRUE protected _referrer => NULL protected _route => object Route(5)public response => object Response(5){ protected _filters => array(0) protected _uri => string(41) "(<lang>(/<controller>(/<action>(/<id>))))" protected _regex => array(2) ( "lang" => string(4) "(hu)" "id" => string(2) ".+" ) protected _defaults => array(3) ( "lang" => string(2) "hu" "controller" => string(4) "home" "action" => string(7) "default" ) protected _route_regex => string(105) "#^(?:(?P<lang>(hu))(?:/(?P<controller>[^/.,;?\n]++)(?:/(?P<action>[^/.,;?\n]++)(?:/(?P<id>.+))?)?)?)?$#uD" }protected _routes => array(0) protected _header => object HTTP_Header(0){ }protected _body => NULL protected _directory => string(0) "" protected _controller => string(7) "Product" protected _action => string(4) "full" protected _uri => string(24) "hu/product/full/1026917/" protected _external => bool FALSE protected _params => array(2) ( "lang" => string(2) "hu" "id" => string(7) "1026917" ) protected _get => array(0) protected _post => array(0) protected _cookies => array(1) ( "homeinfo" => NULL ) protected _client => object Request_Client_Internal(9){ protected _previous_environment => NULL protected _cache => NULL protected _follow => bool FALSE protected _follow_headers => array(1) ( 0 => string(13) "Authorization" ) protected _strict_redirect => bool TRUE protected _header_callbacks => array(1) ( "Location" => string(34) "Request_Client::on_header_location" ) protected _max_callback_depth => integer 5 protected _callback_depth => integer 1 protected _callback_params => array(0) }}{ protected _status => integer 200 protected _header => object HTTP_Header(0)public module_config => object Config_Group(0){ }protected _body => string(0) "" protected _cookies => array(0) protected _protocol => string(8) "HTTP/1.1" }{ }public site_config => object Config_Group(3){ public site_suffix => string(11) "HOMEINFO.hu" public meta => array(2) ( "index" => array(3) ( "title" => string(9) "Termékek" "description" => string(13) "[description]" "keywords" => string(10) "[keywords]" ) "page" => array(3) ( "title" => string(52) "A legjobb márkák, stílus és minőség egy helyen" "description" => string(0) "" "keywords" => string(0) "" ) ) public pagination => array(3) ( "items_per_page" => integer 24 "max_left_pages" => integer 4 "max_right_pages" => integer 4 ) }}92 93 // Create a new instance of the controller 94 $controller = $class->newInstance($request, $response); 95 96 // Run the controller's execute() method 97 $response = $class->getMethod('execute')->invoke($controller); 98 99 if ( ! $response instanceof Response) 100 { 101 // Controller failed to return a Response. 102 throw new Kohana_Exception('Controller failed to return a Response'); -
SYSPATH/classes/Kohana/Request/Client.php [ 114 ] » Kohana_Request_Client_Internal->execute_request(arguments)
0object Request(19)
{ protected _requested_with => NULL protected _method => string(3) "GET" protected _protocol => string(8) "HTTP/1.1" protected _secure => bool TRUE protected _referrer => NULL protected _route => object Route(5){ protected _filters => array(0) protected _uri => string(41) "(<lang>(/<controller>(/<action>(/<id>))))" protected _regex => array(2) ( "lang" => string(4) "(hu)" "id" => string(2) ".+" ) protected _defaults => array(3) ( "lang" => string(2) "hu" "controller" => string(4) "home" "action" => string(7) "default" ) protected _route_regex => string(105) "#^(?:(?P<lang>(hu))(?:/(?P<controller>[^/.,;?\n]++)(?:/(?P<action>[^/.,;?\n]++)(?:/(?P<id>.+))?)?)?)?$#uD" }protected _routes => array(0) protected _header => object HTTP_Header(0){ }protected _body => NULL protected _directory => string(0) "" protected _controller => string(7) "Product" protected _action => string(4) "full" protected _uri => string(24) "hu/product/full/1026917/" protected _external => bool FALSE protected _params => array(2) ( "lang" => string(2) "hu" "id" => string(7) "1026917" ) protected _get => array(0) protected _post => array(0) protected _cookies => array(1) ( "homeinfo" => NULL ) protected _client => object Request_Client_Internal(9){ protected _previous_environment => NULL protected _cache => NULL protected _follow => bool FALSE protected _follow_headers => array(1) ( 0 => string(13) "Authorization" ) protected _strict_redirect => bool TRUE protected _header_callbacks => array(1) ( "Location" => string(34) "Request_Client::on_header_location" ) protected _max_callback_depth => integer 5 protected _callback_depth => integer 1 protected _callback_params => array(0) }}1object Response(5)
{ protected _status => integer 200 protected _header => object HTTP_Header(0){ }protected _body => string(0) "" protected _cookies => array(0) protected _protocol => string(8) "HTTP/1.1" }109 $orig_response = $response = Response::factory(array('_protocol' => $request->protocol())); 110 111 if (($cache = $this->cache()) instanceof HTTP_Cache) 112 return $cache->execute($this, $request, $response); 113 114 $response = $this->execute_request($request, $response); 115 116 // Execute response callbacks 117 foreach ($this->header_callbacks() as $header => $callback) 118 { 119 if ($response->headers($header)) -
SYSPATH/classes/Kohana/Request.php [ 986 ] » Kohana_Request_Client->execute(arguments)
0object Request(19)
{ protected _requested_with => NULL protected _method => string(3) "GET" protected _protocol => string(8) "HTTP/1.1" protected _secure => bool TRUE protected _referrer => NULL protected _route => object Route(5){ protected _filters => array(0) protected _uri => string(41) "(<lang>(/<controller>(/<action>(/<id>))))" protected _regex => array(2) ( "lang" => string(4) "(hu)" "id" => string(2) ".+" ) protected _defaults => array(3) ( "lang" => string(2) "hu" "controller" => string(4) "home" "action" => string(7) "default" ) protected _route_regex => string(105) "#^(?:(?P<lang>(hu))(?:/(?P<controller>[^/.,;?\n]++)(?:/(?P<action>[^/.,;?\n]++)(?:/(?P<id>.+))?)?)?)?$#uD" }protected _routes => array(0) protected _header => object HTTP_Header(0){ }protected _body => NULL protected _directory => string(0) "" protected _controller => string(7) "Product" protected _action => string(4) "full" protected _uri => string(24) "hu/product/full/1026917/" protected _external => bool FALSE protected _params => array(2) ( "lang" => string(2) "hu" "id" => string(7) "1026917" ) protected _get => array(0) protected _post => array(0) protected _cookies => array(1) ( "homeinfo" => NULL ) protected _client => object Request_Client_Internal(9){ protected _previous_environment => NULL protected _cache => NULL protected _follow => bool FALSE protected _follow_headers => array(1) ( 0 => string(13) "Authorization" ) protected _strict_redirect => bool TRUE protected _header_callbacks => array(1) ( "Location" => string(34) "Request_Client::on_header_location" ) protected _max_callback_depth => integer 5 protected _callback_depth => integer 1 protected _callback_params => array(0) }}981 throw new Request_Exception('Unable to execute :uri without a Kohana_Request_Client', array( 982 ':uri' => $this->_uri, 983 )); 984 } 985 986 return $this->_client->execute($this); 987 } 988 989 /** 990 * Returns whether this request is the initial request Kohana received. 991 * Can be used to test for sub requests. -
DOCROOT/index.php [ 128 ] » Kohana_Request->execute()
123 /** 124 * Execute the main request. A source of the URI can be passed, eg: $_SERVER['PATH_INFO']. 125 * If no source is specified, the URI will be automatically detected. 126 */ 127 echo Request::factory(TRUE, array(), FALSE) 128 ->execute() 129 ->send_headers(TRUE) 130 ->body(); 131 }