// Assigned compared products to smarty

This commit is contained in:
Damien Metzger
2013-11-04 11:00:50 +01:00
parent e03a86ad05
commit cfeeda7d9b
4 changed files with 9 additions and 6 deletions
+1 -1
View File
@@ -1543,7 +1543,7 @@ class AdminControllerCore extends Controller
'link' => $this->context->link,
'shop_name' => Configuration::get('PS_SHOP_NAME'),
'base_url' => $this->context->shop->getBaseURL(),
'tab' => $tab, // Deprecated, this tab is declared in the foreach, so it's the last tab in the foreach
'tab' => isset($tab) ? $tab : null, // Deprecated, this tab is declared in the foreach, so it's the last tab in the foreach
'current_parent_id' => (int)Tab::getCurrentParentId(),
'tabs' => $tabs,
'install_dir_exists' => file_exists(_PS_ADMIN_DIR_.'/../install'),
+5
View File
@@ -304,6 +304,10 @@ class FrontControllerCore extends Controller
foreach ($languages as $lang)
$meta_language[] = $lang['iso_code'];
$compared_products = array();
if (Configuration::get('PS_COMPARATOR_MAX_ITEM') && isset($this->context->cookie->id_compare))
$compared_products = CompareProduct::getCompareProducts($this->context->cookie->id_compare);
$this->context->smarty->assign(array(
// Usefull for layout.tpl
'mobile_device' => $this->context->getMobileDevice(),
@@ -342,6 +346,7 @@ class FrontControllerCore extends Controller
'PS_STOCK_MANAGEMENT' => Configuration::get('PS_STOCK_MANAGEMENT'),
'quick_view' => Configuration::get('PS_QUICK_VIEW'),
'shop_phone' => Configuration::get('PS_SHOP_PHONE'),
'compared_products' => is_array($compared_products) ? $compared_products : array()
));
// Add the tpl files directory for mobile