本文整理匯總了PHP中ElggUser::isEnabled方法的典型用法代碼示例。如果您正苦於以下問題:PHP ElggUser::isEnabled方法的具體用法?PHP ElggUser::isEnabled怎麽用?PHP ElggUser::isEnabled使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在類ElggUser
的用法示例。
在下文中一共展示了ElggUser::isEnabled方法的2個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的PHP代碼示例。
示例1: uservalidationbyemail_check_manual_login
/**
* Prevent a manual code login with login().
*
* @param string $event
* @param string $type
* @param ElggUser $user
* @return bool
*
* @throws LoginException
*/
function uservalidationbyemail_check_manual_login($event, $type, $user)
{
$access_status = access_get_show_hidden_status();
access_show_hidden_entities(TRUE);
if ($user instanceof ElggUser && !$user->isEnabled() && !$user->validated) {
// send new validation email
uservalidationbyemail_request_validation($user->getGUID());
// restore hidden entities settings
access_show_hidden_entities($access_status);
// throw error so we get a nice error message
throw new LoginException(elgg_echo('uservalidationbyemail:login:fail'));
}
access_show_hidden_entities($access_status);
}
示例2: uservalidationbyadmin_check_manual_login
/**
* Prevent a manual code login with login().
*
* @param string $event
* @param string $type
* @param ElggUser $user
* @return bool
*/
function uservalidationbyadmin_check_manual_login($event, $type, $user)
{
$access_status = access_get_show_hidden_status();
access_show_hidden_entities(TRUE);
// @todo register_error()?
$return = $user instanceof ElggUser && !$user->isEnabled() && !$user->validated ? FALSE : NULL;
access_show_hidden_entities($access_status);
return $return;
}