예제 #1
0
파일: users.php 프로젝트: pari/rand0m
					if(a){
						 My_JsLibrary.showfbmsg("Room Access Updated !", 'green', 4);
					}else{
						My_JsLibrary.showErrMsg();
					}
				}
			});
		});
	};

</script>


<?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">
예제 #2
0
파일: dmsg.php 프로젝트: pari/rand0m
if (!$_SESSION["uname"]) {
    header('Location: logout.php');
    exit;
}
?>
<script>
	var localajaxinit = function(){
		
		
	};	
</script>
	

<?php 
$TMP_MU = new ManageUsers();
$ALLUSERS = $TMP_MU->getAllUserIdsInDomain();
if (get_GET_var('id')) {
    $id = get_GET_var('id');
    $to_user_Id = base64_decode($id);
} else {
    echo "Invalid User.";
    exit;
}
$res = get_GET_var('re');
?>
<html><head>
<meta http-equiv="content-type" content="text/html; charset=UTF-8">
<title>Direct Message</title>
<meta charset="UTF-8">
<script type="text/javascript" src="js/alljs.php?t=1"></script>
<link rel="stylesheet" href="send.css" type="text/css">