Beispiel #1
0
<?php 
$MU = new ManageUsers();
$users = $MU->getAllUserIdsInDomain();
$privilages = $MU->get_All_Privileges_in_App();
?>
<table align=center class="manageLRS" cellpadding=5 cellspacing=5 width="500" style='margin-top:30px;'>
<tbody>
<div id="member_list">
	<table class="members">
	<tbody>
	<?php 
foreach ($users as $this_userId) {
    $MU->userId = $this_userId;
    $THIS_USER_PROFILE = $MU->getUserProfile();
    $THIS_USER_PRIVILEGES = $MU->get_Privileges();
    ?>
		<tr>
			<td class="avatar">
				<img src='files/users/thumbs/<?php 
    echo USERID_TO_USERPIC($this_userId);
    ?>
'>
			</td>
			<td class="name">
				<?php 
    echo $THIS_USER_PROFILE['emplFullName'];
    ?>
<br>
				<a href="mailto:<?php 
    echo $THIS_USER_PROFILE['emplEmail_id'];