// Installer: lite mode

git-svn-id: http://dev.prestashop.com/svn/v1/branches/1.5.x@12839 b9a71923-0436-4b27-9f14-aed3839534dd
This commit is contained in:
bMancone
2012-01-31 13:21:39 +00:00
parent 9ae0bd8726
commit 1fbf8c1ab4
+8 -8
View File
@@ -234,14 +234,14 @@ class InstallControllerHttpProcess extends InstallControllerHttp
*/
public function display()
{
$this->process_steps = array(
array('key' => 'installDatabase', 'lang' => $this->l('Create database tables')),
array('key' => 'populateDatabase', 'lang' => $this->l('Populate database tables')),
array('key' => 'configureShop', 'lang' => $this->l('Configure shop informations')),
array('key' => 'installModules', 'lang' => $this->l('Install modules')),
array('key' => 'installFixtures', 'lang' => $this->l('Install demonstration data')),
array('key' => 'installTheme', 'lang' => $this->l('Install theme')),
);
$this->process_steps = array();
$this->process_steps[] = array('key' => 'installDatabase', 'lang' => $this->l('Create database tables'));
$this->process_steps[] = array('key' => 'populateDatabase', 'lang' => $this->l('Populate database tables'));
$this->process_steps[] = array('key' => 'configureShop', 'lang' => $this->l('Configure shop informations'));
$this->process_steps[] = array('key' => 'installModules', 'lang' => $this->l('Install modules'));
if ($this->session->install_type == 'full')
$this->process_steps[] = array('key' => 'installFixtures', 'lang' => $this->l('Install demonstration data'));
$this->process_steps[] = array('key' => 'installTheme', 'lang' => $this->l('CInstall theme'));
$this->displayTemplate('process');
}
}