function hook_field_info_alter
Same name and namespace in other branches
- 7.x modules/field/field.api.php \hook_field_info_alter()
- 9 core/modules/field/field.api.php \hook_field_info_alter()
- 8.9.x core/modules/field/field.api.php \hook_field_info_alter()
- 11.x core/modules/field/field.api.php \hook_field_info_alter()
Perform alterations on Field API field types.
Parameters
$info: Array of information on field types as collected by the "field type" plugin manager.
Related topics
16 functions implement hook_field_info_alter()
Note: the procedural functions in this list are found by pattern matching, so the list may include some functions that are not actually implementations of this hook.
- comment_display_configurable_test_entity_base_field_info_alter in core/
modules/ comment/ tests/ modules/ comment_display_configurable_test/ comment_display_configurable_test.module - Implements hook_entity_base_field_info_alter().
- ContentTranslationHooks::fieldInfoAlter in core/
modules/ content_translation/ src/ Hook/ ContentTranslationHooks.php - Implements hook_field_info_alter().
- content_translation_field_info_alter in core/
modules/ content_translation/ content_translation.module - Implements hook_field_info_alter().
- EntityTypeInfo::fieldInfoAlter in core/
modules/ workspaces/ src/ Hook/ EntityTypeInfo.php - Implements hook_field_info_alter().
- entity_reference_test_entity_base_field_info_alter in core/
modules/ system/ tests/ modules/ entity_reference_test/ entity_reference_test.module - Implements hook_entity_base_field_info_alter().
File
-
core/
modules/ field/ field.api.php, line 53
Code
function hook_field_info_alter(&$info) {
// Change the default widget for fields of type 'foo'.
if (isset($info['foo'])) {
$info['foo']['default_widget'] = 'my_module_widget';
}
}
Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.