Subversion Repositories ALCASAR

Compare Revisions

Ignore whitespace Rev 909 → Rev 910

/web/acc/manager/htdocs/find.php
1,4 → 1,8
<?php
//gestion de la langue
$origine='find_user';
if (is_file("../lib/langues.php"))
include("../lib/langues.php");
require('/etc/freeradius-web/config.php');
if (isset($search_IN)) $selected[$search_IN] = 'selected';
if (isset ($radius_attr)) $selected[$radius_attr] = 'selected';
6,13 → 10,13
?>
<html>
<head>
<title>Gestion des usager</title>
<title><?php echo "$l_title";?></title>
<meta http-equiv="Content-Type" content="text/html; charset=<?php echo $config['general_charset']?>">
<link rel="stylesheet" href="/css/style.css">
</head>
<body>
<TABLE width="100%" border="0" cellspacing="0" cellpadding="0">
<tr><th>Gestion des usagers</th></tr>
<tr><th><?php echo "$l_frame_top";?></th></tr>
<tr bgcolor="#FFCC66"><td><img src="/images/pix.gif" width="1"
height="2"></td></tr>
</TABLE>
27,7 → 31,7
<td bgcolor="black" width=200>
<table border=0 width=100% cellpadding=2 cellspacing=0>
<tr bgcolor="#907030" align=right valign=top><th>
<font color="white">Filtre de recherche</font>&nbsp;
<font color="white"><?php echo "$l_search_filter";?></font>
</th></tr>
</table>
</td></tr>
47,7 → 51,7
 
<table border=1 bordercolordark=#ffffe0 bordercolorlight=#000000 width=100% cellpadding=2 cellspacing=0 bgcolor="#ffffe0" valign=top>
<tr bgcolor="#d0ddb0">
<th>#</th><th>Usager</th><th>Actions</th><th>membre du groupe</th>
<th>#</th><th>$l_user</th><th>Actions</th><th>$l_group_member</th>
</tr>
EOM;
foreach ($found_users as $user){
57,12 → 61,12
$num++;
$msg .= "<tr align=center><td>$num</td><td>$user";
$msg .= <<<EOM
</td><td><a href="user_admin.php?login=$User" title="&Eacute;tat"><img src=/images/info.gif></a>
<a href="user_edit.php?login=$User" title="Attributs"><img src=/images/create.gif></a>
<a href="user_info.php?login=$User" title="Informations personnelles"><img src=/images/tpf.gif></a>
<a href="user_accounting.php?login=$User" title="Connexions effectu&eacute;es"><img src=/images/graph.gif></a>
<a href="clear_opensessions.php?login=$User" title="Sessions ouvertes"><img src=/images/state_ok.gif></a>
<a href="user_delete.php?login=$User" title="Supprimer"><img src=/images/state_error.gif></a></td><td>
</td><td><a href="user_admin.php?login=$User" title="$l_status"><img src=/images/info.gif></a>
<a href="user_edit.php?login=$User" title="$l_attributes"><img src=/images/create.gif></a>
<a href="user_info.php?login=$User" title="$l_personal_info"><img src=/images/tpf.gif></a>
<a href="user_accounting.php?login=$User" title="$l_connections"><img src=/images/graph.gif></a>
<a href="clear_opensessions.php?login=$User" title="$l_open_sessions"><img src=/images/state_ok.gif></a>
<a href="user_delete.php?login=$User" title="$l_remove"><img src=/images/state_error.gif></a></td><td>
EOM;
$login = $user;
if (is_file("../lib/sql/defaults.php")) //retrieve member_groups
74,7 → 78,7
$msg .= "</tr></table>\n";
}
else
$msg = "<b>Pas d'usagers trouv&eacute;s</b><br>\n";
$msg = "<b>$l_no_user_found</b><br>\n";
}
}
?>
83,16 → 87,16
<table border=1 bordercolordark=#ffffe0 bordercolorlight=#000000 width=100% cellpadding=2 cellspacing=0 bgcolor="#ffffe0" valign=top>
<tr>
<td align=right bgcolor="#d0ddb0">
Crit&egrave;re de recherche
<?php
echo <<<EOM
$l_search_criteria
</td>
<td>
<?php
echo <<<EOM
<select name="search_IN" editable onChange="this.form.submit();">
<option $selected[username] value="username">Identifiant (login)
<option $selected[name] value="name">Nom complet (NOM Prenom)
<option $selected[username] value="username">$l_login
<option $selected[name] value="name">$l_name
<option $selected[department] value="department">Service
<option $selected[radius] value="radius">Attribut particulier
<option $selected[radius] value="radius">$l_special_attribute
EOM;
?>
 
106,13 → 110,67
echo <<<EOM
<tr>
<td align=right bgcolor="#d0ddb0">
Attributs RADIUS
$l_attribute
</td>
<td>
<select name="radius_attr" editable>
EOM;
foreach($show_attrs as $key => $desc)
echo "<option $selected[$key] value=\"$key\">$desc\n";
switch ($key)
{
case 'Simultaneous-Use' :
$desc=$l_simultaneous_use;
echo "<option $selected[$key] value=\"$key\">$desc\n";
break;
case 'Max-All-Session' :
$desc=$l_max_all_session;
echo "<option $selected[$key] value=\"$key\">$desc\n";
break;
case 'Session-Timeout' :
$desc=$l_session_timeout;
echo "<option $selected[$key] value=\"$key\">$desc\n";
break;
case 'Max-Daily-Session' :
$desc=$l_daily_timeout;
echo "<option $selected[$key] value=\"$key\">$desc\n";
break;
case 'Max-Monthly-Session' :
$desc=$l_monthly_timeout;
echo "<option $selected[$key] value=\"$key\">$desc\n";
break;
case 'Login-Time' :
$desc=$l_login_time;
echo "<option $selected[$key] value=\"$key\">$desc\n";
break;
case 'Expiration' :
$desc=$l_expiration;
echo "<option $selected[$key] value=\"$key\">$desc\n";
break;
case 'ChilliSpot-Max-Input-Octets' :
$desc=$l_max_input_octets;
echo "<option $selected[$key] value=\"$key\">$desc\n";
break;
case 'ChilliSpot-Max-Output-Octets' :
$desc=$l_max_output_octets;
echo "<option $selected[$key] value=\"$key\">$desc\n";
break;
case 'ChilliSpot-Max-Total-Octets' :
$desc=$l_max_total_octets;
echo "<option $selected[$key] value=\"$key\">$desc\n";
break;
case 'ChilliSpot-Bandwidth-Max-Up' :
$desc=$l_max_bandwidth_up;
echo "<option $selected[$key] value=\"$key\">$desc\n";
break;
case 'ChilliSpot-Bandwidth-Max-Down' :
$desc=$l_max_bandwidth_down;
echo "<option $selected[$key] value=\"$key\">$desc\n";
break;
case 'WISPr-Redirection-URL' :
$desc=$l_wispr_redirection;
echo "<option $selected[$key] value=\"$key\">$desc\n";
break;
}
echo <<<EOM
</select>
</td>
123,8 → 181,7
?>
<tr>
<td align=right bgcolor="#d0ddb0">
qui contient<BR>
(champ vide = tous)
<?php echo "$l_value";?>
</td>
<td>
<input type=text name="search" value="<?php if (isset($search)) echo $search ;?>" size=25>
140,7 → 197,7
</tr> -->
</table>
<br>
<input type=submit class=button value="Lancer la recherche" OnClick="this.form.find_user.value=1">
<input type=submit class=button value="<?php echo"$l_search";?>" OnClick="this.form.find_user.value=1">
</form>
<?php
if (isset($find_user)){
/web/acc/manager/htdocs/user_edit.php
6,12 → 6,10
require('/etc/freeradius-web/config.php');
require('../lib/attrshow.php');
require('../lib/defaults.php');
$extra_text = '';
if ($user_type != 'group'){
if (is_file("../lib/$config[general_lib_type]/user_info.php"))
include("../lib/$config[general_lib_type]/user_info.php");
if ($config[general_lib_type] == 'sql' && $config[sql_show_all_groups] == 'true'){
$extra_text = "<br><font size=-2><i>(le groupe auquel apartient l'usager est surlign&eacute;)</i></font>";
$saved_login = $login;
$login = '';
if (is_file("../lib/sql/group_info.php"))
35,7 → 33,7
?>
<html>
<head>
<title>subscription configuration for users and groups</title>
<title><?php echo "$l_title";?></title>
<meta http-equiv="Content-Type" content="text/html; charset=<?php echo $config[general_charset]?>">
<link rel="stylesheet" href="/css/style.css">
<script language="javascript" type="text/javascript">
65,11 → 63,6
<TABLE width="100%" border=1 cellspacing=0 cellpadding=1>
<tr><td valign="middle" align="left">
<center>
<table border=0 width=550 cellpadding=0 cellspacing=0>
<tr valign=top>
<!--<td align=center><img src="images/title2.gif"></td>-->
</tr>
</table>
<table border=0 width=400 cellpadding=0 cellspacing=2>
<?php
if ($user_type != 'group')
91,7 → 84,7
<td bgcolor="black" width=25% align=right>
<table border=0 width="200" cellpadding=2 cellspacing=0>
<tr bgcolor="#907030" align=center valign=top><th>
<font color="white">$titre : $login</font>&nbsp;
<font color="white">$titre : $login ($cn)</font>
</th></tr>
</table>
</td></tr>
352,7 → 345,7
echo <<<EOM
<tr>
<td align=right colspan=$colspan bgcolor="#d0ddb0">
Membre de $extra_text
$l_group_member<br><font size=-2><i>($l_main_group)</i></font>
</td>
<td>
EOM;
376,7 → 369,7
}
}
echo "</table><br>";
echo "<input type=submit class=button value=Change OnClick=\"this.form.change.value=1\">";
echo "<input type=submit class=button value=$l_change OnClick=\"this.form.change.value=1\">";
//if ($user_type != 'group'){
// echo <<<EOM
//<br><br>
/web/acc/manager/htdocs/user_accounting.php
1,19 → 1,24
<?php
//gestion de la langue
$origine='user_accounting';
if (is_file("../lib/langues.php"))
include("../lib/langues.php");
require('/etc/freeradius-web/config.php');
?>
<html>
<?php
require('../lib/functions.php');
require('../lib/sql/functions.php');
require('../lib/attrshow.php');
if (is_file("../lib/$config[general_lib_type]/user_info.php"))
include("../lib/$config[general_lib_type]/user_info.php");
 
if (is_file("../lib/sql/drivers/$config[sql_type]/functions.php"))
include_once("../lib/sql/drivers/$config[sql_type]/functions.php");
else{
echo <<<EOM
<title>Analyse pour $login</title>
<html>
<head>
<title>$l_title</title>
<meta http-equiv="Content-Type" content="text/html; charset=$config[general_charset]">
<link rel="stylesheet" href="style.css">
<link rel="stylesheet" href="/css/style.css">
</head>
<body>
<center>
48,14 → 53,15
 
 
echo <<<EOM
<html>
<head>
<title>Analyse pour $login</title>
<title>i$l_title</title>
<meta http-equiv="Content-Type" content="text/html; charset=$config[general_charset]">
<link rel="stylesheet" href="/css/style.css">
</head>
<body>
<TABLE width="100%" border="0" cellspacing="0" cellpadding="0">
<tr><th>Statistique des connexions</th></tr>
<tr><th>$l_frame_top</th></tr>
<tr bgcolor="#FFCC66"><td><img src="/images/pix.gif" width="1"
height="2"></td></tr>
</TABLE>
64,11 → 70,6
<TABLE width="100%" border=0 cellspacing=0 cellpadding=2>
<tr><td valign="middle" align="left">
<center>
<table border=0 width=550 cellpadding=0 cellspacing=0>
<tr valign=top>
<!--<td align=center><img src="images/title2.gif"></td>-->
</tr>
</table>
<table border=0 width=400 cellpadding=0 cellspacing=2>
EOM;
 
83,7 → 84,7
<td bgcolor="black" width=35%>
<table border=0 width=100% cellpadding=2 cellspacing=0>
<tr bgcolor="#907030" align=right valign=top><th>
<font color="white">Analyse pour $login</font>&nbsp;
<font color="white">$l_user : $login ($cn)</font>
</th></tr>
</table>
</td></tr>
90,18 → 91,17
<tr bgcolor="black" valign=top><td colspan=2>
<table border=0 width=100% cellpadding=12 cellspacing=0 bgcolor="#ffffd0" valign=top>
<tr><td>
Dates du <b>$prev_str</b> au <b>$now_str</b>
Dates : <b>$prev_str</b> to <b>$now_str</b>
EOM;
?>
 
<p>
<table border=1 bordercolordark=#ffffe0 bordercolorlight=#000000 width=100% cellpadding=2 cellspacing=0 bgcolor="#ffffe0" valign=top>
<tr bgcolor="#d0ddb0">
<th>#</th>
<td><b>#</b></td>
<?php
for($i=1;$i<=9;$i++){
if ($acct_attrs['ua']["$i"] != '')
echo "<th>" . $acct_attrs['ua']["$i"] . "</th>\n";
if (($acct_attrs['ua']["$i"] != '') && ($acct_attrs['ua']["$i"] != 'server') && ($acct_attrs['ua']["$i"] != 'callerid'))
echo "<td><b>" . $acct_attrs['ua']["$i"] . "</b></td>\n";
}
$sql_extra_query = '';
if ($config[sql_accounting_extra_query] != '')
119,7 → 119,6
" ORDER BY acctstarttime $order " . da_sql_limit($limit,2,$config). " ;");
if ($search){
while( $row = @da_sql_fetch_array($search,$config) ){
$tr_color='white';
$num++;
$acct_type = "$row[framedprotocol]/$row[nasporttype]";
if ($acct_type == '')
158,12 → 157,11
$acct_terminate_cause = '-';
if (ereg('Login-Incorrect',$acct_terminate_cause) ||
ereg('Multiple-Logins', $acct_terminate_cause) || ereg('Invalid-User',$acct_terminate_cause))
$tr_color='#ffe8e0';
$acct_callerid = "$row[callingstationid]";
if ($acct_callerid == '')
$acct_callerid = '-';
echo <<<EOM
<tr align=center bgcolor="$tr_color">
<tr align=center>
<td>$num</td>
EOM;
if ($acct_attrs[ua][1] != '') echo "<td>$acct_type</td>\n";
172,9 → 170,9
if ($acct_attrs[ua][4] != '') echo "<td>$acct_ip</td>\n";
if ($acct_attrs[ua][5] != '') echo "<td>$acct_upload</td>\n";
if ($acct_attrs[ua][6] != '') echo "<td>$acct_download</td>\n";
if ($acct_attrs[ua][7] != '') echo "<td>$acct_server</td>\n";
// if ($acct_attrs[ua][7] != '') echo "<td>$acct_server</td>\n";
if ($acct_attrs[ua][8] != '') echo "<td>$acct_terminate_cause</td>\n";
if ($acct_attrs[ua][9] != '') echo "<td>$acct_callerid</td>\n";
// if ($acct_attrs[ua][9] != '') echo "<td>$acct_callerid</td>\n";
echo "</tr>\n";
}
$acct_sessiontime_sum = time2str($acct_sessiontime_sum);
192,16 → 190,16
if ($acct_attrs[ua][2] == '')
$colspan--;
echo <<<EOM
<tr bgcolor="lightyellow">
<td colspan=$colspan align="right">Total pages</td>
<tr bgcolor="lightyellow" align="center">
<td colspan=$colspan><b>Total</b></td>
EOM;
if ($acct_attrs[ua][3] != '') echo "<td align=\"center\"><b>$acct_sessiontime_sum</td>\n";
if ($acct_attrs[ua][3] != '') echo "<td><b>$acct_sessiontime_sum</td>\n";
if ($acct_attrs[ua][4] != '') echo "<td>&nbsp;</td>\n";
if ($acct_attrs[ua][5] != '') echo "<td align=\"right\" nowrap><b>$acct_upload_sum</td>\n";
if ($acct_attrs[ua][6] != '') echo "<td align=\"right\" nowrap><b>$acct_download_sum</td>\n";
if ($acct_attrs[ua][7] != '') echo "<td>&nbsp;</td>\n";
if ($acct_attrs[ua][5] != '') echo "<td><b>$acct_upload_sum</td>\n";
if ($acct_attrs[ua][6] != '') echo "<td><b>$acct_download_sum</td>\n";
// if ($acct_attrs[ua][7] != '') echo "<td>&nbsp;</td>\n";
if ($acct_attrs[ua][8] != '') echo "<td>&nbsp;</td>\n";
if ($acct_attrs[ua][9] != '') echo "<td>&nbsp;</td>\n";
// if ($acct_attrs[ua][9] != '') echo "<td>&nbsp;</td>\n";
?>
</tr>
</table>
213,7 → 211,7
<tr><td colspan=6></td>
</tr>
<tr valign="bottom">
<td><small><b>Utilisateur</td><td><small><b>d&eacute;but date</td><td><small><b>fin date</td><td><small><b>nbr./page</td><td><b>class&eacute; le</td>
<td><small><b><?php echo "$l_user";?></td><td><small><b>from</td><td><small><b>to</td><td><small><b>nbr./page</td><td><b>order</td>
<tr valign="middle"><td>
<?php
echo <<<EOM
231,8 → 229,8
</select>
</td>
<td><select name="order">
<option $selected[asc] value="asc">plus ancien en premier
<option $selected[desc] value="desc">plus r&eacute;cent en premier
<option $selected[asc] value="asc">older first
<option $selected[desc] value="desc">recent first
</select>
</td>
EOM;
/web/acc/manager/htdocs/user_info.php
1,4 → 1,8
<?php
//gestion de la langue
$origine='user_info';
if (is_file("../lib/langues.php"))
include("../lib/langues.php");
require('/etc/freeradius-web/config.php');
?>
 
5,12 → 9,12
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=<?php echo $config[general_charset]?>">
<title>Page d'information personnelle</title>
<title><?php echo "$l_title";?></title>
<link rel="stylesheet" href="/css/style.css">
</head>
<body>
<TABLE width="100%" border="0" cellspacing="0" cellpadding="0">
<tr><th>Gestion des usagers</th></tr>
<tr><th><?php echo "$l_frame_top";?></th></tr>
<tr bgcolor="#FFCC66"><td><img src="/images/pix.gif" width="1"
height="2"></td></tr>
</TABLE>
19,12 → 23,6
<TABLE width="100%" border=0 cellspacing=0 cellpadding=2>
<tr><td valign="middle" align="left">
<center>
<table border=0 width=550 cellpadding=0 cellspacing=0>
<tr valign=top>
<!--<td align=center><img src="images/title2.gif"></td>-->
</tr>
</table>
 
<table border=0 width=400 cellpadding=0 cellspacing=2>
<?php
include("../html/user_toolbar.html.php");
50,7 → 48,7
<td bgcolor="black" width=200>
<table border=0 width=100% cellpadding=2 cellspacing=0>
<tr bgcolor="#907030" align=right valign=top><th>
<font color="white">Page d'information personnelle de <?php echo "$login ($cn)"?></font>&nbsp;
<font color="white"><?php echo "$l_user : $login ($cn)"?></font>&nbsp;
</th></tr>
</table>
</td></tr>
66,7 → 64,7
echo <<<EOM
<tr>
<td align=right bgcolor="#d0ddb0">
Nom complet (NOM Pr&eacute;nom)
$l_name
</td><td>
<input type=text name="Fcn" value="$cn" size=35>
</td>
73,7 → 71,7
</tr>
<tr>
<td align=right bgcolor="#d0ddb0">
Mail
$l_email
</td><td>
<input type=text name="Fmail" value="$mail" size=35>
</td>
87,7 → 85,7
</tr>
<tr>
<td align=right bgcolor="#d0ddb0">
T&eacute;l&eacute;phone personnel
$l_homephone
</td><td>
<input type=text name="Fhomephone" value="$homephone" size=35>
</td>
94,7 → 92,7
</tr>
<tr>
<td align=right bgcolor="#d0ddb0">
T&eacute;l&eacute;phone bureau
$l_telephonenumber
</td><td>
<input type=text name="Ftelephonenumber" value="$telephonenumber" size=35>
</td>
101,7 → 99,7
</tr>
<tr>
<td align=right bgcolor="#d0ddb0">
T&eacute;l&eacute;phone mobile
$l_mobile
</td><td>
<input type=text name="Fmobile" value="$mobile" size=35>
</td>
110,7 → 108,7
?>
</table>
<br>
<input type=submit class=button value="Modifier" OnClick="this.form.change.value=1">
<input type=submit class=button value="<?php echo "$l_change";?>" OnClick="this.form.change.value=1">
</form>
</td></tr>
</table>
/web/acc/manager/lib/langues.php
27,6 → 27,13
$l_upload = "Données envoyées";
$l_average = "moyenne";
$l_already_exist = "existe d&eacute;j&agrave;";
$l_search_filter = "Filtre de recherche";
$l_search_criteria = "Critère de recherche";
$l_search = "Lancer la recherche";
$l_no_user_found = "Aucun usager trouvé";
$l_special_attribute = "Attribut particulier";
$l_attribute = "Attribut";
$l_value = "Valeur<br>(ivide = tous)";
$l_user = "Usager";
$l_users_managment = "Gestion des usagers";
$l_groups_managment = "Gestion des groupes";
39,8 → 46,10
$l_created_groups = "Groupe(s) déjà créé(s)";
$l_group_name = "Nom du groupe";
$l_group_members = "Membres du groupe :<br>(séparé par un espace ou un 'retour chariot')";
$l_group_member = "Membre du groupe";
$l_group_empty = "La liste des groupes est vide";
$l_status ="&Eacute;TAT";
$l_main_group = "Le groupe principal est surligné";
$l_statut ="&Eacute;TAT";
$l_personal_info ="INFORMATIONS PERSONNELLES";
$l_connections ="CONNEXIONS";
$l_open_sessions ="SESSIONS OUVERTES";
59,6 → 68,9
$l_remain_time ="Temps de connexion restant";
$l_name = "Nom et pr&eacute;nom";
$l_email = "Adresse de couriel";
$l_homephone = "Numéro de téléphone privé";
$l_telephonenumber = "Numéro de téléphone de bureau";
$l_mobile = "Numéro de téléphone portable";
$l_lang_ticket = "Langue du ticket";
$l_simultaneous_use = "Nombre de session simultanée";
$l_max_all_session = "Durée maximale de connexion<br>(en secondes)";
76,9 → 88,12
$l_click_for_help = "Cliquez pour afficher l'aide sur cet attribut";
$l_show_profile = "Afficher le profil";
$l_create = "Créer";
$l_change = "Modifier";
switch ($origine){
//Administration
case 'user_new':
case 'user_accounting':
case 'user_info':
case 'user_edit':
$l_title = "Cr&eacute;ation d'un usager";
$l_frame_top = "Gestion des usagers";
89,6 → 104,11
$l_frame_top = "Gestion des groupes";
$l_frame = "Gestion des groupes";
break;
case 'find_user':
$l_title = "&Eacute;diter un usager";
$l_frame_top = "Gestion des usagers";
$l_frame = "&Eacute;diter un usager";
break;
}
break;
default :
108,6 → 128,13
$l_user = "User";
$l_users_managment = "Users managment";
$l_groups_managment = "Groups managment";
$l_search_filter = "Search filter";
$l_search_criteria = "Search criteria";
$l_search = "Start search";
$l_no_user_found = "No user found";
$l_special_attribute = "Special attribute";
$l_attribute = "Attribute";
$l_value = "Value<br>(empty = all)";
$l_login = "Login";
$l_password = "Password";
$l_new_password = "New password";
117,7 → 144,9
$l_created_groups = "Already created group(s)";
$l_group_name = "Group name";
$l_group_members = "Members of group :<br>(separate by a 'space' or a 'carriage return')";
$l_group_member = "Member of group";
$l_group_empty = "The group list is empty";
$l_main_group = "The main group is highlighted";
$l_status ="STATUS";
$l_personal_info ="PERSONAL INFORMATIONS";
$l_connections ="CONNECTIONS";
137,6 → 166,9
$l_remain_time ="Remain connection time";
$l_name = "Surname and name";
$l_email = "Email Address";
$l_homephone = "Personal phone number";
$l_telephonenumber = "Office phone number";
$l_mobile = "Mobile phone number";
$l_lang_ticket = "Voucher language";
$l_simultaneous_use = "Number of concurent login";
$l_max_all_session = "Maximum time of connection<br>(in seconds)";
154,19 → 186,27
$l_click_for_help = "Click to show help about this attribute";
$l_show_profile = "Show profile";
$l_create = "Create";
$l_change = "Change";
switch ($origine){
//Administration
case 'user_new':
case 'user_edit':
case 'user_accounting':
case 'user_info':
$l_title = "Create a user";
$l_frame_top = "Users admin";
$l_frame_top = "Users managment";
$l_frame = "Create a user";
break;
case 'group_new':
$l_title = "Create a group";
$l_frame_top = "Groups admin";
$l_frame = "Groups admin";
$l_frame_top = "Groups managment";
$l_frame = "Create a group";
break;
case 'find_user':
$l_title = "Edit a user";
$l_frame_top = "Users managment";
$l_frame = "Edit a user";
break;
}
break;
}