function ManyToOne::summaryQuery
Same name in other branches
- 8.9.x core/modules/views/src/Plugin/views/argument/ManyToOne.php \Drupal\views\Plugin\views\argument\ManyToOne::summaryQuery()
- 10 core/modules/views/src/Plugin/views/argument/ManyToOne.php \Drupal\views\Plugin\views\argument\ManyToOne::summaryQuery()
- 11.x core/modules/views/src/Plugin/views/argument/ManyToOne.php \Drupal\views\Plugin\views\argument\ManyToOne::summaryQuery()
Overrides ArgumentPluginBase::summaryQuery
File
-
core/
modules/ views/ src/ Plugin/ views/ argument/ ManyToOne.php, line 155
Class
- ManyToOne
- Argument handler for many to one relationships.
Namespace
Drupal\views\Plugin\views\argumentCode
protected function summaryQuery() {
$field = $this->table . '.' . $this->field;
$join = $this->getJoin();
if (!empty($this->options['require_value'])) {
$join->type = 'INNER';
}
if (empty($this->options['add_table']) || empty($this->view->many_to_one_tables[$field])) {
$this->tableAlias = $this->query
->ensureTable($this->table, $this->relationship, $join);
}
else {
$this->tableAlias = $this->helper
->summaryJoin();
}
// Add the field.
$this->base_alias = $this->query
->addField($this->tableAlias, $this->realField);
$this->summaryNameField();
return $this->summaryBasics();
}
Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.