You are here

function hs_taxonomy_field_formatter_info in Hierarchical Select 7.3

Implements hook_field_formatter_info().

File

modules/hs_taxonomy.module, line 359
Implementation of the Hierarchical Select API for the Taxonomy module.

Code

function hs_taxonomy_field_formatter_info() {
  return array(
    'hs_taxonomy_term_reference_hierarchical_text' => array(
      'label' => t('Hierarchical text'),
      'field types' => array(
        'taxonomy_term_reference',
      ),
    ),
    'hs_taxonomy_term_reference_hierarchical_links' => array(
      'label' => t('Hierarchical links'),
      'field types' => array(
        'taxonomy_term_reference',
      ),
    ),
    'hs_taxonomy_term_reference_hierarchical_links_last_text' => array(
      'label' => t('Hierarchical links last text'),
      'field types' => array(
        'taxonomy_term_reference',
      ),
    ),
    'hs_taxonomy_term_reference_hierarchical_text_last_link' => array(
      'label' => t('Hierarchical text last link'),
      'field types' => array(
        'taxonomy_term_reference',
      ),
    ),
    'hs_taxonomy_term_reference_last_link_only' => array(
      'label' => t('Last link only'),
      'field types' => array(
        'taxonomy_term_reference',
      ),
    ),
    'hs_taxonomy_term_reference_last_text_only' => array(
      'label' => t('Last text only'),
      'field types' => array(
        'taxonomy_term_reference',
      ),
    ),
  );
}