// fix displaying subtabs link,

// fix adminHome links


git-svn-id: http://dev.prestashop.com/svn/v1/branches/1.5.x@8892 b9a71923-0436-4b27-9f14-aed3839534dd
This commit is contained in:
mMarinetti
2011-09-29 16:02:26 +00:00
parent 117583a0d0
commit e8ff5b025f
4 changed files with 73 additions and 86 deletions
+5 -18
View File
@@ -171,25 +171,25 @@ class AdminHomeControllerCore extends AdminController
private function getQuickLinks()
{
$quick_links['first'] = array(
'href' => 'index.php?controller=AdminCatalog&addcategory&token='.Tools::getAdminTokenLite('AdminCatalog'),
'href' => $this->context->link->getAdminLink('AdminCatalog').'&addcategory',
'title' => $this->l('New category'),
'description' => $this->l('Create a new category and organize your products.'),
);
$quick_links['second'] = array(
'href' => 'index.php?controller=AdminCatalog&addproduct&token='.Tools::getAdminTokenLite('AdminCatalog'),
'href' => $this->context->link->getAdminLink('AdminCatalog').'&addproduct',
'title' => $this->l('New product'),
'description' => $this->l('Fill up your catalog with new articles and attributes.'),
);
$quick_links['third'] = array(
'href' => 'index.php?controller=AdminStats&addproduct&token='.Tools::getAdminTokenLite('AdminStats'),
'href' => $this->context->link->getAdminLink('AdminStats'),
'title' => $this->l('Statistics'),
'description' => $this->l('Manage your activity with a thorough analysis of your e-shop.'),
);
$quick_links['fourth'] = array(
'href' => 'index.php?controller=AdminEmployee&addproduct&token='.Tools::getAdminTokenLite('AdminEmployee'),
'href' => $this->context->link->getAdminLink('AdminEmployees').'&addemployee',
'title' => $this->l('New employee'),
'description' => $this->l('Add a new employee account and discharge a part of your duties of shop owner.'),
);
@@ -493,7 +493,7 @@ class AdminHomeControllerCore extends AdminController
return ''; // NOK
}
}
public function display()
public function initContent()
{
$smarty = $this->context->smarty;
$smarty->assign('token',$this->token);
@@ -515,29 +515,16 @@ class AdminHomeControllerCore extends AdminController
$smarty->assign('upgrade', $upgrade);
$smarty->assign('show_screencast', $this->context->employee->show_screencast);
$smarty->assign('quick_links', $this->getQuickLinks());
$smarty->assign('monthly_statistics', $this->getMonthlyStatistics());
$smarty->assign('customers_service', $this->getCustomersService());
$smarty->assign('stats_sales', $this->getStatsSales());
$smarty->assign('last_orders',$this->getLastOrders());
$smarty->assign('tips_optimization', $this->_displayOptimizationTips());
$discover_prestashop = '<div id="discover_prestashop">
<p class="center"><img src="../img/loader.gif" alt="" /> '.$this->l('Loading...').'</p>
</div>
</div>';
$smarty->assign('discover_prestashop', $discover_prestashop);
$HOOK_BACKOFFICEHOME = Module::hookExec('backOfficeHome');
$smarty->assign('HOOK_BACKOFFICEHOME', $HOOK_BACKOFFICEHOME);
parent::display();
}
}