function ManyToOne::title_query in Views (for Drupal 7) 8.3
Override for specific title lookups.
1 call to ManyToOne::title_query()
- ManyToOne::title in 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 lib/
Views/ taxonomy/ Plugin/ views/ argument/ IndexTid.php - Override for specific title lookups.
- RolesRid::title_query in lib/
Views/ user/ Plugin/ views/ argument/ RolesRid.php - Override for specific title lookups.
File
- 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\argumentCode
function title_query() {
return $this->value;
}