2023-02-13 10:06:14 +01:00
|
|
|
<?php
|
|
|
|
/**
|
2023-02-17 12:53:35 +01:00
|
|
|
* Tips pandora
|
2023-02-13 10:06:14 +01:00
|
|
|
*
|
2023-02-17 12:53:35 +01:00
|
|
|
* @category Ajax library.
|
2023-02-13 10:06:14 +01:00
|
|
|
* @package Pandora FMS
|
2023-02-17 12:53:35 +01:00
|
|
|
* @subpackage Modules.
|
2023-02-13 10:06:14 +01:00
|
|
|
* @version 1.0.0
|
|
|
|
* @license See below
|
|
|
|
*
|
|
|
|
* ______ ___ _______ _______ ________
|
2023-06-08 12:42:10 +02:00
|
|
|
* | __ \.-----.--.--.--| |.-----.----.-----. | ___| | | __|
|
|
|
|
* | __/| _ | | _ || _ | _| _ | | ___| |__ |
|
2023-02-13 10:06:14 +01:00
|
|
|
* |___| |___._|__|__|_____||_____|__| |___._| |___| |__|_|__|_______|
|
|
|
|
*
|
|
|
|
* ============================================================================
|
2023-06-08 11:53:13 +02:00
|
|
|
* Copyright (c) 2005-2023 Pandora FMS
|
2023-06-08 13:19:01 +02:00
|
|
|
* Please see https://pandorafms.com/community/ for full contribution list
|
2023-02-13 10:06:14 +01:00
|
|
|
* 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.
|
|
|
|
* ============================================================================
|
|
|
|
*/
|
|
|
|
|
|
|
|
// Begin.
|
|
|
|
global $config;
|
|
|
|
|
|
|
|
require_once $config['homedir'].'/include/class/TipsWindow.class.php';
|
|
|
|
if (is_ajax() === false) {
|
|
|
|
exit;
|
|
|
|
}
|
|
|
|
|
|
|
|
// Control call flow.
|
|
|
|
try {
|
|
|
|
// User access and validation is being processed on class constructor.
|
|
|
|
$actions = new TipsWindow();
|
|
|
|
} catch (Exception $e) {
|
|
|
|
exit;
|
|
|
|
}
|
|
|
|
|
|
|
|
// Ajax controller.
|
|
|
|
$method = get_parameter('method', '');
|
|
|
|
|
|
|
|
if (method_exists($actions, $method) === true) {
|
|
|
|
if ($actions->ajaxMethod($method) === true) {
|
|
|
|
$actions->{$method}();
|
|
|
|
} else {
|
|
|
|
$actions->error('Unavailable method.');
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
$actions->error('Method not found. ['.$method.']');
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
// Stop any execution.
|
|
|
|
exit;
|