hook_field_formatter_info_alter

hook_field_formatter_info_alter(array &$info)

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

Field Formatter API
Define Field API formatter types.
Hooks
Define functions that alter the behavior of Drupal core.

File

core/modules/field/field.api.php, line 228
Field API documentation.

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';
}
doc_Drupal
2016-10-29 09:18:08
Comments
Leave a Comment

Please login to continue.