function taxonomy_theme in Drupal 6
Same name and namespace in other branches
- 8 core/modules/taxonomy/taxonomy.module \taxonomy_theme()
- 7 modules/taxonomy/taxonomy.module \taxonomy_theme()
- 9 core/modules/taxonomy/taxonomy.module \taxonomy_theme()
Implementation of hook_theme().
File
- modules/
taxonomy/ taxonomy.module, line 18 - Enables the organization of content into categories.
Code
function taxonomy_theme() {
return array(
'taxonomy_term_select' => array(
'arguments' => array(
'element' => NULL,
),
),
'taxonomy_term_page' => array(
'arguments' => array(
'tids' => array(),
'result' => NULL,
),
),
'taxonomy_overview_vocabularies' => array(
'arguments' => array(
'form' => array(),
),
),
'taxonomy_overview_terms' => array(
'arguments' => array(
'form' => array(),
),
),
);
}