You are here

function hook_field_group_format_summary in Field Group 7.2

Same name and namespace in other branches
  1. 7 field_group.api.php \hook_field_group_format_summary()

Implements hook_field_group_format_summary().

Place to override or change default summary behavior. In most cases the implementation of field group itself will be enough.

TODO It might be better to change this hook with already created summaries, giving the ability to alter or add it later on.

1 function implements hook_field_group_format_summary()

Note: this list is generated by pattern matching, so it may include some functions that are not actually implementations of this hook.

field_group_field_group_format_summary in ./field_group.module
Implements hook_field_group_format_summary().
1 invocation of hook_field_group_format_summary()
field_group_format_settings_summary in ./field_group.field_ui.inc
Creates a summary for the field format configuration summary.

File

./field_group.api.php, line 320
Hooks provided by the Field group module.

Code

function hook_field_group_format_summary($group) {
  $output = '';

  // Create additional summary or change the default setting.
  return $output;
}