Jump to content

Conflit entre deux modules


Recommended Posts

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

  • 3 weeks later...

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

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 account

Sign in

Already have an account? Sign in here.

Sign In Now
×
×
  • Create New...