function views_handler_argument_string::title_query
Same name in other branches
- 6.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 292
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');
}