function options_field_widget_info
Implements hook_field_widget_info().
Field type modules willing to use those widgets should:
- Use hook_field_widget_info_alter() to append their field own types to the list of types supported by the widgets,
- Implement hook_options_list() to provide the list of options.
See list.module.
File
-
modules/
field/ modules/ options/ options.module, line 41
Code
function options_field_widget_info() {
return array(
'options_select' => array(
'label' => t('Select list'),
'field types' => array(),
'behaviors' => array(
'multiple values' => FIELD_BEHAVIOR_CUSTOM,
),
),
'options_buttons' => array(
'label' => t('Check boxes/radio buttons'),
'field types' => array(),
'behaviors' => array(
'multiple values' => FIELD_BEHAVIOR_CUSTOM,
),
),
'options_onoff' => array(
'label' => t('Single on/off checkbox'),
'field types' => array(),
'behaviors' => array(
'multiple values' => FIELD_BEHAVIOR_CUSTOM,
),
'settings' => array(
'display_label' => 0,
),
),
);
}
Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.