taxonomy_field_formatter_info
- Versions
- 7
taxonomy_field_formatter_info()
Implements hook_field_formatter_info().
Code
modules/taxonomy/taxonomy.module, line 1070
<?php
function taxonomy_field_formatter_info() {
return array(
'taxonomy_term_link' => array(
'label' => t('Link'),
'field types' => array('taxonomy_term'),
),
'taxonomy_term_plain' => array(
'label' => t('Plain text'),
'field types' => array('taxonomy_term'),
),
);
}
?>Login or register to post comments 