On this page
function hook_field_formatter_info_alter
hook_field_formatter_info_alter(&$info)
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
File
- modules/field/field.api.php, line 1104
- Hooks provided by the Field module.
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';
}
© 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/modules!field!field.api.php/function/hook_field_formatter_info_alter/7.x