function hook_field_widget_info_alter
Same name in other branches
- 7.x modules/field/field.api.php \hook_field_widget_info_alter()
- 9 core/modules/field/field.api.php \hook_field_widget_info_alter()
- 8.9.x core/modules/field/field.api.php \hook_field_widget_info_alter()
- 10 core/modules/field/field.api.php \hook_field_widget_info_alter()
Perform alterations on Field API widget types.
Parameters
array $info: An array of information on existing widget types, as collected by the plugin discovery mechanism.
Related topics
1 function implements hook_field_widget_info_alter()
Note: this list is generated by pattern matching, so it may include some functions that are not actually implementations of this hook.
- media_library_test_field_widget_info_alter in core/
modules/ media_library/ tests/ modules/ media_library_test/ media_library_test.module - Implements hook_field_widget_info_alter().
File
-
core/
modules/ field/ field.api.php, line 188
Code
function hook_field_widget_info_alter(array &$info) {
// Let a new field type re-use an existing widget.
$info['options_select']['field_types'][] = 'my_field_type';
}
Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.