bebeboutik/modules/paymentinfo/paymentinfo.php
Thibault UBUNTU f15662e826 paypal suite
2016-05-02 15:30:12 +02:00

29 lines
550 B
PHP

<?php
if (!defined('_PS_VERSION_'))
exit;
class Paymentinfo extends Module {
public function __construct()
{
$this->name = 'paymentinfo';
$this->tab = 'advertising_marketing';
$this->version = '1.0';
$this->author = 'Antadis';
$this->need_instance = 0;
parent::__construct();
$this->displayName = $this->l('Manage payments info');
$this->description = $this->l('Manage payments info');
$this->confirmUninstall = $this->l('Are you sure ?');
$this->_errors = array();
}
public function install() {
return TRUE;
}
}