Files
WrenchBoradWeb/www/wr_crons/wrb_pastdue_alerts.php
T
2022-07-18 11:48:03 -04:00

15 lines
250 B
PHP
Executable File

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