SYSPATH/classes/kohana/request/client/internal.php [ 87 ]
82
83 try
84 {
85 if ( ! class_exists($prefix.$controller))
86 {
87 throw new HTTP_Exception_404('The requested URL :uri was not found on this server.',
88 array(':uri' => $request->uri()));
89 }
90
91 // Load the controller using reflection
92 $class = new ReflectionClass($prefix.$controller);
-
SYSPATH/classes/kohana/request/client.php [ 64 ] » Kohana_Request_Client_Internal->execute_request(arguments)
0
object Request(21)
{ protected _requested_with => NULL protected _method => string(3) "GET" protected _protocol => NULL protected _secure => bool FALSE protected _referrer => NULL protected _route => object Route(5)
{ protected _callback => NULL protected _uri => string(27) "errors/<action>(/<message>)" protected _regex => array(2) ( "action" => string(7) "[0-9]++" "message" => string(2) ".+" ) protected _defaults => array(1) ( "controller" => string(6) "errors" ) protected _route_regex => string(53) "#^errors/(?P<action>[0-9]++)(?:/(?P<message>.+))?$#uD" }
protected _routes => NULL protected _response => NULL protected _header => object HTTP_Header(0){ }
protected _body => NULL protected _directory => string(0) "" protected _controller => string(6) "errors" protected _action => string(3) "404" protected _uri => string(10) "errors/404" protected _external => bool FALSE protected _params => array(0) protected _get => array(0) protected _post => array(0) protected _cookies => array(0) protected _client => object Request_Client_Internal(2){ protected _previous_environment => NULL protected _cache => NULL }
public _injected_routes => array(0) }59 public function execute(Request $request) 60 { 61 if ($this->_cache instanceof HTTP_Cache) 62 return $this->_cache->execute($this, $request); 63 64 return $this->execute_request($request); 65 } 66 67 /** 68 * Processes the request passed to it and returns the response from 69 * the URI resource identified.
-
SYSPATH/classes/kohana/request.php [ 1138 ] » Kohana_Request_Client->execute(arguments)
0
object Request(21)
{ protected _requested_with => NULL protected _method => string(3) "GET" protected _protocol => NULL protected _secure => bool FALSE protected _referrer => NULL protected _route => object Route(5)
{ protected _callback => NULL protected _uri => string(27) "errors/<action>(/<message>)" protected _regex => array(2) ( "action" => string(7) "[0-9]++" "message" => string(2) ".+" ) protected _defaults => array(1) ( "controller" => string(6) "errors" ) protected _route_regex => string(53) "#^errors/(?P<action>[0-9]++)(?:/(?P<message>.+))?$#uD" }
protected _routes => NULL protected _response => NULL protected _header => object HTTP_Header(0){ }
protected _body => NULL protected _directory => string(0) "" protected _controller => string(6) "errors" protected _action => string(3) "404" protected _uri => string(10) "errors/404" protected _external => bool FALSE protected _params => array(0) protected _get => array(0) protected _post => array(0) protected _cookies => array(0) protected _client => object Request_Client_Internal(2){ protected _previous_environment => NULL protected _cache => NULL }
public _injected_routes => array(0) }1133 throw new Request_Exception('Unable to execute :uri without a Kohana_Request_Client', array( 1134 ':uri' => $this->_uri, 1135 )); 1136 } 1137 1138 return $this->_client->execute($this); 1139 } 1140 1141 /** 1142 * Returns whether this request is the initial request Kohana received. 1143 * Can be used to test for sub requests.
-
DOCROOT/index.php [ 115 ] » Kohana_Request->execute()
110 { 111 $request = $request->execute(); 112 } 113 catch(Kohana_HTTP_Exception_404 $e) 114 { 115 $request = Request::factory('errors/404')->execute(); 116 } 117 118 echo $request->send_headers()->body();