bebeboutik/modules/ant_dropshippingtracking/ant_dropshippingtracking.php

41 lines
818 B
PHP
Raw Normal View History

2017-09-26 17:34:21 +02:00
<?php
if (!defined('_PS_VERSION_'))
exit;
class Ant_Dropshippingtracking extends Module
{
public function __construct()
{
$this->name = 'ant_dropshippingtracking';
$this->tab = 'administration';
$this->author = 'Antadis';
$this->version = '1.0';
$this->need_instance = 0;
parent::__construct();
$this->displayName = $this->l('Dropshipping tracking');
$this->description = $this->l('Allow to import information to track orders sent by dropshipping');
}
public function install()
{
if(!(parent::install())) {
return false;
}
return true;
}
public function uninstall() {
if(parent::uninstall() == false) {
return false;
}
return true;
}
}