public function init()
 {
     parent::init();
     $this->_formHelper = $this->getHelper('ajaxForm');
     $this->_languages = Application_Model_TranslateMapper::getInstance()->getLanguages();
     $this->_loadParams();
 }
 public function init()
 {
     //if login action do not check
     if ($this->getRequest()->getActionName() == 'login') {
         $this->_checkAuth = false;
     }
     parent::init();
 }
 public function init()
 {
     parent::init();
     $this->_formHelper = $this->getHelper('ajaxForm');
     $criteria['application_id'] = $this->_applicationId;
     $this->_modules = Application_Model_ModuleMapper::getInstance()->fetchAll($criteria);
     $this->_languages = Application_Model_TranslateMapper::getInstance()->getLanguages();
     $this->_defaultLang = Application_Model_TranslateMapper::getInstance()->getDefaultLang();
 }
 public function init()
 {
     parent::init();
     $this->_formHelper = $this->getHelper('ajaxForm');
 }
 public function init()
 {
     parent::init();
     $this->_formHelper = $this->getHelper('ajaxDialogForm');
     $this->_defaultLang = Application_Model_TranslateMapper::getInstance()->getDefaultLang();
 }
 public function init()
 {
     parent::init();
 }
 public function init()
 {
     $this->_checkAuth = false;
     $this->_formHelper = $this->getHelper('ajaxForm');
     parent::init();
 }
 protected function _initLayout()
 {
     $this->_helper->layout->disableLayout();
     $this->_helper->viewRenderer->setNoRender();
     parent::_initLayout();
 }