function taxonomy_theme
Same name and namespace in other branches
- 6.x drupal-6.x/modules/taxonomy/taxonomy.module \taxonomy_theme()
Implements hook_theme().
Archivo
- drupal-7.x/
modules/ taxonomy/ taxonomy.module, line 241 - Enables the organization of content into categories.
Código
function taxonomy_theme() {
return array(
'taxonomy_overview_vocabularies' => array(
'render element' => 'form',
),
'taxonomy_overview_terms' => array(
'render element' => 'form',
),
'taxonomy_term' => array(
'render element' => 'elements',
'template' => 'taxonomy-term',
),
);
}