function taxonomy_field_formatter_info in Drupal 7
Implements hook_field_formatter_info().
File
- modules/
taxonomy/ taxonomy.module, line 1573 - 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',
),
),
);
}