function NumericArgument::title
Same name in other branches
- 8.9.x core/modules/views/src/Plugin/views/argument/NumericArgument.php \Drupal\views\Plugin\views\argument\NumericArgument::title()
- 10 core/modules/views/src/Plugin/views/argument/NumericArgument.php \Drupal\views\Plugin\views\argument\NumericArgument::title()
- 11.x core/modules/views/src/Plugin/views/argument/NumericArgument.php \Drupal\views\Plugin\views\argument\NumericArgument::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 61
Class
- NumericArgument
- Basic argument handler for arguments that are numeric.
Namespace
Drupal\views\Plugin\views\argumentCode
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.