function views_handler_argument_string::title

Same name in other branches
  1. 7.x-3.x handlers/views_handler_argument_string.inc \views_handler_argument_string::title()

Overrides views_handler_argument::title

1 method overrides views_handler_argument_string::title()
views_handler_argument_node_type::title in modules/node/views_handler_argument_node_type.inc
Override the behavior of title(). Get the user friendly version of the node type.

File

handlers/views_handler_argument_string.inc, line 254

Class

views_handler_argument_string
Basic argument handler to implement string arguments that may have length limits.

Code

function title() {
    $this->argument = $this->case_transform($this->argument, 'case');
    if (!empty($this->options['transform_dash'])) {
        $this->argument = strtr($this->argument, '-', ' ');
    }
    if (!empty($this->options['break_phrase'])) {
        views_break_phrase_string($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());
}