pt.php 289 B

12345678910111213
  1. <?php
  2. if (ubRouting::get('action') == 'pt') {
  3. if ($ubillingConfig->getAlterParam('PT_ENABLED')) {
  4. $pt = new PowerTariffs();
  5. $pt->registerNewUsers();
  6. $pt->processingFee();
  7. die('OK: PT_ROCESSING');
  8. } else {
  9. die('ERROR: PT_DISABLED');
  10. }
  11. }