pandorafms/pandora_console/godmode/alerts/alert_special_days.php

76 lines
2.4 KiB
PHP
Raw Normal View History

<?php
2021-10-28 17:30:03 +02:00
/**
2021-11-02 17:49:45 +01:00
* Calendar controller.
2021-10-28 17:30:03 +02:00
*
* @category Alerts
* @package Pandora FMS
* @subpackage Community
* @version 1.0.0
* @license See below
*
* ______ ___ _______ _______ ________
* | __ \.-----.--.--.--| |.-----.----.-----. | ___| | | __|
* | __/| _ | | _ || _ | _| _ | | ___| |__ |
* |___| |___._|__|__|_____||_____|__| |___._| |___| |__|_|__|_______|
*
* ============================================================================
* Copyright (c) 2005-2021 Artica Soluciones Tecnologicas
* Please see http://pandorafms.org for full contribution list
* This program is free software; you can redistribute it and/or
* modify it under the terms of the GNU General Public License
* as published by the Free Software Foundation for version 2.
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
* ============================================================================
*/
2021-11-02 17:49:45 +01:00
// Begin.
global $config;
2021-11-02 17:49:45 +01:00
require_once $config['homedir'].'/vendor/autoload.php';
require_once $config['homedir'].'/include/class/CalendarManager.class.php';
2021-11-02 17:49:45 +01:00
use PandoraFMS\CalendarManager;
2021-11-02 17:49:45 +01:00
$ajaxPage = 'godmode/alerts/alert_special_days';
2021-10-28 17:30:03 +02:00
$url = 'index.php?sec=galertas&sec2=godmode/alerts/alert_special_days';
2021-11-02 17:49:45 +01:00
// Control call flow.
try {
// User access and validation is being processed on class constructor.
$cs = new CalendarManager($url, $ajaxPage);
} catch (Exception $e) {
if ((bool) is_ajax() === true) {
echo json_encode(['error' => '[CalendarManager]'.$e->getMessage() ]);
exit;
} else {
2021-11-02 17:49:45 +01:00
echo '[CalendarManager]'.$e->getMessage();
}
2021-11-02 17:49:45 +01:00
// Stop this execution, but continue 'globally'.
return;
}
2021-11-02 17:49:45 +01:00
// AJAX controller.
if ((bool) is_ajax() === true) {
$method = get_parameter('method');
2021-11-02 17:49:45 +01:00
if (method_exists($cs, $method) === true) {
if (CalendarManager::ajaxMethod($method) === true) {
$cs->{$method}();
2020-06-09 12:02:31 +02:00
} else {
2021-11-02 17:49:45 +01:00
$cs->error('Unavailable method.');
}
} else {
2021-11-02 17:49:45 +01:00
$cs->error('Method not found. ['.$method.']');
}
2021-11-02 17:49:45 +01:00
// Stop any execution.
exit;
} else {
2021-11-02 17:49:45 +01:00
// Run.
$cs->run();
}