You are here

function field_group_info_groups in Field Group 7

Same name in this branch
  1. 7 field_group.api.php \field_group_info_groups()
  2. 7 field_group.module \field_group_info_groups()
Same name and namespace in other branches
  1. 8.3 field_group.module \field_group_info_groups()
  2. 8 field_group.module \field_group_info_groups()
  3. 7.2 field_group.api.php \field_group_info_groups()
  4. 7.2 field_group.module \field_group_info_groups()

Get the groups for a given entity type, bundle and view mode.

Parameters

String $entity_type: The Entity type where field groups are requested.

String $bundle: The entity bundle for the field groups.

String $view_mode: The view mode scope for the field groups.

See also

field_group_read_groups()

ctools_export_crud_load()

ctools_export_crud_load_all()

ctools_export_crud_delete()

ctools_export_crud_save()

18 calls to field_group_info_groups()
field_group_attach_groups in ./field_group.module
Attach groups to the (form) build.
field_group_field_info_max_weight in ./field_group.field_ui.inc
Implements hook_field_info_max_weight().
field_group_field_overview_submit in ./field_group.field_ui.inc
Submit handler for the overview screens.
field_group_field_ui_form_params in ./field_group.field_ui.inc
Helper function to get the form parameters to use while building the fields and display overview form.
field_group_update_7001 in ./field_group.install
Update hook on the field_group table to add an unique identifier.

... See full list

File

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

Code

function field_group_info_groups($entity_type = NULL, $bundle = NULL, $view_mode = NULL, $reset = FALSE) {

  // This function caches the result and delegates to field_group_read_groups.
}