Ejemplo n.º 1
0
 public function stepFinishAction()
 {
     $this->_install->setStep(Axis_Install_Model_Wizard::STEP_FINISH);
     $this->view->pageTitle = 'Axis was successfully installed';
     $this->view->user_login = $this->_session->user_login;
     $this->view->user_password = $this->_session->user_password;
     $this->view->crypt_key = $this->_session->store_cryptKey;
     $this->view->permitInstallation = $this->_session->permit_installation;
     $this->view->frontend = $this->_session->store_baseUrl;
     $this->view->backend = $this->view->frontend . '/' . $this->_session->store_adminUrl;
     $locale = $this->_session->current_locale;
     $this->_session->unsetAll();
     $this->_session->current_locale = $locale;
     $this->render('step-finish');
 }