1 taxonomy.module | taxonomy_get_parents_all($tid) |
Legacy wrapper to load all the parents of a term by TID.
Do not call this function, use taxonomy_term_load_parents_all() instead.
Deprecated
since 1.0.0
See also
taxonomy_term_load_parents_all()
https://docs.backdropcms.org/node/41635
File
- core/
modules/ taxonomy/ taxonomy.module, line 1309 - Enables the organization of content into categories.
Code
function taxonomy_get_parents_all($tid) {
watchdog_deprecated_function('taxonomy', __FUNCTION__);
return taxonomy_term_load_parents_all($tid);
}