You are here

public function IndexTid::titleQuery in Drupal 8

Same name and namespace in other branches
  1. 9 core/modules/taxonomy/src/Plugin/views/argument/IndexTid.php \Drupal\taxonomy\Plugin\views\argument\IndexTid::titleQuery()

Override for specific title lookups.

Overrides ManyToOne::titleQuery

File

core/modules/taxonomy/src/Plugin/views/argument/IndexTid.php, line 17

Class

IndexTid
Allow taxonomy term ID(s) as argument.

Namespace

Drupal\taxonomy\Plugin\views\argument

Code

public function titleQuery() {
  $titles = [];
  $terms = Term::loadMultiple($this->value);
  foreach ($terms as $term) {
    $titles[] = \Drupal::service('entity.repository')
      ->getTranslationFromContext($term)
      ->label();
  }
  return $titles;
}