101 lines
3.5 KiB
PHP
101 lines
3.5 KiB
PHP
<?php
|
|
|
|
// Pandora FMS - http://pandorafms.com
|
|
// ==================================================
|
|
// Copyright (c) 2005-2009 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.
|
|
|
|
// Load global vars
|
|
check_login ();
|
|
|
|
if (! give_acl ($config['id_user'], 0, "AW")) {
|
|
audit_db ($config['id_user'], $_SERVER['REMOTE_ADDR'], "ACL Violation",
|
|
"Trying to access massive operation section");
|
|
require ("general/noaccess.php");
|
|
return;
|
|
}
|
|
|
|
require_once ('include/functions_agents.php');
|
|
require_once ('include/functions_alerts.php');
|
|
require_once ('include/functions_modules.php');
|
|
|
|
$tab = (string) get_parameter ('tab', 'copy_modules');
|
|
|
|
/* Copy modules */
|
|
$copymoduletab['text'] = '<a href="index.php?sec=gagente&sec2=godmode/agentes/massive_operations&tab=copy_modules">'
|
|
. print_image ("images/copy.png", true, array ("title" => __('Copy modules')))
|
|
. "</a>";
|
|
if($tab == 'copy_modules')
|
|
$copymoduletab['active'] = true;
|
|
else
|
|
$copymoduletab['active'] = false;
|
|
|
|
/* Edit Modules */
|
|
$editmoduletab['text'] = '<a href="index.php?sec=gagente&sec2=godmode/agentes/massive_operations&tab=edit_modules">'
|
|
. print_image ("images/edit.png", true, array ("title" => __('Edit modules')))
|
|
. "</a>";
|
|
if($tab == 'edit_modules')
|
|
$editmoduletab['active'] = true;
|
|
else
|
|
$editmoduletab['active'] = false;
|
|
|
|
/* Delete Modules */
|
|
$deletemoduletab['text'] = '<a href="index.php?sec=gagente&sec2=godmode/agentes/massive_operations&tab=delete_modules">'
|
|
. print_image ("images/delete_modules.png", true, array ("title" => __('Delete modules')))
|
|
. "</a>";
|
|
if($tab == 'delete_modules')
|
|
$deletemoduletab['active'] = true;
|
|
else
|
|
$deletemoduletab['active'] = false;
|
|
|
|
/* Delete Agents */
|
|
$deleteagenttab['text'] = '<a href="index.php?sec=gagente&sec2=godmode/agentes/massive_operations&tab=delete_agents">'
|
|
. print_image ("images/delete_agents.png", true, array ("title" => __('Delete agents')))
|
|
. "</a>";
|
|
if($tab == 'delete_agents')
|
|
$deleteagenttab['active'] = true;
|
|
else
|
|
$deleteagenttab['active'] = false;
|
|
|
|
/* Delete Alerts */
|
|
$deletealerttab['text'] = '<a href="index.php?sec=gagente&sec2=godmode/agentes/massive_operations&tab=delete_alerts">'
|
|
. print_image ("images/delete_alerts.png", true, array ("title" => __('Delete alerts')))
|
|
. "</a>";
|
|
if($tab == 'delete_alerts')
|
|
$deletealerttab['active'] = true;
|
|
else
|
|
$deletealerttab['active'] = false;
|
|
|
|
|
|
$onheader = array('copy_modules' => $copymoduletab, 'edit_modules' => $editmoduletab, 'delete_modules' => $deletemoduletab, 'delete_agents' => $deleteagenttab, 'delete_alerts' => $deletealerttab);
|
|
|
|
print_page_header (__('Agent configuration'). ' » '. __('Massive operations'), "images/god1.png", false, "", true, $onheader);
|
|
|
|
|
|
switch ($tab) {
|
|
case 'delete_alerts':
|
|
require_once ('godmode/agentes/massive_delete_alerts.php');
|
|
break;
|
|
case 'delete_agents':
|
|
require_once ('godmode/agentes/massive_delete_agents.php');
|
|
break;
|
|
case 'delete_modules':
|
|
require_once ('godmode/agentes/massive_delete_modules.php');
|
|
break;
|
|
case 'edit_modules':
|
|
require_once ('godmode/agentes/massive_edit_modules.php');
|
|
break;
|
|
case 'copy_modules':
|
|
default:
|
|
require_once ('godmode/agentes/massive_config.php');
|
|
}
|
|
?>
|