function taxonomy_edge_theme in Taxonomy Edge 6
Same name and namespace in other branches
- 8 taxonomy_edge.module \taxonomy_edge_theme()
- 7.2 taxonomy_edge.module \taxonomy_edge_theme()
- 7 taxonomy_edge.module \taxonomy_edge_theme()
Implements hook_theme().
File
- ./
taxonomy_edge.module, line 285 - Selecting all children of a given taxonomy term can be a pain. This module makes it easier to do this, by maintaining a complete list of edges for each term using the adjecency matrix graph theory.
Code
function taxonomy_edge_theme() {
return array(
'taxonomy_edge_overview_vocabularies' => array(
'arguments' => array(
'form' => array(),
),
'file' => 'taxonomy_edge.theme.inc',
),
);
}