paycardsqueue.php 325 B

123456789101112
  1. <?php
  2. //paymentards queue processing
  3. if (ubRouting::get('action') == 'paycardsqueue') {
  4. if ($ubillingConfig->getAlterParam('PAYMENTCARDS_ENABLED')) {
  5. $paycardsProcessed = zb_CardsQueueProcessing();
  6. die('PAYCARDS_QUEUE:' . $paycardsProcessed);
  7. } else {
  8. die('ERROR:PAYCARDS_DISABLED');
  9. }
  10. }