Ejemplo n.º 1
0
 public function stepConfigurationAction()
 {
     $this->_install->setStep(Axis_Install_Model_Wizard::STEP_CONFIGURATION);
     $this->_install->initStore();
     $this->view->pageTitle = 'Configuration';
     $this->view->db = array('host' => $this->_session->db_host, 'username' => $this->_session->db_username, 'dbname' => $this->_session->db_dbname, 'prefix' => $this->_session->db_prefix);
     $this->view->store = array('base_url' => $this->_session->store_baseUrl, 'use_ssl' => $this->_session->use_ssl, 'secure_url' => $this->_session->store_secureUrl, 'admin_url' => $this->_session->store_adminUrl, 'crypt_key' => $this->_session->store_cryptKey);
     $this->render('step-configuration');
 }