vincentsb Posted April 11, 2016 Share Posted April 11, 2016 Bonjour, Actuellement en train de tester mon module sur un presta 1.5.6.2 je rencontre un conflit avec le module Expeditor Inet (version 2.3.3). Dans mon module j'utilise le hook DisplayBackOfficeTop avec le code suivant : public function hookDisplayBackOfficeTop() { $this->context->controller->addCss($this->_path . 'css/admin.css', 'screen'); } Une fois mon module installé, je me rend sur le module Expeditor Inet et j'ai une fatal error : Fatal error: Call to undefined method AdminExpeditor::addCss() in /home/public_html/modules/monmodule/monmodule.php on line 373 Et à la ligne 373 ce trouve le code du hook DisplayBackOfficeTop affiché plus haut. J'ai tenté de trouver une réponse sur internet, sans succès. Cordialement, Link to comment Share on other sites More sharing options...
mika87 Posted April 27, 2016 Share Posted April 27, 2016 J'ai rencontré le même problème avec un Prestashop 1.5.6.1 et le module Expeditor Inet 2.3.12. Solution: Rajouter les méthodes addCSS et addJS dans le fichier AdminExpeditor.php public function addCSS() {}public function addJS () {} Voilà si ça peut aider quelqu'un... 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