* @package install * @version $Id: control.php 4297 2013-01-27 07:51:45Z wwccss $ * @link http://www.zentao.net */ class install extends control { /** * Construct function. * * @access public * @return void */ public function __construct() { if(!defined('IN_INSTALL')) die(); parent::__construct(); $this->app->loadLang('user'); $this->app->loadLang('admin'); $this->config->webRoot = getWebRoot(); } /** * Index page of install module. * * @access public * @return void */ public function index() { if(!isset($this->config->installed) or !$this->config->installed) $this->session->set('installing', true); $this->view->title = $this->lang->install->welcome; if($release = $this->install->getLatestRelease()) $this->view->latestRelease = $release; $this->display(); } /** * Check the system. * * @access public * @return void */ public function step1() { $this->view->title = $this->lang->install->checking; $this->view->phpVersion = $this->install->getPhpVersion(); $this->view->phpResult = $this->install->checkPHP(); $this->view->pdoResult = $this->install->checkPDO(); $this->view->sessionResult = $this->install->checkSessionSavePath(); $this->view->sessionInfo = $this->install->getSessionSavePath(); $this->view->pdoMySQLResult = $this->install->checkPDOMySQL(); $this->view->jsonResult = $this->install->checkJSON(); $this->view->tmpRootInfo = $this->install->getTmpRoot(); $this->view->tmpRootResult = $this->install->checkTmpRoot(); $this->view->dataRootInfo = $this->install->getDataRoot(); $this->view->dataRootResult = $this->install->checkDataRoot(); $this->view->iniInfo = $this->install->getIniInfo(); $this->display(); } /** * Set configs. * * @access public * @return void */ public function step2() { $this->view->title = $this->lang->install->setConfig; $this->display(); } /** * Create the config file. * * @access public * @return void */ public function step3() { if(!empty($_POST)) { $return = $this->install->checkConfig(); if($return->result == 'ok') { $this->view = (object)$_POST; $this->view->app = $this->app; $this->view->lang = $this->lang; $this->view->config = $this->config; $this->view->title = $this->lang->install->saveConfig; $this->view->mysqldump = $this->install->getMySQLDump(); $this->display(); } else { $this->view->title = $this->lang->install->saveConfig; $this->view->error = $return->error; $this->display(); } } else { $this->locate($this->createLink('install')); } } /** * Create company, admin. * * @access public * @return void */ public function step4() { if(!empty($_POST)) { $this->install->grantPriv(); if(dao::isError()) die(js::error(dao::getError())); if($this->post->importDemoData) $this->install->importDemoData(); if(dao::isError()) echo js::alert($this->lang->install->errorImportDemoData); $this->loadModel('setting')->updateVersion($this->config->version); die(js::locate(inlink('step5'), 'parent')); } $this->view->title = $this->lang->install->getPriv; if(!isset($this->config->installed) or !$this->config->installed) { $this->view->error = $this->lang->install->errorNotSaveConfig; $this->display(); } else { $this->display(); } } /** * Join zentao community or login pms. * * @access public * @return void */ public function step5() { $this->view->title = $this->lang->install->success; $this->display(); unset($_SESSION['installing']); session_destroy(); } }