예제 #1
0
 public function init()
 {
     parent::init();
     $frontController = \Zend_Controller_Front::getInstance();
     $routeName = $frontController->getRouter()->getCurrentRouteName();
     if ($routeName == 'clientMock') {
         $requestUri = $frontController->getRequest()->getRequestUri();
         $this->_redirect(substr($requestUri, 4));
     }
 }
예제 #2
0
 public function init()
 {
     $this->initBusiness('Group');
     parent::init();
 }
예제 #3
0
 public function init()
 {
     $this->initBusiness('User');
     parent::init();
 }
예제 #4
0
 public function init()
 {
     parent::init();
     $this->_helper->viewRenderer->setNoRender(false);
     $this->contentTypeValue = 'text/html';
 }
예제 #5
0
 public function init()
 {
     $this->initBusiness('Media');
     parent::init();
 }
예제 #6
0
 public function init()
 {
     $this->initBusiness('WebsiteSettings');
     parent::init();
 }
예제 #7
0
 public function init()
 {
     $this->initBusiness('Template');
     parent::init();
 }
예제 #8
0
 public function init()
 {
     $this->initBusiness('Feedback');
     parent::init();
 }
예제 #9
0
 public function init()
 {
     parent::init();
     $this->initBusiness('Uuid');
 }
예제 #10
0
 public function init()
 {
     $this->initBusiness('Heartbeat');
     parent::init();
 }
예제 #11
0
 public function init()
 {
     $this->initBusiness('ActionLog');
     parent::init();
 }
예제 #12
0
 public function init()
 {
     $this->initBusiness('Export');
     parent::init();
 }
예제 #13
0
 public function init()
 {
     parent::init();
     $this->_helper->viewRenderer->setNoRender();
     $this->initBusiness('Render');
 }
예제 #14
0
 public function postDispatch()
 {
     if (!$this->isForwarded && $this->_helper->viewRenderer->getNoRender()) {
         parent::postDispatch();
     }
 }