hook_field_widget_info_alter(array &$info)
Perform alterations on Field API widget types.
Parameters
array $info: An array of information on existing widget types, as collected by the annotation discovery mechanism.
Related topics
- Field Widget API
- Define Field API widget types.
- Hooks
- Define functions that alter the behavior of Drupal core.
File
- core/modules/field/field.api.php, line 132
- Field API documentation.
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'; }
Please login to continue.