function taxonomy_edge_taxonomy_get_tree in Taxonomy Edge 6
BC wrappers after function name changes
File
- ./
taxonomy_edge.module, line 799 - 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_taxonomy_get_tree($vid, $parent = 0, $depth = -1, $max_depth = NULL) {
return taxonomy_edge_get_tree($vid, $parent, $max_depth);
}