function TermStorage::loadAllParents
Finds all ancestors of a given term ID.
Parameters
int $tid: Term ID to retrieve ancestors for.
Return value
\Drupal\taxonomy\TermInterface[] An array of term objects which are the ancestors of the term $tid.
Overrides TermStorageInterface::loadAllParents
File
- 
              core/modules/ taxonomy/ src/ TermStorage.php, line 166 
Class
- TermStorage
- Defines a Controller class for taxonomy terms.
Namespace
Drupal\taxonomyCode
public function loadAllParents($tid) {
  /** @var \Drupal\taxonomy\TermInterface $term */
  return !empty($tid) && ($term = $this->load($tid)) ? $this->getAncestors($term) : [];
}Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.
