taskmannotify.php 269 B

1234567891011
  1. <?php
  2. if (ubRouting::get('action') == 'taskmannotify') {
  3. if (@$alterconf['SENDDOG_ENABLED']) {
  4. $taskmanNotify = new TaskmanNotify();
  5. $taskmanNotify->run();
  6. die('OK:TASKMANNOTIFY');
  7. } else {
  8. die('ERROR:SENDDOG_DISABLED');
  9. }
  10. }