options_field_widget_info

7 options.module options_field_widget_info()
8 options.module 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
Defines selection, check box and radio button widgets for text and numeric fields.

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),
    ),
  );
}
Login or register to post comments