jt-espace Posted February 3, 2014 Share Posted February 3, 2014 Bonjour à tous, Dans le back-office de presta j'aimerai modifier la redirection des 2 boutons (save et back) d'un controller. J'ai un controller AdminActiviteproduct avec ces 2 boutons et j'aimerai qu'après avoir cliqué sur l'un de ces 2 boutons, par exemple le bouton save, et bien que ça s'enregistre et que ça me redirige vers AdminProducts au lieu de AdminActiviteproduct. Pour l'instant j'ai fais comme ça : $this->initToolbar(); unset($this->toolbar_btn['back']); unset($this->toolbar_btn['save']); et : public function initToolbar() { parent::initToolbar(); if ($this->display == 'edit' || $this->display == 'add') { if ($product = $this->loadObject(true)) { if ($this->tabAccess['edit']) { $this->toolbar_btn['save'] = array( 'desc' => $this->l('save'), 'href' => Tools::redirectAdmin($this->context->link->getAdminLink('AdminProducts')) ); } } } $this->context->smarty->assign('toolbar_scroll', 1); $this->context->smarty->assign('show_toolbar', 1); $this->context->smarty->assign('toolbar_btn', $this->toolbar_btn); } Mais sans succès, merci à vous. Link to comment Share on other sites More sharing options...
jt-espace Posted February 16, 2014 Author Share Posted February 16, 2014 Personne ? 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