function taxonomy_list_theme in Taxonomy List 6
Same name and namespace in other branches
- 5.2 taxonomy_list.module \taxonomy_list_theme()
- 6.2 taxonomy_list.module \taxonomy_list_theme()
- 7 taxonomy_list.module \taxonomy_list_theme()
Implementation of hook_theme().
File
- ./
taxonomy_list.module, line 61 - List all terms in a vocabulary.
Code
function taxonomy_list_theme() {
return array(
'taxonomy_list_admin_links' => array(
'arguments' => array(
'vids',
),
),
'taxonomy_list_vocabulary' => array(
'arguments' => array(
'vocabulary',
),
),
'taxonomy_list_term' => array(
'arguments' => array(
'term',
'vocabulary',
'controls',
),
),
'taxonomy_list_get_table' => array(
'arguments' => array(
'term',
'vocabulary',
'controls',
'depth',
),
),
);
}