SYSPATH/classes/kohana/request.php [ 1046 ]
1041
1042 // Determine the action to use
1043 $action = empty($this->action) ? Route::$default_action : $this->action;
1044
1045 // Execute the main action with the parameters
1046 $class->getMethod('action_'.$action)->invokeArgs($controller, $this->_params);
1047
1048 // Execute the "after action" method
1049 $class->getMethod('after')->invoke($controller);
1050 }
1051 catch (Exception $e)
-
SYSPATH/classes/kohana/request.php [ 1046 ] » ReflectionClass->getMethod(arguments)
0string(9) "action_et"1041 1042 // Determine the action to use 1043 $action = empty($this->action) ? Route::$default_action : $this->action; 1044 1045 // Execute the main action with the parameters 1046 $class->getMethod('action_'.$action)->invokeArgs($controller, $this->_params); 1047 1048 // Execute the "after action" method 1049 $class->getMethod('after')->invoke($controller); 1050 } 1051 catch (Exception $e) -
APPPATH/bootstrap.php [ 99 ] » Kohana_Request->execute()
94 /** 95 * Execute the main request. A source of the URI can be passed, eg: $_SERVER['PATH_INFO']. 96 * If no source is specified, the URI will be automatically detected. 97 */ 98 echo Request::instance() 99 ->execute() 100 ->send_headers() 101 ->response; 102 } -
DOCROOT/index.php [ 103 ] » require(arguments)
0string(41) "/var/www/prices/application/bootstrap.php"98 // Load empty core extension 99 require SYSPATH.'classes/kohana'.EXT; 100 } 101 102 // Bootstrap the application 103 require APPPATH.'bootstrap'.EXT;
Eesti
English
Русский