You are here

function multiform_form_alter in Multiple forms 7.2

Implements hook_form_alter().

File

./multiform.module, line 173

Code

function multiform_form_alter(&$form, &$form_state, $form_id) {
  if (!empty($form_state['#multiform'])) {
    $form['#after_build'][] = 'multiform_form_after_build';
  }
}