You are here

function content_multigroup_fieldgroup_view in Content Construction Kit (CCK) 6.3

Implementation of hook_fieldgroup_view().

File

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

Code

function content_multigroup_fieldgroup_view(&$node, &$element, $group, $context) {
  if ($group['group_type'] == 'multigroup') {
    module_load_include('inc', 'content_multigroup', 'content_multigroup.node_view');
    _content_multigroup_fieldgroup_view($node, $element, $group, $context);
  }
}