I want to insert a hook out put to my menu element.
Store is a module in prestashop which hook right side bar.
I want to load the store module output in my menu elem
blockcontact module hook function
public function hookDisplayRightColumn()
{
global $smarty;
$smarty->assign(array(
'telnumber' => Configuration::get('blockcontact_telnumber'),
'email' => Configuration::get('blockcontact_email')
));
return $this->display(__FILE__, 'blockcontact.tpl');
}
i want fire this module by some how which return this method output in my menu element.