You are here

public function views_handler_argument_string::title in Views (for Drupal 7) 7.3

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

2 methods override 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.
views_handler_argument_vocabulary_machine_name::title in modules/taxonomy/views_handler_argument_vocabulary_machine_name.inc
Override the behavior of title(). Get the name of the vocabulary..

File

handlers/views_handler_argument_string.inc, line 264
Definition of views_handler_argument_string.

Class

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

Code

public function title() {
  $this->argument = $this
    ->case_transform($this->argument, $this->options['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());
}