niahoo Posted January 27, 2011 Share Posted January 27, 2011 Bonjour,Je souhaitais créer un module qui affiche plusieurs informations dans la fiche produit.Malheureusement, je me retrouve avec un des deux hooks qui ne connait pas le produit visité : class BlahBlah extends Module { // ... public function hookProductActions($params) { echo 'Actions: '; print_r(array_keys($params)); } public function hookProductFooter($params) { echo 'Footer: '; print_r(array_keys($params)); } } Donnera Footer: Array ( [0] => product [1] => category [2] => cookie [3] => cart [4] => altern ) Actions: Array ( [0] => cookie [1] => cart [2] => altern ) Or, j'aurais vraiment aimé disposer de $params['product'] dans les deux hooks. J'aimerais savoir où je peux modifier ce comportement ? Et comment choisir ce qui est envoyé aux futurs hooks que je pourrai créer.Merci !niahOo Link to comment Share on other sites More sharing options...
niahoo Posted January 28, 2011 Author Share Posted January 28, 2011 [Pas au bon endroit] 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