本文整理汇总了PHP中UserModel::isUserLoggedIn方法的典型用法代码示例。如果您正苦于以下问题:PHP UserModel::isUserLoggedIn方法的具体用法?PHP UserModel::isUserLoggedIn怎么用?PHP UserModel::isUserLoggedIn使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类UserModel
的用法示例。
在下文中一共展示了UserModel::isUserLoggedIn方法的4个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: ActionSaveMessage
public static function ActionSaveMessage($chatId)
{
ChatModel::saveMessage($chatId, 1, $_POST['message']);
exit('ok');
if (UserModel::isUserLoggedIn() and ChatModel::isUserInChat($chatId, UserModel::getUserId())) {
}
}
示例2: ActionAddComment
public static function ActionAddComment($postId)
{
if (UserModel::isUserLoggedIn() and isset($_POST['text'])) {
$text = $_POST['text'];
PostModel::addComment($postId, $text);
}
header("Location: " . $_SERVER['HTTP_REFERER']);
}
示例3: ActionAddPost
public static function ActionAddPost()
{
if (UserModel::isUserLoggedIn()) {
$variables = ['template' => 'postForm.php', 'scripts' => ['fileUploader.js']];
$variables = array_merge_recursive(self::getMainVariables(), $variables);
Template::render('template.php', $variables);
} else {
header('Location: ' . $_SERVER['HTTP_REFERER']);
}
}
示例4: ActionChangeLanguage
public static function ActionChangeLanguage()
{
if (UserModel::isUserLoggedIn()) {
$lang = $_POST['lang'];
UserModel::changeUserLanguage($lang);
}
header("Location: " . $_SERVER['HTTP_REFERER']);
}