You are here

function hs_content_taxonomy_field_formatter_info in Hierarchical Select 6.3

Same name and namespace in other branches
  1. 5.3 modules/hs_content_taxonomy.module \hs_content_taxonomy_field_formatter_info()

Implementation of hook_field_formatter_info().

File

modules/hs_content_taxonomy.module, line 235
Implementation of the Hierarchical Select API for the Content Taxonomy module.

Code

function hs_content_taxonomy_field_formatter_info() {
  return array(
    'hierarchical_text' => array(
      'label' => t('As hierarchical text'),
      'field types' => array(
        'content_taxonomy',
      ),
      'multiple values' => CONTENT_HANDLE_MODULE,
    ),
    'hierarchical_links' => array(
      'label' => t('As hierarchical links'),
      'field types' => array(
        'content_taxonomy',
      ),
      'multiple values' => CONTENT_HANDLE_MODULE,
    ),
  );
}