function options_field_widget_info

Implements hook_field_widget_info().

Field type modules willing to use those widgets should:

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.