function hook_field_formatter_info_alter

Same name and namespace in other branches
  1. 9 core/modules/field/field.api.php \hook_field_formatter_info_alter()
  2. 8.9.x core/modules/field/field.api.php \hook_field_formatter_info_alter()
  3. 10 core/modules/field/field.api.php \hook_field_formatter_info_alter()
  4. 11.x core/modules/field/field.api.php \hook_field_formatter_info_alter()

Perform alterations on Field API formatter types.

Parameters

$info: An array of information on formatter types exposed by hook_field_formatter_info() implementations.

Related topics

1 function implements hook_field_formatter_info_alter()

Note: the procedural functions in this list are found by pattern matching, so the list may include some functions that are not actually implementations of this hook.

TelephoneHooks::fieldFormatterInfoAlter in core/modules/telephone/src/Hook/TelephoneHooks.php
Implements hook_field_formatter_info_alter().

File

modules/field/field.api.php, line 1104

Code

function hook_field_formatter_info_alter(&$info) {
  // Add a setting to a formatter type.
  $info['text_default']['settings'] += array(
    'mymodule_additional_setting' => 'default value',
  );
  // Let a new field type re-use an existing formatter.
  $info['text_default']['field types'][] = 'my_field_type';
}

Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.