| 6 taxonomy.module | taxonomy_theme() |
| 7 taxonomy.module | taxonomy_theme() |
| 8 taxonomy.module | taxonomy_theme() |
Implements hook_theme().
File
- modules/
taxonomy/ taxonomy.module, line 241 - Enables the organization of content into categories.
Code
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',
),
);
}
Login or register to post comments