This commit is contained in:
2022-07-17 18:25:06 -04:00
parent d11d99749c
commit 353d33ac6f
2 changed files with 15 additions and 1 deletions
+2 -1
View File
@@ -6,4 +6,5 @@ define('WRB_CRONJOB_JOBDUE_REMINDER',771);
define('WRB_CRONJOB_JOBDUE_PAYMENTS',772);
define('WRB_CRONJOB_SIGNUP_ALERT', 773);
define('WRB_CRONJOB_PASTDUE_ALERT',774);
define('WRB_CRONJOB_OFFER_REFUND_ALERT',775);
define('WRB_CRONJOB_OFFER_REFUND_ALERT',775);
define('WRB_CRONJOB_PENDOFFER_ALERT',776);
+13
View File
@@ -0,0 +1,13 @@
<?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);
?>