Skip to content
Snippets Groups Projects
Commit 6819d586 authored by Alex Pott's avatar Alex Pott
Browse files

Issue #2306165 by a_thakur: Remove user_authenticate().

parent 62047d88
No related branches found
No related tags found
No related merge requests found
......@@ -693,23 +693,6 @@ function user_translated_menu_link_alter(MenuLink &$menu_link) {
}
}
/**
* Try to validate the user's login credentials locally.
*
* @param $name
* User name to authenticate.
* @param $password
* A plain-text password, such as trimmed text from form values.
* @return
* The user's uid on success, or FALSE on failure to authenticate.
*
* @deprecated in Drupal 8.x-dev, will be removed before Drupal 8.0.
* Use \Drupal\user\UserAuth::authenticate() instead.
*/
function user_authenticate($name, $password) {
return \Drupal::service('user.auth')->authenticate($name, $password);
}
/**
* Finalizes the login process and logs in a user.
*
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment