function taxonomy_get_parents_all in Drupal 5
Same name and namespace in other branches
- 4 modules/taxonomy.module \taxonomy_get_parents_all()
- 6 modules/taxonomy/taxonomy.module \taxonomy_get_parents_all()
- 7 modules/taxonomy/taxonomy.module \taxonomy_get_parents_all()
Find all ancestors of a given term ID.
2 calls to taxonomy_get_parents_all()
- forum_page in modules/
forum/ forum.module - Menu callback; prints a forum listing.
- forum_view in modules/
forum/ forum.module - Implementation of hook_view().
File
- modules/
taxonomy/ taxonomy.module, line 937 - Enables the organization of content into categories.
Code
function taxonomy_get_parents_all($tid) {
$parents = array();
if ($tid) {
$parents[] = taxonomy_get_term($tid);
$n = 0;
while ($parent = taxonomy_get_parents($parents[$n]->tid)) {
$parents = array_merge($parents, $parent);
$n++;
}
}
return $parents;
}