You are here

public function ManyToOneHelper::getJoin in Drupal 8

Same name and namespace in other branches
  1. 9 core/modules/views/src/ManyToOneHelper.php \Drupal\views\ManyToOneHelper::getJoin()
3 calls to ManyToOneHelper::getJoin()
ManyToOneHelper::addTable in core/modules/views/src/ManyToOneHelper.php
Add a table to the query.
ManyToOneHelper::ensureMyTable in core/modules/views/src/ManyToOneHelper.php
Override ensureMyTable so we can control how this joins in. The operator actually has influence over joining.
ManyToOneHelper::summaryJoin in core/modules/views/src/ManyToOneHelper.php
Provide the proper join for summary queries. This is important in part because it will cooperate with other arguments if possible.

File

core/modules/views/src/ManyToOneHelper.php, line 110

Class

ManyToOneHelper
This many to one helper object is used on both arguments and filters.

Namespace

Drupal\views

Code

public function getJoin() {
  return $this->handler
    ->getJoin();
}