celinne Posted March 29, 2013 Share Posted March 29, 2013 (edited) Bonjour, J'ai un problème qui m'a bloqué depuis quelques jours. Je veux créer un onglet d'administration: j'ai suivi un peu ce document :http://doc.prestashop.com/pages/viewpage.action?pageId=3801216 Les informations sauvegardées dans la BD sont bien affichées mais le problème est au niveau de sauvegarde d'un nouveau enregistrement. J'ai suivi les exemples des autres onglets déjà définis en prestashop en utilisant la fonction postProcess(). Mais là j'ai rien n'est affiché dans la page!! SVP si quelqu'un a une idée n'hésitez pas à m'aider. Voilà le code du fichier AdminTest <?php include_once(PS_ADMIN_DIR.'/../classes/AdminTab.php'); class AdminTest extends AdminTab { public function __construct() { $this->table = 'test'; $this->className = 'Test'; $this->lang = false; $this->edit = true; $this->delete = true; $this->fieldsDisplay = array( 'id_test' => array( 'title' => $this->l('ID'), 'align' => 'center', 'width' => 25), 'nom_test' => array( 'title' => $this->l('Name'), 'width' => 200) ); $this->identifier = 'id_test'; parent::__construct(); } public function displayForm() { global $currentIndex; echo '<fieldset><legend>'.$this->l('Test').'</legend> <form action="'.$currentIndex.'&submitAdd'.$this->table.'=1&token='.$this->token.'" method="post" enctype="multipart/form-data"> <label>'.$this->l('Nom test').'</label><input name="nom_test" value="'.$this->getFieldValue($obj, 'nom_test').'"/> <br> <br> <center><input class="button" type="submit" name="submitAdd'.$this->table.'" value="'.$this->l('Enregistrer').'" /></center> </form> </fieldset> '; } } ?> Merci d'avance Edited March 29, 2013 by celinne (see edit history) Link to comment Share on other sites More sharing options...
benjamin utterback Posted March 29, 2013 Share Posted March 29, 2013 Hi, thanks for the message. This topic has been moved to Development Section. 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