function taxonomy_get_parents in Drupal 5
Same name and namespace in other branches
- 4 modules/taxonomy.module \taxonomy_get_parents()
- 6 modules/taxonomy/taxonomy.module \taxonomy_get_parents()
- 7 modules/taxonomy/taxonomy.module \taxonomy_get_parents()
Find all parents of a given term ID.
5 calls to taxonomy_get_parents()
- taxonomy_del_term in modules/
taxonomy/ taxonomy.module - Delete a term.
- taxonomy_form_term in modules/
taxonomy/ taxonomy.module - taxonomy_get_parents_all in modules/
taxonomy/ taxonomy.module - Find all ancestors of a given term ID.
- taxonomy_term_page in modules/
taxonomy/ taxonomy.module - Menu callback; displays all nodes associated with a term.
- _forum_parent_select in modules/
forum/ forum.module - Returns a select box for available parent terms
File
- modules/
taxonomy/ taxonomy.module, line 920 - Enables the organization of content into categories.
Code
function taxonomy_get_parents($tid, $key = 'tid') {
if ($tid) {
$result = db_query(db_rewrite_sql('SELECT t.tid, t.* FROM {term_data} t INNER JOIN {term_hierarchy} h ON h.parent = t.tid WHERE h.tid = %d ORDER BY weight, name', 't', 'tid'), $tid);
$parents = array();
while ($parent = db_fetch_object($result)) {
$parents[$parent->{$key}] = $parent;
}
return $parents;
}
else {
return array();
}
}