17 lines
328 B
PHP
17 lines
328 B
PHP
|
<?php
|
||
|
|
||
|
require_once('../../config/config.inc.php');
|
||
|
require_once('../../init.php');
|
||
|
require_once('./relancecommande.php');
|
||
|
set_time_limit(3600);
|
||
|
|
||
|
|
||
|
if (Tools::getValue('token') != 'h1pQ9MFnu7pV')
|
||
|
die(0);
|
||
|
|
||
|
$module = new Relancecommande();
|
||
|
if (!$module->active)
|
||
|
die(0);
|
||
|
|
||
|
$obj = new RelancecommandeCore();
|
||
|
$obj->relanceCommande();
|