Subversion Repositories ALCASAR

Rev

Rev 2875 | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log

Rev 2875 Rev 3254
Line 35... Line 35...
35
</html>
35
</html>
36
EOM;
36
EOM;
37
	exit();
37
	exit();
38
}
38
}
39
?>
39
?>
-
 
40
<html>
40
<head>
41
<head>
41
<title>Find group</title>
42
<title>Find group</title>
42
<meta http-equiv="Content-Type" content="text/html; charset=<?php echo $config['general_charset']?>">
43
<meta http-equiv="Content-Type" content="text/html; charset=<?php echo $config['general_charset']?>">
43
<link rel="stylesheet" href="/css/acc.css">
44
<link rel="stylesheet" href="/css/acc.css">
-
 
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>
44
</head>
58
</head>
45
<body>
59
<body>
46
<TABLE width="100%" border="0" cellspacing="0" cellpadding="0">
60
<table width="100%" border="0" cellspacing="0" cellpadding="0">
47
	<tr><th><?php echo "$l_groups_managment"; ?></th></tr>
61
	<tr><th><?php echo "$l_groups_managment"; ?></th></tr>
48
	<tr bgcolor="#FFCC66"><td><img src="/images/pix.gif" width="1"
62
	<tr bgcolor="#FFCC66"><td><img src="/images/pix.gif" width="1"
49
height="2"></td></tr>
63
height="2"></td></tr>
50
</TABLE>
64
</table>
51
<TABLE width="100%" border=0 cellspacing=0 cellpadding=1>
65
<table width="100%" border=0 cellspacing=0 cellpadding=1>
52
	<tr bgcolor="#666666"><td>
66
	<tr bgcolor="#666666"><td>
53
	<TABLE width="100%" border=0 cellspacing=0 cellpadding=2>
67
	<table width="100%" border=0 cellspacing=0 cellpadding=2>
54
		<tr><td valign="middle" align="left">
68
		<tr><td valign="middle" align="left">
55
<center>
69
<center>
56
<table border=0 width=550 cellpadding=0 cellspacing=0>
-
 
57
<tr valign=top>
-
 
58
</tr>
-
 
59
</table>
-
 
60
<table border=0 width=540 cellpadding=1 cellspacing=1>
70
<table border=0 width=540 cellpadding=1 cellspacing=1>
61
<tr valign=top>
71
<tr valign=top>
62
<td width=55%></td>
72
<td width=55%></td>
63
<td bgcolor="black" width=45%>
73
<td bgcolor="black" width=45%>
64
	<table border=0 width=100% cellpadding=2 cellspacing=0>
74
	<table border=0 width=100% cellpadding=2 cellspacing=0>
Line 73... Line 83...
73
<?php
83
<?php
74
unset($login);
84
unset($login);
75
$num = 0;
85
$num = 0;
76
include_once("../lib/$config[general_lib_type]/group_info.php");
86
include_once("../lib/$config[general_lib_type]/group_info.php");
77
if (isset($existing_groups)){
87
if (isset($existing_groups)){
78
	echo "<table border=1 bordercolordark=#ffffe0 bordercolorlight=#000000 width=100% cellpadding=2 cellspacing=0 bgcolor=\"#ffffe0\" valign=top>";
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>";
79
	echo "<tr bgcolor=\"#d0ddb0\">";
90
	echo "<tr bgcolor=\"#686464\">";
80
	echo "<th>#</th><th>$l_group </th><th>$l_nb_users</th></tr>";
91
	echo "<th>#</th><th>$l_group </th><th>$l_nb_users</th></tr>";
-
 
92
	echo "</thead>";
-
 
93
	echo "<tbody>";
81
	foreach ($existing_groups as $group => $num_members){
94
	foreach ($existing_groups as $group => $num_members){
82
		$num++;
95
		$num++;
83
		$Group = urlencode($group);
96
		$Group = urlencode($group);
84
		echo <<<EOM
97
		echo <<<EOM
85
		<tr align=center>
98
		<tr align=center>
Line 87... Line 100...
87
			<td><a href="group_admin.php?login=$Group" title="Editer le groupe $group">$group</a></td>
100
			<td><a href="group_admin.php?login=$Group" title="Editer le groupe $group">$group</a></td>
88
			<td>$num_members</td>
101
			<td>$num_members</td>
89
		</tr>
102
		</tr>
90
EOM;
103
EOM;
91
	}
104
	}
-
 
105
	echo "</tbody>";
92
}
106
}
93
else
107
else
94
	echo "<b>$l_group_empty</b>\n";
108
	echo "<b>$l_group_empty</b>\n";
95
?>
109
?>
96
	</table>
110
	</table>
97
</table>
111
</table>
-
 
112
</td></tr>
-
 
113
</table>
98
</tr>
114
</tr>
99
</table>
115
</table>
100
</TD></TR>
-
 
101
</TABLE>
-
 
102
</td></tr>
116
</td></tr>
103
</TABLE>
117
</table>
104
</body>
118
</body>
105
</html>
119
</html>