imaxstockavelonemptyingmodule_cron.php
593 Bytes
<?php
include_once(dirname(__FILE__).'../../config/config.inc.php');
include_once(dirname(__FILE__).'../../init.php');
include_once(dirname(__FILE__).'/../modules/imaxstockavelonemptyingmodule/imaxstockavelonemptyingmodule.php');
$token = $_GET['token'];
$tokenLocal = Configuration::get(imaxstockavelonemptyingmodule::prefijo.'TOKEN');
if (empty($token) || $token != $tokenLocal) {
die('Token no valido');
}
$imaxstockavelonemptyingmodule = new imaxstockavelonemptyingmodule();
$resultado = $imaxstockavelonemptyingmodule->getFunciones()->vaciarTablaStockAvelon();
echo $resultado;