function ManyToOne::summary_query

Build the info for the summary query.

This must:

  • add_groupby: group on this field in order to create summaries.
  • add_field: add a 'num_nodes' field for the count. Usually it will be a count on $view->base_field
  • set_count_field: Reset the count field so we get the right paging.

Return value

The alias used to get the number of records (count) for this entry.

Overrides ArgumentPluginBase::summary_query

File

drupal/core/modules/views/lib/Drupal/views/Plugin/views/argument/ManyToOne.php, line 161
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\argument

Code

function summary_query() {
  $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
      ->ensure_table($this->table, $this->relationship, $join);
  }
  else {
    $this->tableAlias = $this->helper
      ->summary_join();
  }

  // Add the field.
  $this->base_alias = $this->query
    ->add_field($this->tableAlias, $this->realField);
  $this
    ->summary_name_field();
  return $this
    ->summary_basics();
}