prestasafe Posted October 25, 2013 Share Posted October 25, 2013 (edited) Bonjour à tous, Après avoir suivi le super tuto de Prestarocket pour créer un module en MVC, http://www.prestarocket.com/blog/creer-module-mvc-prestashop-1-5/ je cherche à savoir comment on pourrait éditer les opinions ? Car dans le controllers adminopinion.php il y a bien $this->actions = array('delete'); j'ai donc rajouté $this->actions = array('delete','edit'); afin d'avoir le petit icon pour modifier tout ça et je l'ai bien affiché. Voila maintenant, j'ai entendu parler de helperView(), renderForm() etc.. et la je suis un peu paumé. Si quelqu'un à un petit tuto ou code à partir du quel je pourrai m'inspirer, je suis preneur à 100%. Merci à vous ! Edited October 25, 2013 by guigui23 (see edit history) Link to comment Share on other sites More sharing options...
prestasafe Posted October 25, 2013 Author Share Posted October 25, 2013 j'ai trouvé il faut utilisé la methode renderForm avec $tabAccess public function renderForm() { if ((int)$this->tabAccess['edit'] ) { echo 'EDIT'; return parent::renderForm(); } } 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