Jeyt Posted January 16, 2016 Share Posted January 16, 2016 Bonjour, N'ayant pas de réponse ici https://www.prestashop.com/forums/topic/499256-recherche-module-gestion-stock-coupl%C3%A9-site-externe-via-api/ je me suis décidé à commencer à suivre la documentation suivante : http://doc.prestashop.com/pages/viewpage.action?pageId=15171738 (je possède la v1.6) J'arrive sans problème à installer le module. Je peux l'apercevoir dans "Position" et modifier sa position. Par contre sur la page d’accueil de la boutique le module n'affiche rien. (partie Implémenter des hooks du tuto) Comme je débute je suis vite perdu et ne sais pas quels tests effectuer pour débuguer. Une aide serait bienvenue. Mon code "mymodule.php" <?php if (!defined('_PS_VERSION_')) exit; class MkmFs extends Module { public function install() { if (Shop::isFeatureActive()) Shop::setContext(Shop::CONTEXT_ALL); if (!parent::install() || !$this->registerHook('leftColumn') || !$this->registerHook('header') || !Configuration::updateValue('MKMFS', 'my friend') ) return false; return true; } public function hookDisplayLeftColumn($params) { $this->context->smarty->assign( array( 'my_module_name' => Configuration::get('MKMFS'), 'my_module_link' => $this->context->link->getModuleLink('mkmfs', 'display') ) ); return $this->display(__FILE__, 'mkmfs.tpl'); } public function hookDisplayRightColumn($params) { return $this->hookDisplayLeftColumn($params); } public function hookDisplayHeader() { $this->context->controller->addCSS($this->_path.'css/mkmfs.css', 'all'); } public function __construct() { $this->name = 'mkmfs'; $this->tab = 'others'; $this->version = '1.0.0'; $this->author = 'xxx'; $this->need_instance = 0; $this->ps_versions_compliancy = array('min' => '1.6', 'max' => _PS_VERSION_); $this->bootstrap = true; parent::__construct(); $this->displayName = $this->l('Mkm Fs'); $this->description = $this->l('Gestion stock entre Magiccardmarket et boutique.'); $this->confirmUninstall = $this->l('Confirmez-vous la désinstallation ?'); if (!Configuration::get('MKMFS')) $this->warning = $this->l('No name provided'); } public function uninstall() { if (!parent::uninstall() || !Configuration::deleteByName('MKMFS') ) return false; return true; } } 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