0) { require SYS_PATH.'package'.EXT; Package::load(Config::get('application.packages')); } // -------------------------------------------------------------- // Execute the global "before" filter. // -------------------------------------------------------------- $response = Routing\Filter::call('before', array(), true); // -------------------------------------------------------------- // Route the request and call the appropriate route function. // -------------------------------------------------------------- if (is_null($response)) { if (in_array($module = Request::segment(1), Config::get('application.modules'))) { define('ACTIVE_MODULE', $module); $path = MODULE_PATH.$module.'/'; if (file_exists($filters = $path.'filters'.EXT)) { Routing\Filter::register(require $filters); } } else { define('ACTIVE_MODULE', 'application'); $path = APP_PATH; } $route = Routing\Router::make(Request::method(), Request::uri(), new Routing\Loader($path))->route(); $response = (is_null($route)) ? Response::error('404') : $route->call(); } else { $response = Response::prepare($response); } // -------------------------------------------------------------- // Execute the global "after" filter. // -------------------------------------------------------------- Routing\Filter::call('after', array($response)); // -------------------------------------------------------------- // 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();