bebeboutik/modules/ant_configurations/ant_configurations.php
2016-11-08 14:58:29 +01:00

41 lines
783 B
PHP

<?php
if (!defined('_PS_VERSION_'))
exit;
class Ant_Configurations extends Module
{
public function __construct()
{
$this->name = 'ant_configurations';
$this->tab = 'administration';
$this->author = 'Antadis';
$this->version = '1.0';
$this->need_instance = 0;
parent::__construct();
$this->displayName = $this->l('Configurations');
$this->description = $this->l('Section with many tools to configure the website');
}
public function install()
{
if(!(parent::install())) {
return false;
}
return true;
}
public function uninstall() {
if(parent::uninstall() == false) {
return false;
}
return true;
}
}