ignaciofarre Posted August 5, 2014 Share Posted August 5, 2014 (edited) Hello... I create a new module, but I don't see... The folder is mymodule, and de file mymodule.php <?php if (!defined('_PS_VERSION_')) exit; class MyModule extends Module { public function __construct() { $this->name = 'mymodule'; $this->tab = 'others'; $this->version = '1.0'; $this->author = 'Ignacio Farre'; $this->need_instance = 0; $this->ps_versions_compliancy = array('min' => '1.5', 'max' => '1.6'); $this->bootstrap = true; parent::__construct(); $this->displayName = $this->l('My module'); $this->description = $this->l('Description of my module.'); $this->confirmUninstall = $this->l('Are you sure you want to uninstall?'); if (!Configuration::get('MYMODULE_NAME')) $this->warning = $this->l('No name provided'); } } Please I need to create a new module to start programing... Edited August 5, 2014 by ignaciofarre (see edit history) Link to comment Share on other sites More sharing options...
ignaciofarre Posted August 5, 2014 Author Share Posted August 5, 2014 The solution... I add the new module uploading a .zip. 1 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