本文整理匯總了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);
}
}
}
}