メニュー要素にフックアウトプットを挿入したい。
ストアは、右側のサイドバーをフックするprestashopのモジュールです。
メニュー要素にストアモジュールの出力をロードしたい
ブロック接点モジュールフック機能
public function hookDisplayRightColumn()
{
global $smarty;
$smarty->assign(array(
'telnumber' => Configuration::get('blockcontact_telnumber'),
'email' => Configuration::get('blockcontact_email')
));
return $this->display(__FILE__, 'blockcontact.tpl');
}
メニュー要素でこのメソッド出力を返す方法でこのモジュールを起動したいと思います。