我想在我的菜单元素中插入一个挂钩。
Store 是 prestashop 中的一个模块,它钩住右侧栏。
我想在我的菜单 elem 中加载 store 模块输出
blockcontact 模块钩子函数
public function hookDisplayRightColumn()
{
global $smarty;
$smarty->assign(array(
'telnumber' => Configuration::get('blockcontact_telnumber'),
'email' => Configuration::get('blockcontact_email')
));
return $this->display(__FILE__, 'blockcontact.tpl');
}
我想通过一些在我的菜单元素中返回这个方法输出的方式来触发这个模块。