Exemplo n.º 1
0
 public function process()
 {
     if (ControllerService::isControllerExists('ApplicationController')) {
         ControllerService::getController('ApplicationController')->_preAction();
     }
     ControllerService::processControllerAction($this->_route->getControllerName(), $this->_route->getActionName());
     if (ControllerService::isControllerExists('ApplicationController')) {
         ControllerService::getController('ApplicationController')->_postAction();
     }
     DC::getView()->render();
 }
Exemplo n.º 2
0
 public function getRequestData($path = null, $default = null)
 {
     return $this->route->getRequestVar($path, $default);
 }