ddt.php 434 B

123456789101112131415161718192021
  1. <?php
  2. /**
  3. * DDT processing
  4. */
  5. if (ubRouting::get('action') == 'ddt') {
  6. if ($alterconf['DDT_ENABLED']) {
  7. if ($alterconf['DEALWITHIT_ENABLED']) {
  8. $ddtApiRun = new DoomsDayTariffs();
  9. $ddtApiRun->runProcessing();
  10. die('OK:DDTPROCESSING:');
  11. } else {
  12. die('ERROR:NO_DEALWITHIT_ENABLED');
  13. }
  14. } else {
  15. die('ERROR:NO_DDT_ENABLED');
  16. }
  17. }