[*] BO : #PI-123 - toolbar and page title refactoring

git-svn-id: http://dev.prestashop.com/svn/v1/branches/1.5.x@14594 b9a71923-0436-4b27-9f14-aed3839534dd
This commit is contained in:
tDidierjean
2012-04-12 08:34:38 +00:00
parent ff98873fb5
commit 244a2f9102
24 changed files with 162 additions and 293 deletions
@@ -504,36 +504,29 @@ class AdminAttributesGroupsControllerCore extends AdminController
public function initToolbarTitle()
{
// Breadcrumbs
$tabs = array();
$tabs = Tab::recursiveTab($this->id, $tabs);
$tabs = array_reverse($tabs);
$this->initBreadcrumbs();
$bread_extended = $this->breadcrumbs;
$bread = '';
switch ($this->display)
{
case 'edit':
$tabs[] = array('name' => $this->l('Edit new Attribute'));
$bread_extended[] = $this->l('Edit new Attribute');
break;
case 'add':
$tabs[] = array('name' => $this->l('Add new Attribute'));
$bread_extended[] = $this->l('Add new Attribute');
break;
case 'editAttributes':
if ($this->id_attribute)
$tabs[] = array('name' => $this->l('Edit Value'));
$bread_extended[] = $this->l('Edit Value');
else
$tabs[] = array('name' => $this->l('Add new Value'));
$bread_extended[] = $this->l('Add new Value');
break;
}
// note : this should use a tpl file
foreach ($tabs as $key => $item)
$bread .= '<span class="breadcrumb item-'.$key.' ">'.$item['name'].'</span> : ';
$bread = rtrim($bread, ': ');
$this->toolbar_title = $bread;
$this->toolbar_title = $bread_extended;
}
public function initProcess()