2020-12-17 13:04:21 +01:00
|
|
|
<?php
|
|
|
|
/**
|
2020-12-18 12:31:44 +01:00
|
|
|
* External Tools view for agents.
|
2020-12-17 13:04:21 +01:00
|
|
|
*
|
2020-12-18 12:31:44 +01:00
|
|
|
* @category External tools for agents.
|
2020-12-17 13:04:21 +01:00
|
|
|
* @package Pandora FMS
|
|
|
|
* @subpackage Classic agent management view.
|
|
|
|
* @version 1.0.0
|
|
|
|
* @license See below
|
|
|
|
*
|
|
|
|
* ______ ___ _______ _______ ________
|
2023-06-08 12:42:10 +02:00
|
|
|
* | __ \.-----.--.--.--| |.-----.----.-----. | ___| | | __|
|
|
|
|
* | __/| _ | | _ || _ | _| _ | | ___| |__ |
|
2020-12-17 13:04:21 +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
|
2020-12-17 13:04:21 +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 'include/functions_agents.php';
|
|
|
|
|
|
|
|
// Require needed class.
|
2020-12-18 12:31:44 +01:00
|
|
|
require_once $config['homedir'].'/include/class/ExternalTools.class.php';
|
2020-12-17 13:04:21 +01:00
|
|
|
|
|
|
|
// Control call flow for debug window.
|
|
|
|
try {
|
|
|
|
// User access and validation is being processed on class constructor.
|
2020-12-18 12:31:44 +01:00
|
|
|
$obj = new ExternalTools('agent');
|
2020-12-17 13:04:21 +01:00
|
|
|
} catch (Exception $e) {
|
2020-12-18 12:31:44 +01:00
|
|
|
echo '[ExternalTools]'.$e->getMessage();
|
2020-12-17 13:04:21 +01:00
|
|
|
|
|
|
|
// Stop this execution, but continue 'globally'.
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
$obj->run();
|