public function ManyToOneHelper::getJoin in Views (for Drupal 7) 8.3
3 calls to ManyToOneHelper::getJoin()
- ManyToOneHelper::add_table in lib/
Drupal/ views/ ManyToOneHelper.php - Add a table to the query.
- ManyToOneHelper::ensureMyTable in lib/
Drupal/ views/ ManyToOneHelper.php - Override ensureMyTable so we can control how this joins in. The operator actually has influence over joining.
- ManyToOneHelper::summary_join in lib/
Drupal/ views/ ManyToOneHelper.php - Provide the proper join for summary queries. This is important in part because it will cooperate with other arguments if possible.
File
- lib/
Drupal/ views/ ManyToOneHelper.php, line 114 - Definition of Drupal\views\ManyToOneHelper.
Class
- ManyToOneHelper
- This many to one helper object is used on both arguments and filters.
Namespace
Drupal\viewsCode
public function getJoin() {
return $this->handler
->getJoin();
}