29 lines
550 B
PHP
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;
|
||
|
}
|
||
|
|
||
|
}
|