function fieldset_helper_form_alter in Fieldset helper 6.2
Same name and namespace in other branches
- 6 fieldset_helper.module \fieldset_helper_form_alter()
Implementation of hook_form_alter().
File
- ./
fieldset_helper.module, line 116
Code
function fieldset_helper_form_alter(&$form, $form_state, $form_id) {
// If the $form object has an id, which will be used in the <form> tag,
// then replace the $form_id variable.
$form_id = isset($form['#id']) ? $form['#id'] : $form_id;
_fieldset_helper_set_fieldset_ids_recursive($form, $form_id);
}