handle(); }); set_error_handler(function($number, $error, $file, $line) { require_once SYS_PATH.'exception/handler'.EXT; require_once SYS_PATH.'exception/examiner'.EXT; require_once SYS_PATH.'file'.EXT; Exception\Handler::make(new \ErrorException($error, $number, 0, $file, $line))->handle(); }); register_shutdown_function(function() { if ( ! is_null($error = error_get_last())) { require_once SYS_PATH.'exception/handler'.EXT; require_once SYS_PATH.'exception/examiner'.EXT; require_once SYS_PATH.'file'.EXT; extract($error); Exception\Handler::make(new \ErrorException($message, $type, 0, $file, $line))->handle(); } }); // -------------------------------------------------------------- // Set the default timezone. // -------------------------------------------------------------- date_default_timezone_set(Config::get('application.timezone')); // -------------------------------------------------------------- // Load the session. // -------------------------------------------------------------- if (Config::get('session.driver') != '') { Session::load(Cookie::get('laravel_session')); } // -------------------------------------------------------------- // Load all of the core routing classes. // -------------------------------------------------------------- require SYS_PATH.'request'.EXT; require SYS_PATH.'response'.EXT; require SYS_PATH.'routing/route'.EXT; require SYS_PATH.'routing/router'.EXT; require SYS_PATH.'routing/loader'.EXT; require SYS_PATH.'routing/filter'.EXT; // -------------------------------------------------------------- // Load the packages that are in the auto-loaded packages array. // -------------------------------------------------------------- if (count(Config::get('application.packages')) > 0) { require SYS_PATH.'package'.EXT; Package::load(Config::get('application.packages')); } // -------------------------------------------------------------- // Determine the module that should handle the request. // -------------------------------------------------------------- $segments = explode('/', Request::uri()); define('ACTIVE_MODULE', (in_array($segments[0], Config::get('application.modules'))) ? $segments[0] : 'application'); // -------------------------------------------------------------- // Determine the path to the root of the active module. // -------------------------------------------------------------- define('ACTIVE_MODULE_PATH', (ACTIVE_MODULE == 'application') ? APP_PATH : MODULE_PATH.ACTIVE_MODULE.'/'); // -------------------------------------------------------------- // Register the filters for the active module. // -------------------------------------------------------------- Routing\Filter::register(require APP_PATH.'filters'.EXT); if (ACTIVE_MODULE !== 'application' and file_exists($filters = ACTIVE_MODULE_PATH.'filters'.EXT)) { Routing\Filter::register(require $filters); } // -------------------------------------------------------------- // Call the "before" filter for the application and module. // -------------------------------------------------------------- foreach (array('before', ACTIVE_MODULE.'::before') as $filter) { $response = Routing\Filter::call($filter, array(Request::method(), Request::uri()), true); if ( ! is_null($response)) break; } // -------------------------------------------------------------- // Route the request and get the response from the route. // -------------------------------------------------------------- if (is_null($response)) { $route = Routing\Router::make(Request::method(), Request::uri(), new Routing\Loader(ACTIVE_MODULE_PATH))->route(); $response = (is_null($route)) ? Response::error('404') : $route->call(); } $response = Response::prepare($response); // -------------------------------------------------------------- // Call the "after" filter for the application and module. // -------------------------------------------------------------- foreach (array(ACTIVE_MODULE.'::after', 'after') as $filter) { Routing\Filter::call($filter, array($response, Request::method(), Request::uri())); } // -------------------------------------------------------------- // Stringify the response. // -------------------------------------------------------------- $response->content = (string) $response->content; // -------------------------------------------------------------- // Close the session. // -------------------------------------------------------------- if (Config::get('session.driver') != '') { Session::close(); } // -------------------------------------------------------------- // Send the response to the browser. // -------------------------------------------------------------- $response->send();