本文整理汇总了PHP中SessionUtils::setDashboardId方法的典型用法代码示例。如果您正苦于以下问题:PHP SessionUtils::setDashboardId方法的具体用法?PHP SessionUtils::setDashboardId怎么用?PHP SessionUtils::setDashboardId使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类SessionUtils
的用法示例。
在下文中一共展示了SessionUtils::setDashboardId方法的6个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: index
public function index($userId = NULL, $responseDTO = NULL)
{
try {
$this->getNotifications();
$view = $this->getView();
$model = $this->getModel();
SessionUtils::setDashboardId($userId);
$this->getNotifications();
$view->uploadJS();
if (!is_null(SessionUtils::getError())) {
$view->setResponse(SessionUtils::getError());
SessionUtils::setError(NULL);
}
$userList = $model->getUserList();
$view->setArg('userList', $userList);
SessionUtils::setLastPageVisited(USERLIST_CONTROLLER);
SessionUtils::setNavigationSelectedItem(6);
$view->loadPage();
} catch (UserNotAuthenticatedExceptionDTO $authExp) {
SessionUtils::logout();
header("Location:" . URL . LOGIN_CONTROLLER);
} catch (PDOException $pdoe) {
throw $pdoe;
} catch (Exception $e) {
throw $e;
}
}
示例2: index
function index()
{
try {
$this->getNotifications();
$userLogged = SessionUtils::getUserLogged();
$view = $this->getView();
$model = $this->getModel();
SessionUtils::setDashboardId($userLogged->getUserId());
$view->uploadJS();
if (!is_null(SessionUtils::getError())) {
$view->setResponse(SessionUtils::getError());
SessionUtils::setError(NULL);
}
SessionUtils::setLastPageVisited(HOME_CONTROLLER);
$homePostList = $model->getHomePostsListModel($userLogged->getUserId());
$view->setArg('homePostList', $homePostList);
if (!is_null($homePostList)) {
for ($i = 0; $i < sizeof($homePostList); $i++) {
$index = 'post' . $i;
$postId = $homePostList[$index]->getPostId();
$commentPostList = $model->getCommentPostList($postId);
$commentListIndex = 'commentPostList' . $postId;
$view->setArg($commentListIndex, $commentPostList);
}
}
$userInfo = $model->getUserInfoModel(SessionUtils::getDashboardId());
$view->setArg('userInfo', $userInfo);
$view->setArg(LAST_NAV_ITEM_SELECTED, 0);
$view->loadPage();
} catch (PDOException $pdoe) {
throw $pdoe;
} catch (UserNotAuthenticatedExceptionDTO $authExp) {
SessionUtils::logout();
header("Location:" . URL . LOGIN_CONTROLLER);
} catch (Exception $e) {
throw $e;
}
}
示例3: init
private function init()
{
$urlArray = $this->getUrlArray();
if (is_null($urlArray)) {
$userLogged = SessionUtils::getUserLogged();
if (!is_null($userLogged)) {
//
header('Location: ' . URL . SessionUtils::getLastPageVisited());
exit;
} else {
if (isset($_COOKIE[SHAREATRIPCOOKIE])) {
header('Location: ' . URL . LOGIN_CONTROLLER . 'autoLogin');
exit;
} else {
header('Location: ' . URL . LOGIN_CONTROLLER);
exit;
}
}
} else {
if ($urlArray[1] === 'index') {
if ($urlArray[0] === 'Profile') {
if (!is_null($urlArray[5])) {
SessionUtils::setPost($urlArray[2]);
SessionUtils::setAuthorId($urlArray[3]);
SessionUtils::setDashboardId($urlArray[4]);
SessionUtils::setComment($urlArray[5]);
} else {
if (!is_null($urlArray[4])) {
SessionUtils::setPost($urlArray[2]);
SessionUtils::setAuthorId($urlArray[3]);
SessionUtils::setDashboardId($urlArray[4]);
} else {
if (!is_null($urlArray[2])) {
SessionUtils::setPost(NULL);
SessionUtils::setAuthorId(NULL);
SessionUtils::setDashboardId($urlArray[2]);
}
}
}
header("Location: " . URL . PROFILE_CONTROLLER);
exit;
} else {
if ($urlArray[0] === 'Photo') {
if (!is_null($urlArray[4])) {
SessionUtils::setAlbumId($urlArray[2]);
SessionUtils::setPhotoId($urlArray[3]);
SessionUtils::setDashboardId($urlArray[4]);
} else {
if (!is_null($urlArray[3])) {
SessionUtils::setAlbumId($urlArray[2]);
SessionUtils::setDashboardId($urlArray[3]);
} else {
if (!is_null($urlArray[2])) {
SessionUtils::setAlbumId($urlArray[2]);
}
}
}
header("Location: " . URL . PHOTO_CONTROLLER);
exit;
} else {
if ($urlArray[0] === 'Album') {
if (!is_null($urlArray[3])) {
SessionUtils::setAlbumId($urlArray[2]);
SessionUtils::setDashboardId($urlArray[3]);
}
header("Location: " . URL . ALBUM_CONTROLLER);
exit;
} else {
if ($urlArray[0] === 'ProfileSettings') {
SessionUtils::setDashboardId($urlArray[2]);
header("Location: " . URL . PROFILE_SETTINGS_CONTROLLER);
exit;
}
}
}
}
}
$url = new UrlDTO($urlArray);
$this->loadController($url->getController());
$this->callControllerMethod($url);
}
}
示例4: addFriend
public function addFriend($friendId)
{
try {
$model = $this->getModel();
$newFriend = $model->addFriendModel($friendId);
if (isset($_POST[JAVASCRIPT_ON]) && $_POST[JAVASCRIPT_ON] === "Y") {
echo json_encode($newFriend->jsonSerialize());
} else {
SessionUtils::setDashboardId($friendId);
header("Location: " . URL . PROFILE_CONTROLLER);
exit;
}
} catch (PDOException $pdoe) {
throw $pdoe;
} catch (UserNotAuthenticatedExceptionDTO $authExp) {
SessionUtils::logout();
if (isset($_POST[JAVASCRIPT_ON]) && $_POST[JAVASCRIPT_ON] === "Y") {
echo json_encode($authExp->jsonSerialize());
} else {
header("Location:" . URL . LOGIN_CONTROLLER);
}
} catch (Exception $e) {
throw $e;
}
}
示例5: prepareLoginSession
public static function prepareLoginSession($userDTO)
{
$userFriendsList = array();
SessionUtils::setUserLogged($userDTO);
SessionUtils::setDashboardId($userDTO->getUserId());
SessionUtils::setNavigationSelectedItem(0);
$friendsDAO = new FriendsDAO();
$userFriends = $friendsDAO->getFriendsList($userDTO->getUserId());
if (!is_null($userFriends)) {
foreach ($userFriends as $key => $friendDTO) {
$userFriendsList[$friendDTO->getFriendId()->getUserId()] = $friendDTO;
}
}
SessionUtils::setUserLoggedFriendsList($userFriendsList);
}
示例6: prepareAndDoLogin
function prepareAndDoLogin($userLoggedDTO, $rememberMe)
{
$userDAO = new UserDAO();
$userLoggedDTO = SessionUtils::clearSensibleDataForSession($userLoggedDTO);
SessionUtils::setUserLogged($userLoggedDTO);
SessionUtils::setDashboardId($userLoggedDTO->getUserId());
SessionUtils::setNavigationSelectedItem(0);
SessionUtils::generateToken();
$userDAO->saveUserToken(SessionUtils::getSessionToken());
if ($rememberMe) {
$userDAO = new UserDAO();
$setCookieBoolValue = setcookie(SHAREATRIPCOOKIE, SessionUtils::getSessionToken(), time() + 60 * 60 * 24 * 300, "/", NULL, NULL, TRUE);
SessionUtils::setRememberMe(true);
} else {
SessionUtils::setRememberMe(false);
}
$userFriendsList = array();
$friendsDAO = new FriendsDAO();
$userFriends = $friendsDAO->getFriendsList($userLoggedDTO->getUserId());
if (!is_null($userFriends)) {
foreach ($userFriends as $key => $friendDTO) {
$userFriendsList[$friendDTO->getFriendId()->getUserId()] = $friendDTO;
}
}
SessionUtils::setUserLoggedFriendsList($userFriendsList);
}