Serveur preprod f0c0c48223 first push
2016-04-14 16:14:31 +02:00

36 lines
968 B
PHP
Executable File

<?php
include_once(_PS_MODULE_DIR_.'antadismarketing/antadismarketing.php');
class AdminAntMarketingRefererController extends ModuleAdminController {
public function __construct(){
$this->context = Context::getContext();
$this->table = 'ant_marketing_referer';
$this->className = 'AntReferer';
$this->identifier = "referer_url";
$this->bootstrap = true;
$this->fields_list = array(
'referer_url' => array(
'title' => $this->l('URL Referer'),
'align' => 'left',
'remove_onclick' => true
),
'nb_visits' => array(
'title' => $this->l('Nb visits'),
'width' => 130,
'remove_onclick' => true
)
);
parent::__construct();
$this->actions = array();
}
public function initToolbar()
{
}
}