You are here

function ldap_authentication_user_login_authenticate_validate in Lightweight Directory Access Protocol (LDAP) 7

Same name and namespace in other branches
  1. 8.4 ldap_authentication/ldap_authentication.module \ldap_authentication_user_login_authenticate_validate()
  2. 8.2 ldap_authentication/ldap_authentication.module \ldap_authentication_user_login_authenticate_validate()
  3. 8.3 ldap_authentication/ldap_authentication.module \ldap_authentication_user_login_authenticate_validate()
  4. 7.2 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 342
This module injects itself into Drupal's Authentication stack.

Code

function ldap_authentication_user_login_authenticate_validate($form, &$form_state) {
  ldap_server_module_load_include('inc', 'ldap_authentication', 'ldap_authentication');
  return _ldap_authentication_user_login_authenticate_validate($form_state);
}