本文整理汇总了PHP中UserSession::isValid方法的典型用法代码示例。如果您正苦于以下问题:PHP UserSession::isValid方法的具体用法?PHP UserSession::isValid怎么用?PHP UserSession::isValid使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类UserSession
的用法示例。
在下文中一共展示了UserSession::isValid方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: UserSession
* in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied
* warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public
* License for more details.You should have received a copy of the GNU General Public License
* along with Mindspace. If not, see <http://www.gnu.org/licenses/>.
*
* credits
* ----------
* Idea by: Garrett French | http://ontolo.com | garrett <dot> french [at] ontolo (dot) com
* Code by: Alias Eldhose| http://ceegees.in | eldhose (at) ceegees [dot] in
* Initiated by: Dennis Hettema | http://hette.ma | hettema (at) gmail [dot] com
*/
include_once 'app/etc/Config.php';
include_once 'app/core/functions.php';
$gSession = new UserSession();
//Invalid session -> Die !!!
if (!$gSession->isValid()) {
$res = new RESTResult(false, "Invalid Login Credentials");
echo json_encode($res);
die;
}
include_once 'app/mysql/MYSQLHelper.php';
$op = isset($_GET['op']) ? $_GET['op'] : "Invalid";
//Checks whether the operation is supported to the source of truth.
if (!RESTModule::isOperationSupported($op)) {
$res = new RestResult(false, "Unsupported Operation.");
echo json_encode($res);
die;
}
/*
* Initializing the factory Object
*/
示例2: UserSession
*
* credits
* ----------
* Idea by: Garrett French | http://ontolo.com | garrett <dot> french [at] ontolo (dot) com
* Code by: Alias Eldhose| http://ceegees.in | eldhose (at) ceegees [dot] in
* Initiated by: Dennis Hettema | http://hette.ma | hettema (at) gmail [dot] com
*/
include_once 'app/etc/Config.php';
include_once 'app/mysql/MYSQLHelper.php';
include_once 'app/core/Controller.php';
include_once 'app/core/functions.php';
$gSession = new UserSession();
$gMessage = "";
$gErrorMessage = "";
if (empty($_GET['go'])) {
if ($gSession->isValid()) {
$_GET['go'] = "home";
} else {
$_GET['go'] = "login";
}
}
/*
* Now we are sure that we have a correct navigation object
*/
$infoPresent = isset($gRouteInfo[$_GET['go']]);
if ($infoPresent == false) {
if ($gSession->isValid()) {
$_GET['go'] = "home";
} else {
$_GET['go'] = "login";
}