You are here

function views_handler_argument_numeric::title in Views (for Drupal 7) 6.2

Same name and namespace in other branches
  1. 6.3 handlers/views_handler_argument_numeric.inc \views_handler_argument_numeric::title()
  2. 7.3 handlers/views_handler_argument_numeric.inc \views_handler_argument_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 views_handler_argument::title

File

handlers/views_handler_argument_numeric.inc, line 42
Contains the numeric argument handler.

Class

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

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