function ldap_authentication_user_login_authenticate_validate in Lightweight Directory Access Protocol (LDAP) 7.2
Same name and namespace in other branches
- 8.4 ldap_authentication/ldap_authentication.module \ldap_authentication_user_login_authenticate_validate()
- 8.2 ldap_authentication/ldap_authentication.module \ldap_authentication_user_login_authenticate_validate()
- 8.3 ldap_authentication/ldap_authentication.module \ldap_authentication_user_login_authenticate_validate()
- 7 ldap_authentication/ldap_authentication.module \ldap_authentication_user_login_authenticate_validate()
Validate function for user logon forms.
1 string reference to 'ldap_authentication_user_login_authenticate_validate'
- _ldap_authentication_login_form_alter in ldap_authentication/
ldap_authentication.inc - Helper function for ldap_authn_form_user_login_block_alter and ldap_authn_form_user_login_alter.
File
- ldap_authentication/
ldap_authentication.module, line 449 - This module injects itself into Drupal's Authentication stack.
Code
function ldap_authentication_user_login_authenticate_validate($form, &$form_state, $return_user = FALSE) {
ldap_servers_module_load_include('inc', 'ldap_authentication', 'ldap_authentication');
return _ldap_authentication_user_login_authenticate_validate($form_state, $return_user);
}