hook_field_formatter_info_alter(array &$info)
Perform alterations on Field API formatter types.
array $info: An array of information on existing formatter types, as collected by the annotation discovery mechanism.
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'; }
© 2001–2016 by the original authors
Licensed under the GNU General Public License, version 2 and later.
Drupal is a registered trademark of Dries Buytaert.
https://api.drupal.org/api/drupal/core!modules!field!field.api.php/function/hook_field_formatter_info_alter/8.1.x