You are here

function String::title_query in Views (for Drupal 7) 8.3

Override for specific title lookups.

1 call to String::title_query()
String::title in lib/Drupal/views/Plugin/views/argument/String.php
Get the title this argument will assign the view, given the argument.

File

lib/Drupal/views/Plugin/views/argument/String.php, line 281
Definition of Drupal\views\Plugin\views\argument\String.

Class

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

Namespace

Drupal\views\Plugin\views\argument

Code

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