function hook_field_widget_info_alter

Perform alterations on Field API widget types.

Parameters

array $info: An array of informations on existing widget types, as collected by the annotation discovery mechanism.

Related topics

2 functions implement hook_field_widget_info_alter()

File

drupal/core/modules/field/field.api.php, line 717

Code

function hook_field_widget_info_alter(array &$info) {

  // Add a setting to a widget type.
  $info['text_textfield']['settings'] += array(
    'mymodule_additional_setting' => 'default value',
  );

  // Let a new field type re-use an existing widget.
  $info['options_select']['field_types'][] = 'my_field_type';
}