You are here

function field_third_party_test_field_widget_settings_summary_alter in Drupal 10

Same name and namespace in other branches
  1. 8 core/modules/field/tests/modules/field_third_party_test/field_third_party_test.module \field_third_party_test_field_widget_settings_summary_alter()
  2. 9 core/modules/field/tests/modules/field_third_party_test/field_third_party_test.module \field_third_party_test_field_widget_settings_summary_alter()

Implements hook_field_widget_settings_summary_alter().

File

core/modules/field/tests/modules/field_third_party_test/field_third_party_test.module, line 28
Test module.

Code

function field_third_party_test_field_widget_settings_summary_alter(&$summary, $context) {
  $summary[] = 'field_test_field_widget_settings_summary_alter';
  return $summary;
}