function views_handler_argument_numeric::title
Same name in other branches
- 6.x-3.x handlers/views_handler_argument_numeric.inc \views_handler_argument_numeric::title()
Overrides views_handler_argument::title
2 methods override views_handler_argument_numeric::title()
- views_handler_argument_taxonomy::title in modules/
taxonomy/ views_handler_argument_taxonomy.inc - Override the behavior of title(). Get the title of the node.
- views_handler_argument_vocabulary_vid::title in modules/
taxonomy/ views_handler_argument_vocabulary_vid.inc - Override the behavior of title(). Get the name of the vocabulary.
File
-
handlers/
views_handler_argument_numeric.inc, line 70
Class
- views_handler_argument_numeric
- Basic argument handler for arguments that are numeric.
Code
public 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'])) {
views_break_phrase($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());
}