olltvchargefee.php 245 B

12345678910
  1. <?php
  2. if (ubRouting::get('action') == 'olltvchargefee') {
  3. if ($ubillingConfig->getAlterParam('OLLTV_ENABLED')) {
  4. $ollTv = new OllTVService();
  5. $ollTv->feeProcessing();
  6. } else {
  7. die('ERROR:OLLTV_DISABLED');
  8. }
  9. }