Ejemplo n.º 1
0
 /**
  * Run the application.
  */
 public static function run()
 {
     // Initialize the request
     $request = new Request();
     if ($request->admin) {
         // Execute the redirect
         header('Location: ' . URL_DASHBOARD_ADMIN);
         // Exit
         exit;
     } else {
         // Initialize and dispatch the request
         $controller = new CoreController($request);
         $controller->dispatch();
     }
 }