17 lines
328 B
PHP
Executable File
17 lines
328 B
PHP
Executable File
<?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(); |