doodoomi Posted March 13, 2015 Share Posted March 13, 2015 (edited) Bonjour Je début en module prestashop et je suis face à un petit soucis. J'arrive bien à créer, installer le module et à ajouter un onglet dans le menu de l'administration, par contre quand je clique sur mon menu je me retrouve avec l'erreur "Contrôleur introuvable" J'ai retourné le soucis dans tous les sens, sauf le bon visiblement car je ne m'en sors pas. Ma structure de fichier : La création de mon onglet (bwperso.php) : public function addAdminTab() { $tab = new Tab(); $this->name = array(); foreach(Language::getLanguages(false) as $lang){ $tab->name[(int) $lang['id_lang']] = 'Personnalisation des produits'; } $tab->class_name = 'AdminBwPerso'; $tab->module = $this->name; $tab->id_parent = 0; if (!$tab->add()) return false; return true; } Le contenu de mon controller (controllers/admin/AdminBwPerso.php ) : class AdminBwPersoController extends ModuleAdminController { public function __construct(){ parent :: __construct(); $this->context = Context::getContext(); } } Un grand merci à ceux qui se pencheront sur mon problème ... Edited March 13, 2015 by doodoomi (see edit history) Link to comment Share on other sites More sharing options...
J. Danse Posted March 13, 2015 Share Posted March 13, 2015 Bonjour, Il y a confusion entre $this et $tab, dans l'installation du controller. $this->name = array(); [...] $tab->module = $this->name; Il vous faut éditer le premier $this ci-dessus pour y mettre $tab, au vu de cotre code. Le controller est introuvable car non associé au module, sur le coup Link to comment Share on other sites More sharing options...
doodoomi Posted March 13, 2015 Author Share Posted March 13, 2015 Quelle étourderie ... Ca marche beaucoup mieux maintenant Merci beaucoup Link to comment Share on other sites More sharing options...
J. Danse Posted March 13, 2015 Share Posted March 13, 2015 Avec plaisir, ;-) N'hésitez pas à mettre le sujet en [Résolu], en éditant votre premier message via l'éditeur complet, 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