Skip to content

Instantly share code, notes, and snippets.

@init90
Created January 5, 2017 14:09
Show Gist options
  • Select an option

  • Save init90/d75f014c1fdcc29262e61a059a40f038 to your computer and use it in GitHub Desktop.

Select an option

Save init90/d75f014c1fdcc29262e61a059a40f038 to your computer and use it in GitHub Desktop.
drupal 7, preprocess password confirm.
function MYMODULE_form_user_register_form_alter(&$form, &$form_state, $form_id) {
$form['account']['pass']['#process'] = array(
'form_process_password_confirm',
'MYMODULE_password_confirm_process',
'user_form_process_password_confirm'
);
}
function MYMODULE_password_confirm_process($element) {
$element['pass1']['#attributes']['title'] = 'Title';
$element['pass2']['#attributes']['title'] = 'Title2';
return $element;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment