Example #1
0
 public function run()
 {
     if (ENV == 'development') {
         $this->_Timestamp = microtime(true);
     }
     Logger::info('', false);
     $protocol = empty($_SERVER['HTTPS']) ? 'http://' : 'https://';
     Logger::debug($_SERVER['REQUEST_METHOD'] . " " . $protocol . $_SERVER['SERVER_NAME'] . $_SERVER['REQUEST_URI']);
     Logger::info('App start...');
     session_start();
     // zistenie a spustenie daneho kontrolera
     $controllerName = CLASSES_PREFIX . "Controller" . Router::getControllerName();
     if (class_exists($controllerName)) {
         Logger::debug("Loading controller {$controllerName}...");
         $this->_Controller = new $controllerName();
         $this->_Controller->run();
         $this->_Controller->render();
     } else {
         throw new Exception('Unknown controller: ' . $controllerName);
     }
     if (ENV == 'development') {
         Logger::debug("Generated in " . round((microtime(true) - $this->_Timestamp) * 1000) . " msec.");
     }
 }
Example #2
0
 /**
  * Cette fonction permet de récupérer le controleur actuel depuis l'URL
  * @return string, nom du controleur actuel
  */
 protected function getActualControllerName()
 {
     $router = new Router($_SERVER['REQUEST_URI']);
     return $router->getControllerName();
 }
Example #3
0
 /**
  * @dataProvider getNameArray
  */
 public function testGetControllerName_ReturnsCorrectDefaultString($sDefaultName)
 {
     $oRouter = new Router(array('Default_controller' => $sDefaultName, 'Default_function' => 'index'));
     $this->assertTrue($oRouter->getControllerName() == 'Controller_' . ucfirst($sDefaultName));
     unset($oRouter);
 }