hook_field_widget_settings_summary_alter

hook_field_widget_settings_summary_alter(&$summary, $context)

Alters the field widget settings summary.

Parameters

array $summary: An array of summary messages.

array $context: An associative array with the following elements:

  • widget: The widget object.
  • field_definition: The field definition.
  • form_mode: The form mode being configured.

See also

\Drupal\field_ui\FormDisplayOverView

Related topics

Field Types API
Defines field, widget, display formatter, and storage types.

File

core/modules/field_ui/field_ui.api.php, line 115
Hooks provided by the Field UI module.

Code

function hook_field_widget_settings_summary_alter(&$summary, $context) {
  // Append a message to the summary when an instance of foo_widget has
  // mysetting set to TRUE for the current view mode.
  if ($context['widget']->getPluginId() == 'foo_widget') {
    if ($context['widget']->getThirdPartySetting('my_module', 'my_setting')) {
      $summary[] = t('My setting enabled.');
    }
  }
}
doc_Drupal
2016-10-29 09:18:11
Comments
Leave a Comment

Please login to continue.