user_authenticate
modules/user/user.module, строка 1333
- Версии
- 5
user_authenticate(
$name,$pass)- 6
user_authenticate($form_values = array())
Try to log in the user locally.
Параметры
$form_values
Form values with at least 'name'
and 'pass'
keys, as well as anything else
which should be passed along to hook_user op 'login'
.
Возвращаемое значение
A $user
object, if successful.
Код
<?php
function user_authenticate($form_values = array()) {
global $user;
// Load the account to check if the e-mail is denied by an access rule.
// Doing this check here saves us a user_load() in user_login_name_validate()
// and introduces less code change for a security fix.
$account = user_load(array('name' => $form_values['name'], 'pass' => trim($form_values['pass']), 'status' => 1));
if ($account && drupal_is_denied('mail', $account->mail)) {
form_set_error('name', t('The name %name is registered using a reserved e-mail address and therefore could not be logged in.', array('%name' => $account->name)));
}
// Name and pass keys are required.
// The user is about to be logged in, so make sure no error was previously
// encountered in the validation process.
if (!form_get_errors() && !empty($form_values['name']) && !empty($form_values['pass']) && $account) {
$user = $account;
user_authenticate_finalize($form_values);
return $user;
}
}
?>
Войдите или зарегистрируйтесь, чтобы получить возможность отправлять комментарии