function taxonomy_term_load_parents_all

Find all ancestors of a given term ID.

3 calls to taxonomy_term_load_parents_all()
1 string reference to 'taxonomy_term_load_parents_all'

File

drupal/core/modules/taxonomy/taxonomy.module, line 677
Enables the organization of content into categories.

Code

function taxonomy_term_load_parents_all($tid) {
  $cache =& drupal_static(__FUNCTION__, array());
  if (isset($cache[$tid])) {
    return $cache[$tid];
  }
  $parents = array();
  if ($term = taxonomy_term_load($tid)) {
    $parents[] = $term;
    $n = 0;
    while ($parent = taxonomy_term_load_parents($parents[$n]->tid)) {
      $parents = array_merge($parents, $parent);
      $n++;
    }
  }
  $cache[$tid] = $parents;
  return $parents;
}