// adding ovverride method initProcess for display Informations Tab

git-svn-id: http://dev.prestashop.com/svn/v1/branches/1.5.x@11055 b9a71923-0436-4b27-9f14-aed3839534dd
This commit is contained in:
lLefevre
2011-12-08 15:41:12 +00:00
parent 12ea52f4f7
commit 884e7492c1
3 changed files with 29 additions and 14 deletions
+2 -2
View File
@@ -171,13 +171,13 @@ class AdminHomeControllerCore extends AdminController
private function getQuickLinks()
{
$quick_links['first'] = array(
'href' => $this->context->link->getAdminLink('AdminCatalog').'&addcategory',
'href' => $this->context->link->getAdminLink('AdminCategories').'&addcategory',
'title' => $this->l('New category'),
'description' => $this->l('Create a new category and organize your products.'),
);
$quick_links['second'] = array(
'href' => $this->context->link->getAdminLink('AdminCatalog').'&addproduct',
'href' => $this->context->link->getAdminLink('AdminProducts').'&addproduct',
'title' => $this->l('New product'),
'description' => $this->l('Fill up your catalog with new articles and attributes.'),
);