1.20.x 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://api.backdropcms.org/node/41635

File

modules/taxonomy/taxonomy.module, line 1353
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);
}