stickynotify.php 402 B

123456789101112131415
  1. <?php
  2. if (ubRouting::get('action') == 'stickynotify') {
  3. if (@$alterconf['STICKY_NOTES_ENABLED']) {
  4. if (@$alterconf['SENDDOG_ENABLED']) {
  5. $stickyNotify = new StickyNotify();
  6. $stickyNotify->run();
  7. die('OK:STICKYNOTIFY');
  8. } else {
  9. die('ERROR:SENDDOG_DISABLED');
  10. }
  11. } else {
  12. die('ERROR:STICKYNOTIFY_DISABLED');
  13. }
  14. }