robertodela Posted April 4, 2015 Share Posted April 4, 2015 Bonjour , Je débute vraiment sur prestashop ,et j'aurais besoin de votre aide , Je dois developper un module qui permet d'afficher ou non les commandes de l'onglet commandes, Pour le moment j'ai reussi coder l'installation et la configuration du modulequi s'affiche mais ne marche pas , debutant sur prestashop je ne vois pas du tout comment activer ou non l'affichage des commandes dans la page de configuration de mon module grâce a un bouton radio, j'espère avoir été assez clair Je vous laisse mon code : <?php if (!defined('_PS_VERSION_')) exit; class MyModule extends Module { public function __construct() { $this->name = 'mymodule'; $this->tab = 'administration'; $this->version = '1.0.0'; $this->author = 'rob '; $this->need_instance = 0; $this->ps_versions_compliancy = array('min' => '1.6', 'max' => _PS_VERSION_); $this->bootstrap = true; parent::__construct(); $this->displayName = $this->l('My module'); $this->description = $this->l('Gestion de commande'); $this->confirmUninstall = $this->l('Are you sure you want to uninstall?'); if (!Configuration::get('MYMODULE_NAME')) $this->warning = $this->l('No name provided'); } public function install() { if (Shop::isFeatureActive()) Shop::setContext(Shop::CONTEXT_ALL); if (!parent::install() || !$this->registerHook('leftColumn') || !$this->registerHook('header') || !Configuration::updateValue('MYMODULE_NAME', 'my friend') ) return false; return true; } public function uninstall() { if (!parent::uninstall()) return false; return true; } public function getContent() { $output = null; if (Tools::isSubmit('submit'.$this->name)) { $my_module_name = strval(Tools::getValue('MYMODULE_NAME')); if (!$my_module_name || empty($my_module_name) || !Validate::isGenericName($my_module_name)) $output .= $this->displayError($this->l('Invalid Configuration value')); else { Configuration::updateValue('MYMODULE_NAME', $my_module_name); $output .= $this->displayConfirmation($this->l('Settings updated')); } } return $output.$this->displayForm(); } public function displayForm() { // Get default Language $default_lang = (int)Configuration::get('PS_LANG_DEFAULT'); // Init Fields form array $fields_form[0]['form'] = array( 'legend' => array( 'title' => $this->l('Settings'), ), 'input' => array( array( 'type' => 'radio', // This is an <input type="checkbox"> tag. 'label' => $this->l('Activer affichage'), // A help text, displayed right next to the <input> tag. 'name' => 'active', // The content of the 'id' attribute of the <input> tag. 'required' => true, // If set to true, this option must be set. 'class' => 't', // The content of the 'class' attribute of the <label> tag for the <input> tag. 'is_bool' => true, // If set to true, this means you want to display a yes/no or true/false option. // The CSS styling will therefore use green mark for the option value '1', and a red mark for value '2'. // If set to false, this means there can be more than two radio buttons, // and the option label text will be displayed instead of marks. 'values' => array( // $values contains the data itself. array( 'id' => 'active_on', // The content of the 'id' attribute of the <input> tag, and of the 'for' attribute for the <label> tag. 'value' => 1, // The content of the 'value' attribute of the <input> tag. 'label' => $this->l('Enabled') // The <label> for this radio button. ), array( 'id' => 'active_off', 'value' => 0, 'label' => $this->l('Disabled') ) ), ), ), 'submit' => array( 'title' => $this->l('Save'), 'class' => 'button' ) ); $helper = new HelperForm(); // Module, token and currentIndex $helper->module = $this; $helper->name_controller = $this->name; $helper->token = Tools::getAdminTokenLite('AdminModules'); $helper->currentIndex = AdminController::$currentIndex.'&configure='.$this->name; // Language $helper->default_form_language = $default_lang; $helper->allow_employee_form_lang = $default_lang; // Title and toolbar $helper->title = $this->displayName; $helper->show_toolbar = true; // false -> remove toolbar $helper->toolbar_scroll = true; // yes - > Toolbar is always visible on the top of the screen. $helper->submit_action = 'submit'.$this->name; $helper->toolbar_btn = array( 'save' => array( 'desc' => $this->l('Save'), 'href' => AdminController::$currentIndex.'&configure='.$this->name.'&save'.$this->name. '&token='.Tools::getAdminTokenLite('AdminModules'), ), 'back' => array( 'href' => AdminController::$currentIndex.'&token='.Tools::getAdminTokenLite('AdminModules'), 'desc' => $this->l('Back to list') ) ); // Load current value $helper->fields_value['MYMODULE_NAME'] = Configuration::get('MYMODULE_NAME'); return $helper->generateForm($fields_form); } } Merci Link to comment Share on other sites More sharing options...
Mediacom87 Posted April 4, 2015 Share Posted April 4, 2015 Salut, euh là je n'ai absolument pas compris ce que vous vouliez faire. afficher ou pas les commandes ... oui mais où. Car là à part afficher un bouton de configuration dans la config du module il ne fait rien d'autre et encore en regardant rapidement il ne doit même pas le faire convenablement et pourtant c'est la base du développement de Prestashop. Donc lisez les doc et étudiez le code d'autres modules pour comprendre ce qu'ils font et comment ils le font. Link to comment Share on other sites More sharing options...
robertodela Posted April 5, 2015 Author Share Posted April 5, 2015 Tout d'abord merci de m'avoir répondu oui effectivement j'affiche juste le boutuon de configuration mais rien ne marche , je voudrais grâce a ce bouton de configuration activer ou non l'affichage des commandes de l'onglet commande, Merci pour votre aide 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