function i18n_taxonomy_field_formatter_info in Internationalization 7
Implements hook_field_formatter_info().
File
- i18n_taxonomy/
i18n_taxonomy.module, line 173 - i18n taxonomy module
Code
function i18n_taxonomy_field_formatter_info() {
return array(
'i18n_taxonomy_term_reference_link' => array(
'label' => t('Link (localized)'),
'field types' => array(
'taxonomy_term_reference',
),
),
'i18n_taxonomy_term_reference_plain' => array(
'label' => t('Plain text (localized)'),
'field types' => array(
'taxonomy_term_reference',
),
),
);
}