本文整理汇总了PHP中SessionUtils::prepareNotificationToFriends方法的典型用法代码示例。如果您正苦于以下问题:PHP SessionUtils::prepareNotificationToFriends方法的具体用法?PHP SessionUtils::prepareNotificationToFriends怎么用?PHP SessionUtils::prepareNotificationToFriends使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类SessionUtils
的用法示例。
在下文中一共展示了SessionUtils::prepareNotificationToFriends方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: 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);
}
}
}
}