ukvfeeprocessing.php 325 B

12345678910111213141516
  1. <?php
  2. /*
  3. * UKV charge fee processing
  4. */
  5. if (ubRouting::get('action') == 'ukvfeeprocessing') {
  6. if ($alterconf['UKV_ENABLED']) {
  7. $ukvApiRun = new UkvSystem();
  8. $ukvFee = $ukvApiRun->feeChargeAll();
  9. die('OK:UKVFEEPROCESSING:' . $ukvFee);
  10. } else {
  11. die('ERROR:NO_UKV_ENABLED');
  12. }
  13. }