Files
WrenchBoradWeb/www/wr_crons/wrb_pendingoffers_alerts.php
T
2022-07-17 18:25:06 -04:00

13 lines
265 B
PHP

<?php
include 'cron_constants.php';
include 'backend.php';
$wrb= new backend();
$out = array();
$in['action'] = WRB_JOB_CRONJOB;
$in['call_action'] = WRB_CRONJOB_PENDOFFER_ALERT;
$in['one_limit'] = 3;
$wrb->wrenchboard_api($in,$out);
print_r($out);
?>