You are here

function views_handler_argument_string::title_query in Views (for Drupal 7) 6.3

Same name and namespace in other branches
  1. 7.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 282

Class

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

Code

function title_query() {
  return drupal_map_assoc($this->value, 'check_plain');
}