function views_handler_argument_string::title_query

Same name in other branches
  1. 7.x-3.x 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');
}