Same name and namespace in other branches
  1. 8.9.x core/modules/taxonomy/src/TermStorageInterface.php \Drupal\taxonomy\TermStorageInterface::loadParents()
  2. 9 core/modules/taxonomy/src/TermStorageInterface.php \Drupal\taxonomy\TermStorageInterface::loadParents()

Finds all parents of a given term ID.

Parameters

int $tid: Term ID to retrieve parents for.

Return value

\Drupal\taxonomy\TermInterface[] An array of term objects which are the parents of the term $tid.

1 method overrides TermStorageInterface::loadParents()
TermStorage::loadParents in core/modules/taxonomy/src/TermStorage.php
Finds all parents of a given term ID.

File

core/modules/taxonomy/src/TermStorageInterface.php, line 48

Class

TermStorageInterface
Defines an interface for taxonomy_term entity storage classes.

Namespace

Drupal\taxonomy

Code

public function loadParents($tid);