2006-03-27 05:37:27 +02:00
|
|
|
|
<?php
|
2006-07-17 10:17:58 +02:00
|
|
|
|
|
|
|
|
|
// Pandora - the Free monitoring system
|
|
|
|
|
// ====================================
|
|
|
|
|
// Copyright (c) 2004-2006 Sancho Lerena, slerena@gmail.com
|
|
|
|
|
// Copyright (c) 2005-2006 Artica Soluciones Tecnol<6F>gicas S.L, info@artica.es
|
|
|
|
|
// Copyright (c) 2004-2006 Raul Mateos Martin, raulofpandora@gmail.com
|
|
|
|
|
// 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; either version 2
|
|
|
|
|
// of the License, or (at your option) any later version.
|
|
|
|
|
// 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.
|
|
|
|
|
// You should have received a copy of the GNU General Public License
|
|
|
|
|
// along with this program; if not, write to the Free Software
|
|
|
|
|
// Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
|
|
|
|
|
|
2006-03-27 05:37:27 +02:00
|
|
|
|
if (comprueba_login() == 0){
|
|
|
|
|
$id_user = $_SESSION["id_usuario"];
|
|
|
|
|
if ( (give_acl($id_user, 0, "LM")==1) OR (give_acl($id_user, 0, "AW")==1 ) OR (give_acl($id_user, 0, "PM")==1) OR (give_acl($id_user, 0, "DM")==1) OR (give_acl($id_user, 0, "UM")==1 )){
|
|
|
|
|
|
|
|
|
|
?>
|
|
|
|
|
|
|
|
|
|
<div class="bg">
|
|
|
|
|
<div class="imgl"><img src="images/upper-left-corner.gif" width="5" height="5" alt=""></div>
|
2006-06-28 19:09:23 +02:00
|
|
|
|
<div class="tit">:: <?php echo $lang_label["godmode_header"] ?> ::</div>
|
2006-03-27 05:37:27 +02:00
|
|
|
|
<div class="imgr"><img src="images/upper-right-corner.gif" width="5" height="5" alt=""></div>
|
|
|
|
|
</div>
|
|
|
|
|
<div id="menug">
|
|
|
|
|
<div id="god">
|
|
|
|
|
|
2006-06-28 19:09:23 +02:00
|
|
|
|
<?php
|
2006-03-27 05:37:27 +02:00
|
|
|
|
if ((give_acl($id_user, 0, "AW")==1)){
|
2006-05-30 20:32:36 +02:00
|
|
|
|
if (isset($_GET["sec2"]) && ($_GET["sec2"] == "godmode/agentes/modificar_agente" || $_GET["sec2"] == "godmode/agentes/configurar_agente")){
|
2006-06-27 13:34:05 +02:00
|
|
|
|
echo '<div id="god1s">';
|
2006-04-25 11:41:25 +02:00
|
|
|
|
}
|
2006-06-27 13:34:05 +02:00
|
|
|
|
else echo '<div id="god1">';
|
|
|
|
|
echo '<ul class="mn"><li><a href="index.php?sec=gagente&sec2=godmode/agentes/modificar_agente" class="mn">'.$lang_label["manage_agents"].'</a></li></ul></div>';
|
|
|
|
|
|
2006-03-27 05:37:27 +02:00
|
|
|
|
if (isset($_GET["sec"]) && $_GET["sec"] == "gagente"){
|
2006-05-19 18:43:19 +02:00
|
|
|
|
if (isset($_GET["sec2"]) && $_GET["sec2"] == "godmode/agentes/manage_config"){
|
2006-06-27 13:34:05 +02:00
|
|
|
|
echo "<div id='arrowgs1'>";
|
2006-04-25 11:41:25 +02:00
|
|
|
|
}
|
2006-06-27 13:34:05 +02:00
|
|
|
|
else echo "<div id='arrowg1'>";
|
|
|
|
|
echo "<ul class='mn'><li><a href='index.php?sec=gagente&sec2=godmode/agentes/manage_config' class='mn'>".$lang_label["manage_config"]."</a></li></ul></div>";
|
|
|
|
|
|
2006-06-28 19:09:23 +02:00
|
|
|
|
if (isset($_GET["sec2"]) && ($_GET["sec2"] == "godmode/grupos/lista_grupos" || $_GET["sec2"] == "godmode/grupos/configurar_grupo")){
|
2006-06-27 13:34:05 +02:00
|
|
|
|
echo "<div id='arrowgs1'>";
|
2006-04-25 11:41:25 +02:00
|
|
|
|
}
|
2006-06-27 13:34:05 +02:00
|
|
|
|
else echo "<div id='arrowg1'>";
|
|
|
|
|
echo "<ul class='mn'><li><a href='index.php?sec=gagente&sec2=godmode/grupos/lista_grupos' class='mn'>".$lang_label["manage_groups"]."</a></li></ul></div>";
|
2006-03-27 05:37:27 +02:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
if ((give_acl($id_user, 0, "LM")==1)){
|
2006-05-30 20:34:19 +02:00
|
|
|
|
if (isset($_GET["sec2"]) && ($_GET["sec2"] == "godmode/alertas/modificar_alerta" || $_GET["sec2"] == "godmode/alertas/configurar_alerta")){
|
2006-06-27 13:34:05 +02:00
|
|
|
|
echo '<div id="god2s">';
|
2006-04-25 11:41:25 +02:00
|
|
|
|
}
|
2006-06-27 13:34:05 +02:00
|
|
|
|
else echo '<div id="god2">';
|
|
|
|
|
echo '<ul class="mn"><li><a href="index.php?sec=galertas&sec2=godmode/alertas/modificar_alerta" class="mn">'.$lang_label["manage_alerts"].'</a></li></ul></div>';
|
2006-03-27 05:37:27 +02:00
|
|
|
|
}
|
|
|
|
|
if ((give_acl($id_user, 0, "UM")==1)){
|
2006-06-28 19:09:23 +02:00
|
|
|
|
if (isset($_GET["sec2"]) && ($_GET["sec2"] == "godmode/usuarios/lista_usuarios" || $_GET["sec2"] == "godmode/usuarios/configurar_usuarios")){
|
2006-06-27 13:34:05 +02:00
|
|
|
|
echo '<div id="god3s">';
|
2006-04-25 11:41:25 +02:00
|
|
|
|
}
|
2006-06-27 13:34:05 +02:00
|
|
|
|
else echo '<div id="god3">';
|
|
|
|
|
echo '<ul class="mn"><li><a href="index.php?sec=gusuarios&sec2=godmode/usuarios/lista_usuarios" class="mn">'.$lang_label["manage_users"].'</a></li></ul></div>';
|
2006-03-27 05:37:27 +02:00
|
|
|
|
}
|
|
|
|
|
if ( (give_acl($id_user, 0, "PM")==1)){
|
2006-05-19 18:43:19 +02:00
|
|
|
|
if (isset($_GET["sec2"]) && $_GET["sec2"] == "godmode/perfiles/lista_perfiles"){
|
2006-06-27 13:34:05 +02:00
|
|
|
|
echo '<div id="god4s">';
|
2006-04-25 11:41:25 +02:00
|
|
|
|
}
|
2006-06-27 13:34:05 +02:00
|
|
|
|
else echo '<div id="god4">';
|
|
|
|
|
echo '<ul class="mn"><li><a href="index.php?sec=gperfiles&sec2=godmode/perfiles/lista_perfiles" class="mn">'.$lang_label["manage_profiles"].'</a></li></ul></div>';
|
|
|
|
|
|
2006-05-19 18:43:19 +02:00
|
|
|
|
if (isset($_GET["sec2"]) && $_GET["sec2"] == "godmode/servers/modificar_server"){
|
2006-06-27 13:34:05 +02:00
|
|
|
|
echo '<div id="god5s">';
|
2006-04-25 11:41:25 +02:00
|
|
|
|
}
|
2006-06-27 13:34:05 +02:00
|
|
|
|
else echo '<div id="god5">';
|
|
|
|
|
echo '<ul class="mn"><li><a href="index.php?sec=gservers&sec2=godmode/servers/modificar_server" class="mn">'.$lang_label["manage_servers"].'</a></li></ul></div>';
|
|
|
|
|
|
|
|
|
|
if (isset($_GET["sec2"]) && $_GET["sec2"] == "godmode/admin_access_logs"){
|
|
|
|
|
echo '<div id="god6s">';
|
2006-04-25 11:41:25 +02:00
|
|
|
|
}
|
2006-06-27 13:34:05 +02:00
|
|
|
|
else echo '<div id="god6">';
|
|
|
|
|
echo '<ul class="mn"><li><a href="index.php?sec=glog&sec2=godmode/admin_access_logs" class="mn">'.$lang_label["system_audit"].'</a></li></ul></div>';
|
|
|
|
|
|
2006-05-19 18:43:19 +02:00
|
|
|
|
if (isset($_GET["sec2"]) && $_GET["sec2"] == "godmode/setup/setup"){
|
2006-06-27 13:34:05 +02:00
|
|
|
|
echo '<div id="god7s">';
|
2006-04-25 11:41:25 +02:00
|
|
|
|
}
|
2006-06-27 13:34:05 +02:00
|
|
|
|
else echo '<div id="god7">';
|
|
|
|
|
echo '<ul class="mn"><li><a href="index.php?sec=gsetup&sec2=godmode/setup/setup" class="mn">'.$lang_label["setup_screen"].'</a></li></ul></div>';
|
2006-04-25 11:41:25 +02:00
|
|
|
|
|
2006-03-27 05:37:27 +02:00
|
|
|
|
if (isset($_GET["sec"]) && $_GET["sec"] == "gsetup"){
|
2006-05-19 18:43:19 +02:00
|
|
|
|
if (isset($_GET["sec2"]) && $_GET["sec2"] == "godmode/setup/links"){
|
2006-06-27 13:34:05 +02:00
|
|
|
|
echo "<div id='arrowgs1'>";
|
2006-04-25 11:41:25 +02:00
|
|
|
|
}
|
2006-06-27 13:34:05 +02:00
|
|
|
|
else echo "<div id='arrowg1'>";
|
|
|
|
|
echo "<ul class='mn'><li><a href='index.php?sec=gsetup&sec2=godmode/setup/links' class='mn'>".$lang_label["setup_links"]."</a></li></ul></div>";
|
2006-03-27 05:37:27 +02:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
if ((give_acl($id_user, 0, "DM")==1)){
|
2006-05-19 18:43:19 +02:00
|
|
|
|
if (isset($_GET["sec2"]) && $_GET["sec2"] == "godmode/db/db_main"){
|
2006-06-27 13:34:05 +02:00
|
|
|
|
echo '<div id="god8s">';
|
2006-04-25 11:41:25 +02:00
|
|
|
|
}
|
2006-06-27 13:34:05 +02:00
|
|
|
|
else echo '<div id="god8">';
|
|
|
|
|
echo '<ul class="mn"><li><a href="index.php?sec=gdbman&sec2=godmode/db/db_main" class="mn">'.$lang_label["db_maintenance"].'</a></li></ul></div>';
|
|
|
|
|
|
2006-03-27 05:37:27 +02:00
|
|
|
|
if (isset($_GET["sec"]) && $_GET["sec"] == "gdbman"){
|
2006-06-26 12:59:06 +02:00
|
|
|
|
if (isset($_GET["sec2"]) && ($_GET["sec2"] == "godmode/db/db_info" || $_GET["sec2"] == "godmode/db/db_info_data")){
|
2006-06-27 13:34:05 +02:00
|
|
|
|
echo "<div id='arrowgs1'>";
|
2006-04-25 11:41:25 +02:00
|
|
|
|
}
|
2006-06-27 13:34:05 +02:00
|
|
|
|
else echo "<div id='arrowg1'>";
|
|
|
|
|
echo "<ul class='mn'><li><a href='index.php?sec=gdbman&sec2=godmode/db/db_info' class='mn'>".$lang_label["db_info"]."</a></li></ul></div>";
|
|
|
|
|
|
2006-05-19 18:43:19 +02:00
|
|
|
|
if (isset($_GET["sec2"]) && $_GET["sec2"] == "godmode/db/db_purge"){
|
2006-06-27 13:34:05 +02:00
|
|
|
|
echo "<div id='arrowgs2'>";
|
2006-04-25 11:41:25 +02:00
|
|
|
|
}
|
2006-06-27 13:34:05 +02:00
|
|
|
|
else echo "<div id='arrowg2'>";
|
|
|
|
|
echo "<ul class='mn'><li><a href='index.php?sec=gdbman&sec2=godmode/db/db_purge' class='mn'>".$lang_label["db_purge"]."</a></li></ul></div>";
|
|
|
|
|
|
2006-05-19 18:43:19 +02:00
|
|
|
|
if (isset($_GET["sec2"]) && $_GET["sec2"] == "godmode/db/db_refine"){
|
2006-06-27 13:34:05 +02:00
|
|
|
|
echo "<div id='arrowgs3'>";
|
2006-04-25 11:41:25 +02:00
|
|
|
|
}
|
2006-06-27 13:34:05 +02:00
|
|
|
|
else echo "<div id='arrowg3'>";
|
|
|
|
|
echo "<ul class='mn'><li><a href='index.php?sec=gdbman&sec2=godmode/db/db_refine' class='mn'>".$lang_label["db_refine"]."</a></li></ul></div>";
|
|
|
|
|
|
2006-05-19 18:43:19 +02:00
|
|
|
|
if (isset($_GET["sec2"]) && $_GET["sec2"] == "godmode/db/db_audit"){
|
2006-06-27 13:34:05 +02:00
|
|
|
|
echo "<div id='arrowgs4'>";
|
2006-04-25 11:41:25 +02:00
|
|
|
|
}
|
2006-06-27 13:34:05 +02:00
|
|
|
|
else echo "<div id='arrowg4'>";
|
|
|
|
|
echo "<ul class='mn'><li><a href='index.php?sec=gdbman&sec2=godmode/db/db_audit' class='mn'>".$lang_label["db_audit"]."</a></li></ul></div>";
|
|
|
|
|
|
2006-05-19 18:43:19 +02:00
|
|
|
|
if (isset($_GET["sec2"]) && $_GET["sec2"] == "godmode/db/db_event"){
|
2006-06-27 13:34:05 +02:00
|
|
|
|
echo "<div id='arrowgs5'>";
|
2006-04-25 11:41:25 +02:00
|
|
|
|
}
|
2006-06-27 13:34:05 +02:00
|
|
|
|
else echo "<div id='arrowg5'>";
|
|
|
|
|
echo "<ul class='mn'><li><a href='index.php?sec=gdbman&sec2=godmode/db/db_event' class='mn'>".$lang_label["db_event"]."</a></li></ul></div>";
|
2006-03-27 05:37:27 +02:00
|
|
|
|
}
|
|
|
|
|
}
|
2006-06-28 19:09:23 +02:00
|
|
|
|
?>
|
2006-03-27 05:37:27 +02:00
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
<?php
|
|
|
|
|
} // end verify access to this menu
|
|
|
|
|
}
|
|
|
|
|
?>
|