function IndexTidDepth::title
Get the title this argument will assign the view, given the argument.
This usually needs to be overridden to provide a proper title.
Overrides ArgumentPluginBase::title
File
- 
              core/modules/ taxonomy/ src/ Plugin/ views/ argument/ IndexTidDepth.php, line 127 
Class
- IndexTidDepth
- Argument handler for taxonomy terms with depth.
Namespace
Drupal\taxonomy\Plugin\views\argumentCode
public function title() {
  $term = $this->entityRepository
    ->getCanonical('taxonomy_term', $this->argument);
  if (!empty($term)) {
    return $term->label();
  }
  // @todo Review text.
  return $this->t('No name');
}Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.
