function taxonomy_get_parents_all

7.x taxonomy.module taxonomy_get_parents_all($tid)
6.x taxonomy.module taxonomy_get_parents_all($tid)

Find all ancestors of a given term ID.

2 calls to taxonomy_get_parents_all()
forum_nodeapi in drupal-6.x/modules/forum/forum.module
Implementation of hook_nodeapi().
forum_page in drupal-6.x/modules/forum/forum.pages.inc
Menu callback; prints a forum listing.

File

drupal-6.x/modules/taxonomy/taxonomy.module, line 796
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;
}