youtvchargefee.php 232 B

12345678910
  1. <?php
  2. if (ubRouting::get('action') == 'youtvchargefee') {
  3. if ($ubillingConfig->getAlterParam('YOUTV_ENABLED')) {
  4. $ytv = new YTV();
  5. $ytv->feeProcessing();
  6. } else {
  7. die('ERROR:YOUTV_DISABLED');
  8. }
  9. }