Gazelle/sections/tools/data/special_users.php
2012-03-28 08:00:20 +00:00

31 lines
697 B
PHP

<?
if(!check_perms('admin_manage_permissions')) { error(403); }
show_header('Special Users List');
?>
<div class="thin">
<?
$DB->query("SELECT m.ID FROM users_main AS m
WHERE m.CustomPermissions != ''
AND m.CustomPermissions != 'a:0:{}'");
if($DB->record_count()) {
?>
<table width="100%">
<tr class="colhead">
<td>User</td>
<td>Access</td>
</tr>
<?
while(list($UserID)=$DB->next_record()) {
?>
<tr>
<td><?=format_username($UserID, true, true, true, true)?></td>
<td><a href="user.php?action=permissions&amp;userid=<?=$UserID?>">Manage</a></td>
</tr>
<? } ?>
</table>
<? } else { ?>
<h2 align="center">There are no special users.</h2>
<? } ?>
</div>
<? show_footer(); ?>