本文整理汇总了PHP中SessionUtil::setUsername方法的典型用法代码示例。如果您正苦于以下问题:PHP SessionUtil::setUsername方法的具体用法?PHP SessionUtil::setUsername怎么用?PHP SessionUtil::setUsername使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类SessionUtil
的用法示例。
在下文中一共展示了SessionUtil::setUsername方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: handleForm
public function handleForm($context, $action)
{
if ($action == "login") {
$ldapAuthed = LDAPUtil::authLDAPUser($_POST['username'], $_POST['password']);
if ($ldapAuthed) {
$user = WebAdUserDao::getWebAdUserByUsername($_POST['username']);
if ($user != null && $user instanceof WebAdUser) {
SessionUtil::setUsername($user->getUsername());
$context->setPageID("home");
} else {
$context->addError("Incorrect Login");
}
} else {
$context->addError("Incorrect Login");
}
} else {
$context->addError("Incorrect Action.");
}
}
示例2: handleForm
public function handleForm($context, $action)
{
if ($action == "login") {
$authed = false;
if (Config::login_type == LOGIN_TYPE_LDAP) {
$authed = false;
if (Config::ldap_type == LDAP_TYPE_REMOTE) {
$authed = RemoteLDAPUtil::auth($_POST['username'], $_POST['password']);
} else {
if (Config::ldap_type == LDAP_TYPE_LOCAL) {
$authed = LDAPUtil::authLDAPUser($_POST['username'], $_POST['password']);
}
}
} else {
if (Config::login_type == LOGIN_TYPE_DB) {
$authed = UserDao::authUser($_POST['username'], $_POST['password']);
}
}
if ($authed) {
$user = UserDao::getUserByUsername($_POST['username']);
if ($user != null && $user instanceof User) {
SessionUtil::setUsername($user->username);
SessionUtil::setUserlevel($user->userlevel);
if (isset($_POST['redir']) && $_POST['redir'] != '' && !strpos($_POST['redir'], 'login') && !strpos($_POST['redir'], 'logout')) {
header("location: " . $_POST['redir']);
} else {
$context->setPageID("home");
}
} else {
$context->addError("Incorrect Login");
}
} else {
$context->addError("Incorrect Login");
}
} else {
$context->addError("Incorrect Action.");
}
}