public function String::titleQuery

Override for specific title lookups.

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

File

drupal/core/modules/views/lib/Drupal/views/Plugin/views/argument/String.php, line 287
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

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