當前位置: 首頁>>代碼示例>>PHP>>正文


PHP SessionUtils::setDashboardId方法代碼示例

本文整理匯總了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;
     }
 }
開發者ID:sbadi,項目名稱:shareatrip,代碼行數:27,代碼來源:UserList.php

示例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;
     }
 }
開發者ID:sbadi,項目名稱:shareatrip,代碼行數:38,代碼來源:Home.php

示例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);
     }
 }
開發者ID:sbadi,項目名稱:shareatrip,代碼行數:82,代碼來源:CoreApp.php

示例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;
     }
 }
開發者ID:sbadi,項目名稱:shareatrip,代碼行數:25,代碼來源:Profile.php

示例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);
 }
開發者ID:sbadi,項目名稱:shareatrip,代碼行數:15,代碼來源:SessionUtils.php

示例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);
 }
開發者ID:sbadi,項目名稱:shareatrip,代碼行數:26,代碼來源:Login_model.php


注:本文中的SessionUtils::setDashboardId方法示例由純淨天空整理自Github/MSDocs等開源代碼及文檔管理平台,相關代碼片段篩選自各路編程大神貢獻的開源項目,源碼版權歸原作者所有,傳播和使用請參考對應項目的License;未經允許,請勿轉載。