You are here

public function NumericArgument::title in Drupal 8

Same name and namespace in other branches
  1. 9 core/modules/views/src/Plugin/views/argument/NumericArgument.php \Drupal\views\Plugin\views\argument\NumericArgument::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

2 methods override NumericArgument::title()
Taxonomy::title in core/modules/taxonomy/src/Plugin/views/argument/Taxonomy.php
Override the behavior of title(). Get the title of the node.
VocabularyVid::title in core/modules/taxonomy/src/Plugin/views/argument/VocabularyVid.php
Override the behavior of title(). Get the name of the vocabulary.

File

core/modules/views/src/Plugin/views/argument/NumericArgument.php, line 60

Class

NumericArgument
Basic argument handler for arguments that are numeric. Incorporates break_phrase.

Namespace

Drupal\views\Plugin\views\argument

Code

public function title() {
  if (!$this->argument) {
    return !empty($this->definition['empty field name']) ? $this->definition['empty field name'] : $this
      ->t('Uncategorized');
  }
  if (!empty($this->options['break_phrase'])) {
    $break = static::breakString($this->argument, FALSE);
    $this->value = $break->value;
    $this->operator = $break->operator;
  }
  else {
    $this->value = [
      $this->argument,
    ];
    $this->operator = 'or';
  }
  if (empty($this->value)) {
    return !empty($this->definition['empty field name']) ? $this->definition['empty field name'] : $this
      ->t('Uncategorized');
  }
  if ($this->value === [
    -1,
  ]) {
    return !empty($this->definition['invalid input']) ? $this->definition['invalid input'] : $this
      ->t('Invalid input');
  }
  return implode($this->operator == 'or' ? ' + ' : ', ', $this
    ->titleQuery());
}