hook_field_widget_info_alter

Versions
7
hook_field_widget_info_alter(&$info)

Perform alterations on Field API widget types.

Parameters

$info Array of informations on widget types exposed by hook_field_widget_info() implementations.

Related topics

Code

modules/field/field.api.php, line 596

<?php
function hook_field_widget_info_alter(&$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';
}
?>
Login or register to post comments
 
 

All source code and documentation on this site is released under the terms of the GNU General Public License, version 2 and later. Drupal is a registered trademark of Dries Buytaert.