function auth0_authenticate_user in Auth0 Single Sign On 7.2
Authenticate the given user.
We use our own login form because user_external_login loads the login form which we are modifying.
1 call to auth0_authenticate_user()
- auth0_login_auth0_user in ./
auth0.module - Log in an Auth0 authenticated user.
File
- ./
auth0.module, line 539
Code
function auth0_authenticate_user($uid) {
$form_state['uid'] = $uid;
user_login_submit(array(), $form_state);
return TRUE;
}