nicolsbertrand Posted June 9, 2017 Share Posted June 9, 2017 Bonjour, Je suis en train de créer un module pour des besoins persos en back office. J'ai suivi la documentation pour créer et installer le module. Tout fonctionne et je vois bien mon module apparaître dans le menu statistique. Maintenant j'aimerais ajouter du texte dans la partie de droite. - ajouter du texte classique tel un hello world - ensuite générer des requetes sql et recupérer les données puis les afficher J'ai regarder un peu les autres modules mais je m'y perd. est il possible d'avoir quelques pistes svp. Merci par avance. <?php if (!defined('_PS_VERSION_')) { exit; } class moduletest extends Module { private $html; public function __construct() { $this->name = 'moduletest'; $this->tab = 'front_office_features'; $this->version = '1.0.0'; $this->author = 'me'; $this->need_instance = 0; $this->ps_versions_compliancy = array('min' => '1.6', 'max' => _PS_VERSION_); $this->bootstrap = true; parent::__construct(); $this->displayName = $this->l('datas'); $this->description = $this->l('datas'); $this->confirmUninstall = $this->l('Are you sure you want to uninstall?'); if (!Configuration::get('moduletest_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') || !$this->registerHook('AdminStatsModules') || !Configuration::updateValue('moduletest_NAME', 'datas') ) return false; return true; } public function uninstall() { if (!parent::uninstall() || !Configuration::deleteByName('moduletest_NAME') ) return false; return true; } } Link to comment Share on other sites More sharing options...
nicolsbertrand Posted June 9, 2017 Author Share Posted June 9, 2017 Merci 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