function taxonomy_edge_taxonomy_select_nodes in Taxonomy Edge 6
File
- ./
taxonomy_edge.module, line 805 - 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_select_nodes($tids = array(), $operator = 'or', $depth = 0, $pager = TRUE, $order = 'n.sticky DESC, n.created DESC, n.nid DESC') {
return taxonomy_edge_select_nodes($tids, $operator, $depth, $pager, $order);
}