function ManyToOne::title_query

Override for specific title lookups.

1 call to ManyToOne::title_query()
ManyToOne::title in drupal/core/modules/views/lib/Drupal/views/Plugin/views/argument/ManyToOne.php
Get the title this argument will assign the view, given the argument.
2 methods override ManyToOne::title_query()
IndexTid::title_query in drupal/core/modules/taxonomy/lib/Drupal/taxonomy/Plugin/views/argument/IndexTid.php
Override for specific title lookups.
RolesRid::title_query in drupal/core/modules/user/lib/Drupal/user/Plugin/views/argument/RolesRid.php
Override for specific title lookups.

File

drupal/core/modules/views/lib/Drupal/views/Plugin/views/argument/ManyToOne.php, line 196
Definition of Drupal\views\Plugin\views\argument\ManyToOne.

Class

ManyToOne
An argument handler for use in fields that have a many to one relationship with the table(s) to the left. This adds a bunch of options that are reasonably common with this type of relationship. Definition terms:

Namespace

Drupal\views\Plugin\views\argument

Code

function title_query() {
  return $this->value;
}