This commit is contained in:
2022-05-12 22:40:56 -04:00
parent ecbd702ec5
commit aa0a9789fa
2 changed files with 19 additions and 1 deletions
+2 -1
View File
@@ -5,4 +5,5 @@ define('WRB_JOB_CRONJOB',770);
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_PASTDUE_ALERT',774);
define('WRB_CRONJOB_OFFER_REFUND_ALERT',775);
+17
View File
@@ -0,0 +1,17 @@
<?php
include 'cron_constants.php';
include 'backend.php';
$wrb= new backend();
$out = array();
$in['action'] = WRB_JOB_CRONJOB;
$in['call_action'] = WRB_CRONJOB_OFFER_REFUND_ALERT;
$in['one_limit'] = 1;
$wrb->wrenchboard_api($in,$out);
print_r($out);
?>