You are here

public function views_handler_argument_string::title_query 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_query()

Override for specific title lookups.

1 call to views_handler_argument_string::title_query()
views_handler_argument_string::title in handlers/views_handler_argument_string.inc
Get the title this argument will assign the view, given the argument.

File

handlers/views_handler_argument_string.inc, line 292
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_query() {
  return drupal_map_assoc($this->value, 'check_plain');
}