You are here

public function VocabularyVid::title in Drupal 8

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

Override the behavior of title(). Get the name of the vocabulary.

Overrides NumericArgument::title

File

core/modules/taxonomy/src/Plugin/views/argument/VocabularyVid.php, line 57

Class

VocabularyVid
Argument handler to accept a vocabulary id.

Namespace

Drupal\taxonomy\Plugin\views\argument

Code

public function title() {
  $vocabulary = $this->vocabularyStorage
    ->load($this->argument);
  if ($vocabulary) {
    return $vocabulary
      ->label();
  }
  return $this
    ->t('No vocabulary');
}