function NumericArgument::title

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()
  2. 8.9.x core/modules/views/src/Plugin/views/argument/NumericArgument.php \Drupal\views\Plugin\views\argument\NumericArgument::title()
  3. 10 core/modules/views/src/Plugin/views/argument/NumericArgument.php \Drupal\views\Plugin\views\argument\NumericArgument::title()

Overrides ArgumentPluginBase::title

File

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

Class

NumericArgument
Basic argument handler for arguments that are numeric.

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());
}

Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.