2012-01-25 Junichi Satoh <junichi@rworks.jp>
* godmode/menu.php, godmode/alerts/alert_special_days.php,
godmode/alerts/configure_alert_special_days.php,
godmode/alerts/configure_alert_template.php,
extras/pandoradb_migrate_4.0.x_to_4.1.mysql.sql,
extras/pandoradb_migrate_4.0.x_to_4.1.oracle.sql,
extras/pandoradb_migrate_4.0.x_to_4.1.postgreSQL.sql,
pandoradb.oracle.sql, pandoradb.postgreSQL.sql, pandoradb.sql,
include/functions_alerts.php: Added special days feature. It allows
to define special days (holidays and special working days) for
alert templates.
git-svn-id: https://svn.code.sf.net/p/pandora/code/trunk@5421 c3f86ba8-e40f-0410-aaad-9ba5e7f4b01f
2012-01-25 07:13:43 +01:00
|
|
|
<?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.
|
2012-01-25 Junichi Satoh <junichi@rworks.jp>
* godmode/menu.php, godmode/alerts/alert_special_days.php,
godmode/alerts/configure_alert_special_days.php,
godmode/alerts/configure_alert_template.php,
extras/pandoradb_migrate_4.0.x_to_4.1.mysql.sql,
extras/pandoradb_migrate_4.0.x_to_4.1.oracle.sql,
extras/pandoradb_migrate_4.0.x_to_4.1.postgreSQL.sql,
pandoradb.oracle.sql, pandoradb.postgreSQL.sql, pandoradb.sql,
include/functions_alerts.php: Added special days feature. It allows
to define special days (holidays and special working days) for
alert templates.
git-svn-id: https://svn.code.sf.net/p/pandora/code/trunk@5421 c3f86ba8-e40f-0410-aaad-9ba5e7f4b01f
2012-01-25 07:13:43 +01:00
|
|
|
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';
|
2012-01-25 Junichi Satoh <junichi@rworks.jp>
* godmode/menu.php, godmode/alerts/alert_special_days.php,
godmode/alerts/configure_alert_special_days.php,
godmode/alerts/configure_alert_template.php,
extras/pandoradb_migrate_4.0.x_to_4.1.mysql.sql,
extras/pandoradb_migrate_4.0.x_to_4.1.oracle.sql,
extras/pandoradb_migrate_4.0.x_to_4.1.postgreSQL.sql,
pandoradb.oracle.sql, pandoradb.postgreSQL.sql, pandoradb.sql,
include/functions_alerts.php: Added special days feature. It allows
to define special days (holidays and special working days) for
alert templates.
git-svn-id: https://svn.code.sf.net/p/pandora/code/trunk@5421 c3f86ba8-e40f-0410-aaad-9ba5e7f4b01f
2012-01-25 07:13:43 +01:00
|
|
|
|
2021-11-02 17:49:45 +01:00
|
|
|
use PandoraFMS\CalendarManager;
|
2016-06-07 06:43:30 +02:00
|
|
|
|
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';
|
2019-01-30 16:18:44 +01:00
|
|
|
|
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;
|
2019-01-30 16:18:44 +01:00
|
|
|
} else {
|
2021-11-02 17:49:45 +01:00
|
|
|
echo '[CalendarManager]'.$e->getMessage();
|
2019-01-30 16:18:44 +01:00
|
|
|
}
|
|
|
|
|
2021-11-02 17:49:45 +01:00
|
|
|
// Stop this execution, but continue 'globally'.
|
|
|
|
return;
|
2012-01-25 Junichi Satoh <junichi@rworks.jp>
* godmode/menu.php, godmode/alerts/alert_special_days.php,
godmode/alerts/configure_alert_special_days.php,
godmode/alerts/configure_alert_template.php,
extras/pandoradb_migrate_4.0.x_to_4.1.mysql.sql,
extras/pandoradb_migrate_4.0.x_to_4.1.oracle.sql,
extras/pandoradb_migrate_4.0.x_to_4.1.postgreSQL.sql,
pandoradb.oracle.sql, pandoradb.postgreSQL.sql, pandoradb.sql,
include/functions_alerts.php: Added special days feature. It allows
to define special days (holidays and special working days) for
alert templates.
git-svn-id: https://svn.code.sf.net/p/pandora/code/trunk@5421 c3f86ba8-e40f-0410-aaad-9ba5e7f4b01f
2012-01-25 07:13:43 +01:00
|
|
|
}
|
|
|
|
|
2021-11-02 17:49:45 +01:00
|
|
|
// AJAX controller.
|
|
|
|
if ((bool) is_ajax() === true) {
|
|
|
|
$method = get_parameter('method');
|
2019-01-30 16:18:44 +01:00
|
|
|
|
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.');
|
2019-01-30 16:18:44 +01:00
|
|
|
}
|
|
|
|
} else {
|
2021-11-02 17:49:45 +01:00
|
|
|
$cs->error('Method not found. ['.$method.']');
|
2019-01-30 16:18:44 +01:00
|
|
|
}
|
|
|
|
|
2021-11-02 17:49:45 +01:00
|
|
|
// Stop any execution.
|
|
|
|
exit;
|
2019-01-30 16:18:44 +01:00
|
|
|
} else {
|
2021-11-02 17:49:45 +01:00
|
|
|
// Run.
|
|
|
|
$cs->run();
|
2012-01-25 Junichi Satoh <junichi@rworks.jp>
* godmode/menu.php, godmode/alerts/alert_special_days.php,
godmode/alerts/configure_alert_special_days.php,
godmode/alerts/configure_alert_template.php,
extras/pandoradb_migrate_4.0.x_to_4.1.mysql.sql,
extras/pandoradb_migrate_4.0.x_to_4.1.oracle.sql,
extras/pandoradb_migrate_4.0.x_to_4.1.postgreSQL.sql,
pandoradb.oracle.sql, pandoradb.postgreSQL.sql, pandoradb.sql,
include/functions_alerts.php: Added special days feature. It allows
to define special days (holidays and special working days) for
alert templates.
git-svn-id: https://svn.code.sf.net/p/pandora/code/trunk@5421 c3f86ba8-e40f-0410-aaad-9ba5e7f4b01f
2012-01-25 07:13:43 +01:00
|
|
|
}
|