You are here

function hs_content_taxonomy_theme in Hierarchical Select 6.3

Implementation of hook_theme().

File

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

Code

function hs_content_taxonomy_theme() {
  return array(
    'hs_content_taxonomy_formatter_hierarchical_text' => array(
      'arguments' => array(
        'element' => NULL,
      ),
      'function' => 'theme_hs_content_taxonomy_formatter_hierarchical',
    ),
    'hs_content_taxonomy_formatter_hierarchical_links' => array(
      'arguments' => array(
        'element' => NULL,
      ),
      'function' => 'theme_hs_content_taxonomy_formatter_hierarchical',
    ),
    'hs_content_taxonomy_row' => array(
      'arguments' => array(
        'row' => NULL,
        'type' => NULL,
      ),
    ),
  );
}