function taxonomy_field_formatter_info

Implements hook_field_formatter_info().

File

drupal/modules/taxonomy/taxonomy.module, line 1571
Enables the organization of content into categories.

Code

function taxonomy_field_formatter_info() {
  return array(
    'taxonomy_term_reference_link' => array(
      'label' => t('Link'),
      'field types' => array(
        'taxonomy_term_reference',
      ),
    ),
    'taxonomy_term_reference_plain' => array(
      'label' => t('Plain text'),
      'field types' => array(
        'taxonomy_term_reference',
      ),
    ),
    'taxonomy_term_reference_rss_category' => array(
      'label' => t('RSS category'),
      'field types' => array(
        'taxonomy_term_reference',
      ),
    ),
  );
}