Files
FloatBackOfffice/CRONS/account_audit.php
T
dev-chiefworks f76abffdcd first commit
2022-05-31 16:21:53 -04:00

29 lines
623 B
PHP

<?php
echo "[" . date("Y-m-d H:i:s") . "] Account Audit job is starting.\n";
include '../backend.php';
define("FLOAT_SYSTEM_ACCOUNT_AUDIT", 92015);
function Fextension_call($in, &$out) {
// logToFl("Merchant_Name count->" . $in["merchant_name"]);
global $savvyext;
$out = $savvyext->savvyext_api($in);
$ret = $out["retval"];
return $ret;
}
$inX["limit"] = 100;
$inX["pid"] = 0;
$inX["action"] = FLOAT_SYSTEM_ACCOUNT_AUDIT;
$outX = array();
$extension_call = true;
if ($extension_call == true) {
// logToFl("merchant_name count->" . $res->merchant_name);
Fextension_call($inX, $outX);
}