bebeboutik/modules/ant_logistic/ant_logistic.php
2017-11-29 14:46:02 +01:00

31 lines
650 B
PHP

<?php
if (!defined('_PS_VERSION_'))
exit;
class Ant_Logistic extends Module
{
public function __construct()
{
$this->name = 'ant_logistic';
$this->tab = 'administration';
$this->author = 'Antadis';
$this->version = '1.0';
$this->need_instance = 0;
parent::__construct();
$this->displayName = $this->l('Logistic manager');
$this->description = $this->l('Manager of logistic to send parcel for orders');
}
public function install()
{
# Register hooks
if(!(parent::install())) {
return false;
}
return true;
}
}