Ejemplo n.º 1
0
 private function _getConfigContent()
 {
     $config = array();
     foreach ($this->_session as $key => $value) {
         $config[$key] = $value;
     }
     if (empty($config['store_cryptKey'])) {
         $config['store_cryptKey'] = md5($this->_install->generateKey());
     }
     $this->view->config = $config;
     return $this->view->render('index/config.phtml');
 }