You are here

function ldap_user_form_user_form_alter in Lightweight Directory Access Protocol (LDAP) 8.3

Same name and namespace in other branches
  1. 8.4 ldap_user/ldap_user.module \ldap_user_form_user_form_alter()

Implements hook_form_FORM_ID_alter().

Relevant for user profile form.

File

ldap_user/ldap_user.module, line 196
Module for the LDAP User Entity.

Code

function ldap_user_form_user_form_alter(&$form, $form_state) {
  array_unshift($form['#validate'], 'ldap_user_grab_password_validate');
}