2006-03-27 05:37:27 +02:00
|
|
|
<?php
|
|
|
|
|
2006-07-12 15:43:41 +02:00
|
|
|
// Pandora - the Free monitoring system
|
|
|
|
// ====================================
|
|
|
|
// Copyright (c) 2004-2006 Sancho Lerena, slerena@gmail.com
|
|
|
|
// Copyright (c) 2005-2006 Artica Soluciones Tecnologicas 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
|
|
|
|
|
|
|
// Load global vars
|
|
|
|
require("include/config.php");
|
2006-07-12 15:43:41 +02:00
|
|
|
|
2006-03-27 05:37:27 +02:00
|
|
|
if (comprueba_login() == 0) {
|
|
|
|
|
|
|
|
?>
|
|
|
|
|
2006-07-12 15:43:41 +02:00
|
|
|
<h2><?php echo $lang_label["users_"] ?></h2>
|
2006-07-09 16:58:02 +02:00
|
|
|
<h3><?php echo $lang_label["users"] ?><a href='help/<?php echo $help_code ?>/chap2.php#2' target='_help' class='help'> <span><?php echo $lang_label["help"] ?></span></a></h3>
|
2006-03-27 05:37:27 +02:00
|
|
|
|
|
|
|
<table cellpadding="3" cellspacing="3" width="700">
|
2007-04-18 23:45:03 +02:00
|
|
|
<th width="80px"><?php echo $lang_label["user_ID"]?>
|
|
|
|
<th width="155px"><?php echo $lang_label["last_contact"]?>
|
|
|
|
<th width="45px"><?php echo $lang_label["profile"]?>
|
|
|
|
<th width="120px"><?php echo $lang_label["name"]?>
|
2006-03-27 05:37:27 +02:00
|
|
|
<th><?php echo $lang_label["description"]?>
|
|
|
|
|
|
|
|
<?php
|
2006-07-03 12:49:42 +02:00
|
|
|
$color = 1;
|
2006-03-27 05:37:27 +02:00
|
|
|
$query1="SELECT * FROM tusuario";
|
|
|
|
$resq1=mysql_query($query1);
|
|
|
|
while ($rowdup=mysql_fetch_array($resq1)){
|
2007-04-18 23:45:03 +02:00
|
|
|
$name=$rowdup["id_usuario"];
|
|
|
|
$nivel=$rowdup["nivel"];
|
|
|
|
$real_name=$rowdup["nombre_real"];
|
|
|
|
$comments=$rowdup["comentarios"];
|
2006-03-27 05:37:27 +02:00
|
|
|
$fecha_registro =$rowdup["fecha_registro"];
|
2006-07-03 12:49:42 +02:00
|
|
|
if ($color == 1){
|
|
|
|
$tdcolor = "datos";
|
|
|
|
$color = 0;
|
2007-04-02 Raul Mateos <raulofpandora@gmail.com>
* images/ok.gif: Deleted
* images/cross.png, go.png, ok.png, upd.png: Added new images
* include/styles/pandora.css, tip.css, op.css: Updated. Deleted some
old styles, not all.
* include/languages/language_en.php, language_es_es.php: Added text
for no recon task.
* godmode/*.php, operation/*.php, help/*.php: Changed some icons,
updated several buttons with new icons.
git-svn-id: https://svn.code.sf.net/p/pandora/code/trunk@410 c3f86ba8-e40f-0410-aaad-9ba5e7f4b01f
2007-04-02 19:17:27 +02:00
|
|
|
$tip = "tip";
|
2006-07-03 12:49:42 +02:00
|
|
|
}
|
|
|
|
else {
|
|
|
|
$tdcolor = "datos2";
|
|
|
|
$color = 1;
|
2007-04-02 Raul Mateos <raulofpandora@gmail.com>
* images/ok.gif: Deleted
* images/cross.png, go.png, ok.png, upd.png: Added new images
* include/styles/pandora.css, tip.css, op.css: Updated. Deleted some
old styles, not all.
* include/languages/language_en.php, language_es_es.php: Added text
for no recon task.
* godmode/*.php, operation/*.php, help/*.php: Changed some icons,
updated several buttons with new icons.
git-svn-id: https://svn.code.sf.net/p/pandora/code/trunk@410 c3f86ba8-e40f-0410-aaad-9ba5e7f4b01f
2007-04-02 19:17:27 +02:00
|
|
|
$tip = "tip2";
|
2006-07-03 12:49:42 +02:00
|
|
|
}
|
2007-04-18 23:45:03 +02:00
|
|
|
echo "<tr><td class='$tdcolor'><a href='index.php?sec=usuarios&sec2=operation/users/user_edit&ver=".$nombre."'><b>".$name."</b></a>";
|
2006-07-03 12:49:42 +02:00
|
|
|
echo "<td class='$tdcolor'><font size=1>".$fecha_registro."</font>";
|
|
|
|
echo "<td class='$tdcolor'>";
|
2006-03-27 05:37:27 +02:00
|
|
|
if ($nivel == 1)
|
2007-03-02 18:56:07 +01:00
|
|
|
echo "<img src='images/user_suit.png'>";
|
2006-03-27 05:37:27 +02:00
|
|
|
else
|
2007-03-02 18:56:07 +01:00
|
|
|
echo "<img src='images/user_green.png'>";
|
2007-04-18 23:45:03 +02:00
|
|
|
$sql1='SELECT * FROM tusuario_perfil WHERE id_usuario = "'.$name.'"';
|
2006-03-27 05:37:27 +02:00
|
|
|
$result=mysql_query($sql1);
|
2007-04-02 Raul Mateos <raulofpandora@gmail.com>
* images/ok.gif: Deleted
* images/cross.png, go.png, ok.png, upd.png: Added new images
* include/styles/pandora.css, tip.css, op.css: Updated. Deleted some
old styles, not all.
* include/languages/language_en.php, language_es_es.php: Added text
for no recon task.
* godmode/*.php, operation/*.php, help/*.php: Changed some icons,
updated several buttons with new icons.
git-svn-id: https://svn.code.sf.net/p/pandora/code/trunk@410 c3f86ba8-e40f-0410-aaad-9ba5e7f4b01f
2007-04-02 19:17:27 +02:00
|
|
|
echo "<a href='#' class='$tip'> <span>";
|
2006-03-27 05:37:27 +02:00
|
|
|
if (mysql_num_rows($result)){
|
|
|
|
while ($row=mysql_fetch_array($result)){
|
|
|
|
echo dame_perfil($row["id_perfil"])."/ ";
|
|
|
|
echo dame_grupo($row["id_grupo"])."<br>";
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else { echo $lang_label["no_profile"]; }
|
|
|
|
echo "</span></a>";
|
2007-04-18 23:45:03 +02:00
|
|
|
echo "<td class='$tdcolor' width='100'>".substr($real_name,0,16)."</td>";
|
|
|
|
echo "<td class='$tdcolor'>".$comments."</td>";
|
2006-03-27 05:37:27 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
echo "<tr><td colspan='5'><div class='raya'></div></td></tr></table><br>";
|
|
|
|
|
|
|
|
?>
|
|
|
|
|
|
|
|
|
2006-07-09 16:58:02 +02:00
|
|
|
<h3><?php echo $lang_label["definedprofiles"] ?><a href='help/<?php echo $help_code ?>/chap2.php#21' target='_help' class='help'> <span><?php echo $lang_label["help"] ?></span></a></h3>
|
2006-03-27 05:37:27 +02:00
|
|
|
|
|
|
|
<table cellpadding=3 cellspacing=3 border=0>
|
|
|
|
<?php
|
|
|
|
|
|
|
|
$query_del1="SELECT * FROM tperfil";
|
|
|
|
$resq1=mysql_query($query_del1);
|
|
|
|
echo "<tr>";
|
2007-04-02 Raul Mateos <raulofpandora@gmail.com>
* images/ok.gif: Deleted
* images/cross.png, go.png, ok.png, upd.png: Added new images
* include/styles/pandora.css, tip.css, op.css: Updated. Deleted some
old styles, not all.
* include/languages/language_en.php, language_es_es.php: Added text
for no recon task.
* godmode/*.php, operation/*.php, help/*.php: Changed some icons,
updated several buttons with new icons.
git-svn-id: https://svn.code.sf.net/p/pandora/code/trunk@410 c3f86ba8-e40f-0410-aaad-9ba5e7f4b01f
2007-04-02 19:17:27 +02:00
|
|
|
echo "<th width='180px'><font size=1>".$lang_label["profiles"];
|
|
|
|
echo "<th width='40px'><font size=1>IR<a href='#' class='tipp'> <span>".$help_label["IR"]."</span></a>";
|
|
|
|
echo "<th width='40px'><font size=1>IW<a href='#' class='tipp'> <span>".$help_label["IW"]."</span></a>";
|
|
|
|
echo "<th width='40px'><font size=1>IM<a href='#' class='tipp'> <span>".$help_label["IM"]."</span></a>";
|
|
|
|
echo "<th width='40px'><font size=1>AR<a href='#' class='tipp'> <span>".$help_label["AR"]."</span></a>";
|
|
|
|
echo "<th width='40px'><font size=1>AW<a href='#' class='tipp'> <span>".$help_label["AW"]."</span></a>";
|
|
|
|
echo "<th width='40px'><font size=1>LW<a href='#' class='tipp'> <span>".$help_label["LW"]."</span></a>";
|
|
|
|
echo "<th width='40px'><font size=1>UM<a href='#' class='tipp'> <span>".$help_label["UM"]."</span></a>";
|
|
|
|
echo "<th width='40px'><font size=1>DM<a href='#' class='tipp'> <span>".$help_label["DM"]."</span></a>";
|
|
|
|
echo "<th width='40px'><font size=1>LM<a href='#' class='tipp'> <span>".$help_label["LM"]."</span></a>";
|
|
|
|
echo "<th width='40px'><font size=1>PM<a href='#' class='tipp'> <span>".$help_label["PM"]."</span></a>";
|
2006-07-04 12:09:39 +02:00
|
|
|
$color = 1;
|
2006-03-27 05:37:27 +02:00
|
|
|
while ($rowdup=mysql_fetch_array($resq1)){
|
|
|
|
$id_perfil = $rowdup["id_perfil"];
|
|
|
|
$nombre=$rowdup["name"];
|
|
|
|
$incident_view = $rowdup["incident_view"];
|
|
|
|
$incident_edit = $rowdup["incident_edit"];
|
|
|
|
$incident_management = $rowdup["incident_management"];
|
|
|
|
$agent_view = $rowdup["agent_view"];
|
|
|
|
$agent_edit =$rowdup["agent_edit"];
|
|
|
|
$alert_edit = $rowdup["alert_edit"];
|
|
|
|
$user_management = $rowdup["user_management"];
|
|
|
|
$db_management = $rowdup["db_management"];
|
|
|
|
$alert_management = $rowdup["alert_management"];
|
|
|
|
$pandora_management = $rowdup["pandora_management"];
|
2006-07-03 12:49:42 +02:00
|
|
|
if ($color == 1){
|
|
|
|
$tdcolor = "datos";
|
|
|
|
$color = 0;
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
$tdcolor = "datos2";
|
|
|
|
$color = 1;
|
|
|
|
}
|
|
|
|
echo "<tr><td class='$tdcolor"."_id'>".$nombre;
|
2006-03-27 05:37:27 +02:00
|
|
|
|
2006-07-03 12:49:42 +02:00
|
|
|
echo "<td class='$tdcolor'>";
|
2007-04-02 Raul Mateos <raulofpandora@gmail.com>
* images/ok.gif: Deleted
* images/cross.png, go.png, ok.png, upd.png: Added new images
* include/styles/pandora.css, tip.css, op.css: Updated. Deleted some
old styles, not all.
* include/languages/language_en.php, language_es_es.php: Added text
for no recon task.
* godmode/*.php, operation/*.php, help/*.php: Changed some icons,
updated several buttons with new icons.
git-svn-id: https://svn.code.sf.net/p/pandora/code/trunk@410 c3f86ba8-e40f-0410-aaad-9ba5e7f4b01f
2007-04-02 19:17:27 +02:00
|
|
|
if ($incident_view == 1) echo "<img src='images/ok.png' border=0>";
|
2006-03-27 05:37:27 +02:00
|
|
|
|
2006-07-03 12:49:42 +02:00
|
|
|
echo "<td class='$tdcolor'>";
|
2007-04-02 Raul Mateos <raulofpandora@gmail.com>
* images/ok.gif: Deleted
* images/cross.png, go.png, ok.png, upd.png: Added new images
* include/styles/pandora.css, tip.css, op.css: Updated. Deleted some
old styles, not all.
* include/languages/language_en.php, language_es_es.php: Added text
for no recon task.
* godmode/*.php, operation/*.php, help/*.php: Changed some icons,
updated several buttons with new icons.
git-svn-id: https://svn.code.sf.net/p/pandora/code/trunk@410 c3f86ba8-e40f-0410-aaad-9ba5e7f4b01f
2007-04-02 19:17:27 +02:00
|
|
|
if ($incident_edit == 1) echo "<img src='images/ok.png' border=0>";
|
2006-03-27 05:37:27 +02:00
|
|
|
|
2006-07-03 12:49:42 +02:00
|
|
|
echo "<td class='$tdcolor'>";
|
2007-04-02 Raul Mateos <raulofpandora@gmail.com>
* images/ok.gif: Deleted
* images/cross.png, go.png, ok.png, upd.png: Added new images
* include/styles/pandora.css, tip.css, op.css: Updated. Deleted some
old styles, not all.
* include/languages/language_en.php, language_es_es.php: Added text
for no recon task.
* godmode/*.php, operation/*.php, help/*.php: Changed some icons,
updated several buttons with new icons.
git-svn-id: https://svn.code.sf.net/p/pandora/code/trunk@410 c3f86ba8-e40f-0410-aaad-9ba5e7f4b01f
2007-04-02 19:17:27 +02:00
|
|
|
if ($incident_management == 1) echo "<img src='images/ok.png' border=0>";
|
2006-03-27 05:37:27 +02:00
|
|
|
|
2006-07-03 12:49:42 +02:00
|
|
|
echo "<td class='$tdcolor'>";
|
2007-04-02 Raul Mateos <raulofpandora@gmail.com>
* images/ok.gif: Deleted
* images/cross.png, go.png, ok.png, upd.png: Added new images
* include/styles/pandora.css, tip.css, op.css: Updated. Deleted some
old styles, not all.
* include/languages/language_en.php, language_es_es.php: Added text
for no recon task.
* godmode/*.php, operation/*.php, help/*.php: Changed some icons,
updated several buttons with new icons.
git-svn-id: https://svn.code.sf.net/p/pandora/code/trunk@410 c3f86ba8-e40f-0410-aaad-9ba5e7f4b01f
2007-04-02 19:17:27 +02:00
|
|
|
if ($agent_view == 1) echo "<img src='images/ok.png' border=0>";
|
2006-03-27 05:37:27 +02:00
|
|
|
|
2006-07-03 12:49:42 +02:00
|
|
|
echo "<td class='$tdcolor'>";
|
2007-04-02 Raul Mateos <raulofpandora@gmail.com>
* images/ok.gif: Deleted
* images/cross.png, go.png, ok.png, upd.png: Added new images
* include/styles/pandora.css, tip.css, op.css: Updated. Deleted some
old styles, not all.
* include/languages/language_en.php, language_es_es.php: Added text
for no recon task.
* godmode/*.php, operation/*.php, help/*.php: Changed some icons,
updated several buttons with new icons.
git-svn-id: https://svn.code.sf.net/p/pandora/code/trunk@410 c3f86ba8-e40f-0410-aaad-9ba5e7f4b01f
2007-04-02 19:17:27 +02:00
|
|
|
if ($agent_edit == 1) echo "<img src='images/ok.png' border=0>";
|
2006-03-27 05:37:27 +02:00
|
|
|
|
2006-07-03 12:49:42 +02:00
|
|
|
echo "<td class='$tdcolor'>";
|
2007-04-02 Raul Mateos <raulofpandora@gmail.com>
* images/ok.gif: Deleted
* images/cross.png, go.png, ok.png, upd.png: Added new images
* include/styles/pandora.css, tip.css, op.css: Updated. Deleted some
old styles, not all.
* include/languages/language_en.php, language_es_es.php: Added text
for no recon task.
* godmode/*.php, operation/*.php, help/*.php: Changed some icons,
updated several buttons with new icons.
git-svn-id: https://svn.code.sf.net/p/pandora/code/trunk@410 c3f86ba8-e40f-0410-aaad-9ba5e7f4b01f
2007-04-02 19:17:27 +02:00
|
|
|
if ($alert_edit == 1) echo "<img src='images/ok.png' border=0>";
|
2006-03-27 05:37:27 +02:00
|
|
|
|
2006-07-03 12:49:42 +02:00
|
|
|
echo "<td class='$tdcolor'>";
|
2007-04-02 Raul Mateos <raulofpandora@gmail.com>
* images/ok.gif: Deleted
* images/cross.png, go.png, ok.png, upd.png: Added new images
* include/styles/pandora.css, tip.css, op.css: Updated. Deleted some
old styles, not all.
* include/languages/language_en.php, language_es_es.php: Added text
for no recon task.
* godmode/*.php, operation/*.php, help/*.php: Changed some icons,
updated several buttons with new icons.
git-svn-id: https://svn.code.sf.net/p/pandora/code/trunk@410 c3f86ba8-e40f-0410-aaad-9ba5e7f4b01f
2007-04-02 19:17:27 +02:00
|
|
|
if ($user_management == 1) echo "<img src='images/ok.png' border=0>";
|
2006-03-27 05:37:27 +02:00
|
|
|
|
2006-07-03 12:49:42 +02:00
|
|
|
echo "<td class='$tdcolor'>";
|
2007-04-02 Raul Mateos <raulofpandora@gmail.com>
* images/ok.gif: Deleted
* images/cross.png, go.png, ok.png, upd.png: Added new images
* include/styles/pandora.css, tip.css, op.css: Updated. Deleted some
old styles, not all.
* include/languages/language_en.php, language_es_es.php: Added text
for no recon task.
* godmode/*.php, operation/*.php, help/*.php: Changed some icons,
updated several buttons with new icons.
git-svn-id: https://svn.code.sf.net/p/pandora/code/trunk@410 c3f86ba8-e40f-0410-aaad-9ba5e7f4b01f
2007-04-02 19:17:27 +02:00
|
|
|
if ($db_management == 1) echo "<img src='images/ok.png' border=0>";
|
2006-03-27 05:37:27 +02:00
|
|
|
|
2006-07-03 12:49:42 +02:00
|
|
|
echo "<td class='$tdcolor'>";
|
2007-04-02 Raul Mateos <raulofpandora@gmail.com>
* images/ok.gif: Deleted
* images/cross.png, go.png, ok.png, upd.png: Added new images
* include/styles/pandora.css, tip.css, op.css: Updated. Deleted some
old styles, not all.
* include/languages/language_en.php, language_es_es.php: Added text
for no recon task.
* godmode/*.php, operation/*.php, help/*.php: Changed some icons,
updated several buttons with new icons.
git-svn-id: https://svn.code.sf.net/p/pandora/code/trunk@410 c3f86ba8-e40f-0410-aaad-9ba5e7f4b01f
2007-04-02 19:17:27 +02:00
|
|
|
if ($alert_management == 1) echo "<img src='images/ok.png' border=0>";
|
2006-03-27 05:37:27 +02:00
|
|
|
|
2006-07-03 12:49:42 +02:00
|
|
|
echo "<td class='$tdcolor'>";
|
2007-04-02 Raul Mateos <raulofpandora@gmail.com>
* images/ok.gif: Deleted
* images/cross.png, go.png, ok.png, upd.png: Added new images
* include/styles/pandora.css, tip.css, op.css: Updated. Deleted some
old styles, not all.
* include/languages/language_en.php, language_es_es.php: Added text
for no recon task.
* godmode/*.php, operation/*.php, help/*.php: Changed some icons,
updated several buttons with new icons.
git-svn-id: https://svn.code.sf.net/p/pandora/code/trunk@410 c3f86ba8-e40f-0410-aaad-9ba5e7f4b01f
2007-04-02 19:17:27 +02:00
|
|
|
if ($pandora_management == 1) echo "<img src='images/ok.png' border=0>";
|
2006-03-27 05:37:27 +02:00
|
|
|
|
|
|
|
}
|
|
|
|
} //end of page
|
|
|
|
?>
|
|
|
|
<tr><td colspan='11'><div class='raya'></div></td></tr></table>
|