belew Posted July 26, 2012 Share Posted July 26, 2012 Bonjour, J'ai créer un controller pour permettre d'afficher une page crée par mes soins. J'ai besoin d'afficher dans cette page un module, j'ai donc créer un hook pour permettre d'accorcher mon module. Mon controller : class LexiqueControllerCore extends FrontController { public $php_self = 'lexique.php'; public function process() { parent::process(); self::$smarty->assign('HOOK_LEXIQUE', Module::hookExec('hookLexique')); } public function displayContent() { parent::displayContent(); self::$smarty->display(_PS_THEME_DIR_.'lexique.tpl'); } } Cependant, j'ai une erreur me disant que le hook n'existe pas et ca fait planter la page. Ou, et dans quelle méthode dois je mettre mon hook pour qu'il s'affiche ? Merci d'avance Link to comment Share on other sites More sharing options...
Recommended Posts
Create an account or sign in to comment
You need to be a member in order to leave a comment
Create an account
Sign up for a new account in our community. It's easy!
Register a new accountSign in
Already have an account? Sign in here.
Sign In Now