You are here

function content_multigroup_node_form_after_build in Content Construction Kit (CCK) 6.3

After build callback for multigroups in node form.

This proxy function is necessary to prevent from breaking AHAH handlers.

1 string reference to 'content_multigroup_node_form_after_build'
_content_multigroup_fieldgroup_form in modules/content_multigroup/content_multigroup.node_form.inc
Implementation of hook_fieldgroup_form().

File

modules/content_multigroup/content_multigroup.module, line 169
Create complex, repeating groups of CCK fields that work in unison.

Code

function content_multigroup_node_form_after_build($form, &$form_state) {
  module_load_include('inc', 'content_multigroup', 'content_multigroup.node_form');
  return _content_multigroup_node_form_after_build($form, $form_state);
}