On this page
function hook_field_info_alter
hook_field_info_alter(&$info)
Perform alterations on Field API field types.
Parameters
$info: Array of information on field types exposed by hook_field_info() implementations.
Related topics
File
- modules/field/field.api.php, line 196
- Hooks provided by the Field module.
Code
function hook_field_info_alter(&$info) {
// Add a setting to all field types.
foreach ($info as $field_type => $field_type_info) {
$info[$field_type]['settings'] += array(
'mymodule_additional_setting' => 'default value',
);
}
// Change the default widget for fields of type 'foo'.
if (isset($info['foo'])) {
$info['foo']['default widget'] = 'mymodule_widget';
}
}
© 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_info_alter/7.x