Subversion Repositories ALCASAR

Rev

Rev 2875 | Details | Compare with Previous | Last modification | View Log

Rev Author Line No. Line
324 richard 1
<?php
911 richard 2
//gestion de la langue
3
if (is_file("../lib/langues.php"))
4
	include("../lib/langues.php");
324 richard 5
require('/etc/freeradius-web/config.php');
6
 
7
if (is_file("../lib/sql/drivers/$config[sql_type]/functions.php"))
8
	include_once("../lib/sql/drivers/$config[sql_type]/functions.php");
9
else{
10
	echo <<<EOM
911 richard 11
<html>
12
<title>Find group</title>
1805 clement.si 13
<meta http-equiv="Content-Type" content="text/html" charset="$config[general_charset]">
2817 rexy 14
<link rel="stylesheet" href="/css/acc.css">
324 richard 15
</head>
16
<body>
17
<center>
18
<b>Could not include SQL library functions. Aborting</b>
19
</body>
20
</html>
21
EOM;
22
	exit();
23
}
1805 clement.si 24
if ($config['general_lib_type'] != 'sql'){
324 richard 25
	echo <<<EOM
911 richard 26
<html>
27
<title>find group</title>
1860 raphael.pi 28
<meta http-equiv="Content-Type" content="text/html" charset="$config[general_charset]">
2875 rexy 29
<link rel="stylesheet" href="/css/acc.css">
324 richard 30
</head>
31
<body>
32
<center>
33
<b>This page is only available if you are using sql as general library type</b>
34
</body>
35
</html>
36
EOM;
37
	exit();
38
}
39
?>
3254 rexy 40
<html>
324 richard 41
<head>
911 richard 42
<title>Find group</title>
1861 raphael.pi 43
<meta http-equiv="Content-Type" content="text/html; charset=<?php echo $config['general_charset']?>">
2817 rexy 44
<link rel="stylesheet" href="/css/acc.css">
3254 rexy 45
<link rel="stylesheet" href="/css/jquery.dataTables.css">
46
<script src="/js/jquery-3.6.min.js"></script>
47
<script src="/js/jquery.dataTables.js"></script>
48
<script type="text/javascript">
49
	$(document).ready(function() {
50
		$('#datatable_display').DataTable();
51
	});
52
	$.extend(true, $.fn.dataTable.defaults, {
53
       		language: {
54
			url: '/js/jquery.dataTables.<?= $Language ?>.json'
55
       		},
56
	});
57
</script>
324 richard 58
</head>
59
<body>
3254 rexy 60
<table width="100%" border="0" cellspacing="0" cellpadding="0">
911 richard 61
	<tr><th><?php echo "$l_groups_managment"; ?></th></tr>
1805 clement.si 62
	<tr bgcolor="#FFCC66"><td><img src="/images/pix.gif" width="1"
324 richard 63
height="2"></td></tr>
3254 rexy 64
</table>
65
<table width="100%" border=0 cellspacing=0 cellpadding=1>
324 richard 66
	<tr bgcolor="#666666"><td>
3254 rexy 67
	<table width="100%" border=0 cellspacing=0 cellpadding=2>
324 richard 68
		<tr><td valign="middle" align="left">
69
<center>
70
<table border=0 width=540 cellpadding=1 cellspacing=1>
71
<tr valign=top>
72
<td width=55%></td>
73
<td bgcolor="black" width=45%>
74
	<table border=0 width=100% cellpadding=2 cellspacing=0>
75
	<tr bgcolor="#907030" align=right valign=top><th>
911 richard 76
	<font color="white"><?php echo "$l_group_select"; ?></font>
324 richard 77
	</th></tr>
78
	</table>
79
</td></tr>
80
<tr bgcolor="black" valign=top><td colspan=2>
81
	<table border=0 width=100% cellpadding=12 cellspacing=0 bgcolor="#ffffd0" valign=top>
82
	<tr><td>
83
<?php
84
unset($login);
85
$num = 0;
86
include_once("../lib/$config[general_lib_type]/group_info.php");
87
if (isset($existing_groups)){
3254 rexy 88
	echo "<table border=1 id=\"datatable_display\" class=\"display\" bordercolordark=#ffffe0 bordercolorlight=#000000 width=100% cellpadding=2 cellspacing=0 bgcolor=\"#ffffe0\" valign=top>";
89
	echo "<thead>";
90
	echo "<tr bgcolor=\"#686464\">";
324 richard 91
	echo "<th>#</th><th>$l_group </th><th>$l_nb_users</th></tr>";
3254 rexy 92
	echo "</thead>";
93
	echo "<tbody>";
324 richard 94
	foreach ($existing_groups as $group => $num_members){
95
		$num++;
96
		$Group = urlencode($group);
97
		echo <<<EOM
98
		<tr align=center>
99
			<td>$num</td>
100
			<td><a href="group_admin.php?login=$Group" title="Editer le groupe $group">$group</a></td>
101
			<td>$num_members</td>
102
		</tr>
103
EOM;
104
	}
3254 rexy 105
	echo "</tbody>";
324 richard 106
}
107
else
912 richard 108
	echo "<b>$l_group_empty</b>\n";
324 richard 109
?>
110
	</table>
111
</table>
3254 rexy 112
</td></tr>
113
</table>
324 richard 114
</tr>
115
</table>
116
</td></tr>
3254 rexy 117
</table>
324 richard 118
</body>
119
</html>