function ManyToOne::summaryQuery

Same name and namespace in other branches
  1. 9 core/modules/views/src/Plugin/views/argument/ManyToOne.php \Drupal\views\Plugin\views\argument\ManyToOne::summaryQuery()
  2. 10 core/modules/views/src/Plugin/views/argument/ManyToOne.php \Drupal\views\Plugin\views\argument\ManyToOne::summaryQuery()
  3. 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 156

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

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.