ptvchargefee.php 226 B

12345678910
  1. <?php
  2. if (ubRouting::get('action') == 'ptvchargefee') {
  3. if ($ubillingConfig->getAlterParam('PTV_ENABLED')) {
  4. $ptv = new PTV();
  5. $ptv->feeProcessing();
  6. } else {
  7. die('ERROR:PTV_DISABLED');
  8. }
  9. }