You are here

function ga_push_form_validate_form_after_build in GA Push 7

Same name and namespace in other branches
  1. 8 modules/form_validate/ga_push_form_validate.module \ga_push_form_validate_form_after_build()

Add the function on the last place to record all errors.

1 string reference to 'ga_push_form_validate_form_after_build'
ga_push_form_validate_form_alter in modules/form_validate/ga_push_form_validate.module
Implements hook_form_alter().

File

modules/form_validate/ga_push_form_validate.module, line 54
Drupal Module: GA Push (form validate).

Code

function ga_push_form_validate_form_after_build($form, $form_state) {
  $form['#validate'][] = 'ga_push_form_validate_get_validate_errors';
  return $form;
}