function hook_field_formatter_info_alter

Same name in other branches
  1. 7.x modules/field/field.api.php \hook_field_formatter_info_alter()
  2. 9 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

array $info: An array of information on existing formatter types, as collected by the annotation discovery mechanism.

Related topics

4 functions implement hook_field_formatter_info_alter()

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

editor_field_formatter_info_alter in core/modules/editor/editor.module
Implements hook_field_formatter_info_alter().
quickedit_field_formatter_info_alter in core/modules/quickedit/quickedit.module
Implements hook_field_formatter_info_alter().
quickedit_test_field_formatter_info_alter in core/modules/quickedit/tests/modules/quickedit_test.module
Implements hook_field_formatter_info_alter().
telephone_field_formatter_info_alter in core/modules/telephone/telephone.module
Implements hook_field_formatter_info_alter().

File

core/modules/field/field.api.php, line 338

Code

function hook_field_formatter_info_alter(array &$info) {
    // 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.