public function GroupByNumeric::query

Same name in this branch
  1. 9.x drupal/core/modules/views/lib/Drupal/views/Plugin/views/argument/GroupByNumeric.php \Drupal\views\Plugin\views\argument\GroupByNumeric::query()
  2. 9.x drupal/core/modules/views/lib/Drupal/views/Plugin/views/sort/GroupByNumeric.php \Drupal\views\Plugin\views\sort\GroupByNumeric::query()
  3. 9.x drupal/core/modules/views/lib/Drupal/views/Plugin/views/filter/GroupByNumeric.php \Drupal\views\Plugin\views\filter\GroupByNumeric::query()

Set up the query for this argument.

The argument sent may be found at $this->argument.

Overrides ArgumentPluginBase::query

File

drupal/core/modules/views/lib/Drupal/views/Plugin/views/argument/GroupByNumeric.php, line 23
Definition of Drupal\views\Plugin\views\argument\GroupByNumeric.

Class

GroupByNumeric
Simple handler for arguments using group by.

Namespace

Drupal\views\Plugin\views\argument

Code

public function query($group_by = FALSE) {
  $this
    ->ensureMyTable();
  $field = $this
    ->getField();
  $placeholder = $this
    ->placeholder();
  $this->query
    ->add_having_expression(0, "{$field} = {$placeholder}", array(
    $placeholder => $this->argument,
  ));
}