function options_field_formatter_info

Implements hook_field_formatter_info().

File

drupal/core/modules/field/modules/options/options.module, line 866
Defines selection, check box and radio button widgets for text and numeric fields.

Code

function options_field_formatter_info() {
  return array(
    'list_default' => array(
      'label' => t('Default'),
      'field types' => array(
        'list_integer',
        'list_float',
        'list_text',
        'list_boolean',
      ),
    ),
    'list_key' => array(
      'label' => t('Key'),
      'field types' => array(
        'list_integer',
        'list_float',
        'list_text',
        'list_boolean',
      ),
    ),
  );
}