getRequest()->getControllerName(); if ($controllerName == 'install') { return; } $view = $this->getView(); $view->config = Msd_Configuration::getInstance(); $view->lang = Msd_Language::getInstance(); } /** * Get the view instance of the actual controller * * @return Zend_View */ public function getView() { if (null !== $this->_view) { return $this->_view; } else { $controller = $this->getActionController(); $this->_view = $controller->view; return $this->_view; } } }