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(); }
public function getRequestData($path = null, $default = null) { return $this->route->getRequestVar($path, $default); }