You are here

function cck_select_other_field_formatter_info in CCK Select Other 7.2

Same name and namespace in other branches
  1. 7 cck_select_other.module \cck_select_other_field_formatter_info()

Implementation of hook_field_formatter_info().

File

./cck_select_other.module, line 35
Implements a select list widget that lets a user provide an alternate option.

Code

function cck_select_other_field_formatter_info() {
  return array(
    'cck_select_other' => array(
      'label' => t('Select other'),
      'description' => t('The default list module formatters do not take into account select other list widgets.'),
      'field types' => array(
        'list_integer',
        'list_float',
        'list_text',
      ),
    ),
  );
}