// Improve new install style (new progress bar)

git-svn-id: http://dev.prestashop.com/svn/v1/branches/1.5.x@11937 b9a71923-0436-4b27-9f14-aed3839534dd
This commit is contained in:
rMalie
2011-12-30 14:37:27 +00:00
parent b52e6a7b32
commit 9509cc987e
5 changed files with 48 additions and 63 deletions
+6 -7
View File
@@ -224,13 +224,12 @@ class InstallControllerHttpProcess extends InstallControllerHttp
public function display()
{
$this->process_steps = array(
'installDatabase',
'populateDatabase',
'configureShop',
'installModules',
'installFixtures',
'installTheme',
//'preactivation',
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->displayTemplate('process');
}