function field_group_info_groups in Field Group 7.2
Same name in this branch
- 7.2 field_group.api.php \field_group_info_groups()
- 7.2 field_group.module \field_group_info_groups()
Same name and namespace in other branches
- 8.3 field_group.module \field_group_info_groups()
- 8 field_group.module \field_group_info_groups()
- 7 field_group.api.php \field_group_info_groups()
- 7 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
7 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.
- GroupUITestCase::createGroup in ./
field_group.test - Creates a group on the article content type.
File
- ./
field_group.api.php, line 415 - 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.
}