예제 #1
0
파일: users.php 프로젝트: pari/rand0m
    echo $THIS_USER_PROFILE['emplFullName'];
    ?>
<br>
				<a href="mailto:<?php 
    echo $THIS_USER_PROFILE['emplEmail_id'];
    ?>
"><?php 
    echo $THIS_USER_PROFILE['emplEmail_id'];
    ?>
</a>
			</td>
			<td class="perms">
				<?php 
    foreach ($privilages as $this_privilege) {
        $checked_str = in_array($this_privilege, $THIS_USER_PRIVILEGES) ? " checked" : '';
        echo "\n\t\t\t\t\t\t<div class='remote_checkbox'>\n\t\t\t\t\t\t\t<input type='checkbox' class='chk_user_priv' value='{$this_privilege}' userid='{$this_userId}'  name='priv_{$this_userId}' id='priv_{$this_userId}' {$checked_str}>\n\t\t\t\t\t\t</div>\n\t\t\t\t\t\t<strong>" . $MU->get_Privilege_Name_By_Id($this_privilege) . "</strong><br/>\n\t\t\t\t\t";
    }
    ?>
			</td>
			<td class="access">
				<A href='#' class='a_user_cra' uid='<?php 
    echo $this_userId;
    ?>
' uname='<?php 
    echo base64_encode($THIS_USER_PROFILE['emplFullName']);
    ?>
'>Change rooms access</A>
			</td>
		</tr>
		<?php 
}