function Numeric::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 Numeric::title()
Taxonomy::title in drupal/core/modules/taxonomy/lib/Drupal/taxonomy/Plugin/views/argument/Taxonomy.php
Override the behavior of title(). Get the title of the node.
VocabularyVid::title in drupal/core/modules/taxonomy/lib/Drupal/taxonomy/Plugin/views/argument/VocabularyVid.php
Override the behavior of title(). Get the name of the vocabulary.

File

drupal/core/modules/views/lib/Drupal/views/Plugin/views/argument/Numeric.php, line 66
Definition of Drupal\views\Plugin\views\argument\Numeric.

Class

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

Namespace

Drupal\views\Plugin\views\argument

Code

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