157 lines
6.2 KiB
PHP
157 lines
6.2 KiB
PHP
<?php
|
|
|
|
// 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.
|
|
|
|
// Load global vars
|
|
require("include/config.php");
|
|
|
|
if (comprueba_login() == 0) {
|
|
|
|
?>
|
|
|
|
<h2><?php echo $lang_label["users_"] ?></h2>
|
|
<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>
|
|
|
|
<table cellpadding="3" cellspacing="3" width="700">
|
|
<th class="w80"><?php echo $lang_label["user_ID"]?>
|
|
<th class="w155"><?php echo $lang_label["last_contact"]?>
|
|
<th class="w45"><?php echo $lang_label["profile"]?>
|
|
<th class="w120"><?php echo $lang_label["name"]?>
|
|
<th><?php echo $lang_label["description"]?>
|
|
|
|
<?php
|
|
$color = 1;
|
|
$query1="SELECT * FROM tusuario";
|
|
$resq1=mysql_query($query1);
|
|
while ($rowdup=mysql_fetch_array($resq1)){
|
|
$nombre=$rowdup["id_usuario"];
|
|
$nivel =$rowdup["nivel"];
|
|
$comentarios =$rowdup["comentarios"];
|
|
$fecha_registro =$rowdup["fecha_registro"];
|
|
if ($color == 1){
|
|
$tdcolor = "datos";
|
|
$color = 0;
|
|
}
|
|
else {
|
|
$tdcolor = "datos2";
|
|
$color = 1;
|
|
}
|
|
echo "<tr><td class='$tdcolor'><a href='index.php?sec=usuarios&sec2=operation/users/user_edit&ver=".$nombre."'><b>".$nombre."</b></a>";
|
|
echo "<td class='$tdcolor'><font size=1>".$fecha_registro."</font>";
|
|
echo "<td class='$tdcolor'>";
|
|
if ($nivel == 1)
|
|
echo "<img src='images/admin.gif'>";
|
|
else
|
|
echo "<img src='images/user.gif'>";
|
|
$sql1='SELECT * FROM tusuario_perfil WHERE id_usuario = "'.$nombre.'"';
|
|
$result=mysql_query($sql1);
|
|
echo "<a href='#' class='tip'> <span>";
|
|
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>";
|
|
echo "<td class='$tdcolor' width='100'>".substr($rowdup["nombre_real"],0,16);
|
|
echo "<td class='$tdcolor'>".$comentarios;
|
|
}
|
|
|
|
echo "<tr><td colspan='5'><div class='raya'></div></td></tr></table><br>";
|
|
|
|
?>
|
|
|
|
|
|
<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>
|
|
|
|
<table cellpadding=3 cellspacing=3 border=0>
|
|
<?php
|
|
|
|
$query_del1="SELECT * FROM tperfil";
|
|
$resq1=mysql_query($query_del1);
|
|
echo "<tr>";
|
|
echo "<th class='w180'><font size=1>".$lang_label["profiles"];
|
|
echo "<th class='w40'><font size=1>IR<a href='#' class='tip2'> <span>".$help_label["IR"]."</span></a>";
|
|
echo "<th class='w40'><font size=1>IW<a href='#' class='tip2'> <span>".$help_label["IW"]."</span></a>";
|
|
echo "<th class='w40'><font size=1>IM<a href='#' class='tip2'> <span>".$help_label["IM"]."</span></a>";
|
|
echo "<th class='w40'><font size=1>AR<a href='#' class='tip2'> <span>".$help_label["AR"]."</span></a>";
|
|
echo "<th class='w40'><font size=1>AW<a href='#' class='tip2'> <span>".$help_label["AW"]."</span></a>";
|
|
echo "<th class='w40'><font size=1>LW<a href='#' class='tip2'> <span>".$help_label["LW"]."</span></a>";
|
|
echo "<th class='w40'><font size=1>UM<a href='#' class='tip2'> <span>".$help_label["UM"]."</span></a>";
|
|
echo "<th class='w40'><font size=1>DM<a href='#' class='tip2'> <span>".$help_label["DM"]."</span></a>";
|
|
echo "<th class='w40'><font size=1>LM<a href='#' class='tip2'> <span>".$help_label["LM"]."</span></a>";
|
|
echo "<th class='w40'><font size=1>PM<a href='#' class='tip2'> <span>".$help_label["PM"]."</span></a>";
|
|
$color = 1;
|
|
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"];
|
|
if ($color == 1){
|
|
$tdcolor = "datos";
|
|
$color = 0;
|
|
}
|
|
else {
|
|
$tdcolor = "datos2";
|
|
$color = 1;
|
|
}
|
|
echo "<tr><td class='$tdcolor"."_id'>".$nombre;
|
|
|
|
echo "<td class='$tdcolor'>";
|
|
if ($incident_view == 1) echo "<img src='images/ok.gif' border=0>";
|
|
|
|
echo "<td class='$tdcolor'>";
|
|
if ($incident_edit == 1) echo "<img src='images/ok.gif' border=0>";
|
|
|
|
echo "<td class='$tdcolor'>";
|
|
if ($incident_management == 1) echo "<img src='images/ok.gif' border=0>";
|
|
|
|
echo "<td class='$tdcolor'>";
|
|
if ($agent_view == 1) echo "<img src='images/ok.gif' border=0>";
|
|
|
|
echo "<td class='$tdcolor'>";
|
|
if ($agent_edit == 1) echo "<img src='images/ok.gif' border=0>";
|
|
|
|
echo "<td class='$tdcolor'>";
|
|
if ($alert_edit == 1) echo "<img src='images/ok.gif' border=0>";
|
|
|
|
echo "<td class='$tdcolor'>";
|
|
if ($user_management == 1) echo "<img src='images/ok.gif' border=0>";
|
|
|
|
echo "<td class='$tdcolor'>";
|
|
if ($db_management == 1) echo "<img src='images/ok.gif' border=0>";
|
|
|
|
echo "<td class='$tdcolor'>";
|
|
if ($alert_management == 1) echo "<img src='images/ok.gif' border=0>";
|
|
|
|
echo "<td class='$tdcolor'>";
|
|
if ($pandora_management == 1) echo "<img src='images/ok.gif' border=0>";
|
|
|
|
}
|
|
} //end of page
|
|
?>
|
|
<tr><td colspan='11'><div class='raya'></div></td></tr></table>
|