You are here

function taxonomy_edge_taxonomy_term_count_nodes in Taxonomy Edge 6

File

./taxonomy_edge.module, line 802
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_term_count_nodes($tid, $type = 0) {
  return taxonomy_edge_term_count_nodes($tid, $type);
}