本文整理汇总了PHP中SessionUtils::getUserLoggedFriendsList方法的典型用法代码示例。如果您正苦于以下问题:PHP SessionUtils::getUserLoggedFriendsList方法的具体用法?PHP SessionUtils::getUserLoggedFriendsList怎么用?PHP SessionUtils::getUserLoggedFriendsList使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类SessionUtils
的用法示例。
在下文中一共展示了SessionUtils::getUserLoggedFriendsList方法的3个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: getUserFriendsList
function getUserFriendsList($userProfile)
{
try {
$userLogged = SessionUtils::getUserLogged();
$friendsDAO = new FriendsDAO();
$friendsList = $friendsDAO->getFriendsList($userProfile);
$userLoggedFriendList = SessionUtils::getUserLoggedFriendsList();
if (!is_null($userLoggedFriendList)) {
$copyFriendsList = $friendsList;
for ($i = 0; $i < sizeof($copyFriendsList); $i++) {
$index = "friends" . $i;
$friendDTO = $copyFriendsList[$index];
if (!array_key_exists($friendDTO->getFriendId()->getUserId(), $userLoggedFriendList)) {
unset($friendsList[$index]);
$friendDTO->setFriendsSince(NULL);
$friendsList[$index] = $friendDTO;
}
if ($friendDTO->getFriendId()->getUserId() == $userLogged->getUserId()) {
unset($friendsList[$index]);
}
}
}
return $friendsList;
} catch (PDOException $pdoe) {
throw $pdoe;
} catch (UserNotAuthenticatedExceptionDTO $authExp) {
throw $authExp;
} catch (Exception $e) {
throw $e;
}
}
示例2: notifyAction
public static function notifyAction($object, $context)
{
$notificationDAO = new NotificationDAO();
$timestamp = date(DATE_FORMAT);
$userLoggedFriendList = SessionUtils::getUserLoggedFriendsList();
if ($context === REGISTRATION_FORM) {
$user = explode(SEPARATOR, $object);
$message = DataModelUtils::getNotificationMessage($object, $context);
$notificationDTO = new NotifyDTO(NULL, $user[0], 1, $message, 0, $timestamp, $context, $user[0] . SEPARATOR . $user[1]);
$notificationDAO->saveNewNotification($notificationDTO);
} else {
if ($context === ADD_FRIEND_FORM) {
$userLogged = SessionUtils::getUserLogged();
$friend = explode(SEPARATOR, $object);
$message = DataModelUtils::getNotificationMessage($object, $context);
$notificationDTO = new NotifyDTO(NULL, $userLogged->getUserId(), $friend[0], $message, 0, $timestamp, $context, $userLogged->getUserId() . SEPARATOR . $userLogged->getUserName() . SEPARATOR . $friend[0] . SEPARATOR . $friend[1]);
$notificationDAO->saveNewNotification($notificationDTO);
} else {
if ($context === CONFIRM_FRIENDSHIP_FORM) {
$userLogged = SessionUtils::getUserLogged();
$friend = explode(SEPARATOR, $object);
$message = DataModelUtils::getNotificationMessage($object, $context, TOMYSELF);
$notificationDTO = new NotifyDTO(NULL, $userLogged->getUserId(), $userLogged->getUserId(), $message, 1, $timestamp, $context, $userLogged->getUserId() . SEPARATOR . $userLogged->getUserName() . SEPARATOR . $friend[0] . SEPARATOR . $friend[1]);
$result = $notificationDAO->saveNewNotification($notificationDTO);
$message = DataModelUtils::getNotificationMessage($object, $context, TOMINENEWFRIEND);
$notificationDTO = new NotifyDTO(NULL, $userLogged->getUserId(), $friend[0], $message, 0, $timestamp, $context, $userLogged->getUserId() . SEPARATOR . $userLogged->getUserName() . SEPARATOR . $friend[0] . SEPARATOR . $friend[1]);
$result = $notificationDAO->saveNewNotification($notificationDTO);
$userLoggedFriendList = SessionUtils::getUserLoggedFriendsList();
SessionUtils::prepareNotificationToFriends($object, $context, $userLoggedFriendList, $timestamp, TOMYFRIENDSLIST);
$friendsDAO = new FriendsDAO();
$myfriendFriendList = $friendsDAO->getNewFriendsFriendList($userLogged->getUserId(), $friend[0]);
SessionUtils::prepareNotificationToFriends($object, $context, $myfriendFriendList, $timestamp, TOMINENEWFRIENDFRIENDLIST);
$message = '<a href="' . URL . PROFILE_CONTROLLER . INDEX . $userLogged->getUserId() . '"><label>' . $userLogged->getUsername() . '</label></a> ha stretto amicizia con <a href="' . URL . PROFILE_CONTROLLER . INDEX . $friend[0] . '"><label>' . $friend[1] . '</label></a>';
$adminNotificationDTO = new NotifyDTO(NULL, $userLogged->getUserId(), 1, $message, 0, $timestamp, $context, $userLogged->getUserId() . SEPARATOR . $userLogged->getUserName() . SEPARATOR . $friend[0] . SEPARATOR . $friend[1]);
$notificationDAO->saveNewNotification($adminNotificationDTO);
} else {
$userLoggedFriendList = SessionUtils::getUserLoggedFriendsList();
SessionUtils::prepareNotificationToFriends($object, $context, $userLoggedFriendList, $timestamp);
}
}
}
}
示例3: userCanReadProfile
public static function userCanReadProfile()
{
$userProfile = SessionUtils::getDashboardId();
$userFriendsList = SessionUtils::getUserLoggedFriendsList();
return array_key_exists($userProfile, $userFriendsList);
}