aerialalerts.php 431 B

1234567891011121314
  1. <?php
  2. if (ubRouting::get('action') == 'aerialalerts') {
  3. if (@$alterconf['AERIAL_ALERTS_ENABLED']) {
  4. if (@$alterconf['AERIAL_ALERTS_NOTIFY']) {
  5. $aerialAlerts = new AerialAlerts();
  6. die($aerialAlerts->usCallback($alterconf['AERIAL_ALERTS_NOTIFY']));
  7. } else {
  8. die('ERROR: AERIAL_ALERTS_NOTIFY_EMPTY');
  9. }
  10. } else {
  11. die('ERROR: AERIAL_ALERTS_DISABLED');
  12. }
  13. }