You are here

function hook_field_group_info_alter in Field Group 7

Alter the field group definitions provided by other modules.

Parameters

array $groups: Reference to an array of field group definition objects.

File

./field_group.api.php, line 354
Hooks provided by the Field Group module.

Code

function hook_field_group_info_alter(&$groups) {
  if (!empty($groups['group_issue_metadata|node|project_issue|form'])) {
    $groups['group_issue_metadata|node|project_issue|form']->data['children'][] = 'taxonomy_vocabulary_9';
  }
}