function QueryBase::aggregate

Same name and namespace in other branches
  1. 9 core/lib/Drupal/Core/Entity/Query/QueryBase.php \Drupal\Core\Entity\Query\QueryBase::aggregate()
  2. 10 core/lib/Drupal/Core/Entity/Query/QueryBase.php \Drupal\Core\Entity\Query\QueryBase::aggregate()
  3. 11.x core/lib/Drupal/Core/Entity/Query/QueryBase.php \Drupal\Core\Entity\Query\QueryBase::aggregate()
2 calls to QueryBase::aggregate()
QueryBase::conditionAggregate in core/lib/Drupal/Core/Entity/Query/QueryBase.php
QueryBase::sortAggregate in core/lib/Drupal/Core/Entity/Query/QueryBase.php

File

core/lib/Drupal/Core/Entity/Query/QueryBase.php, line 398

Class

QueryBase
The base entity query class.

Namespace

Drupal\Core\Entity\Query

Code

public function aggregate($field, $function, $langcode = NULL, &$alias = NULL) {
    if (!isset($alias)) {
        $alias = $this->getAggregationAlias($field, $function);
    }
    $this->aggregate[$alias] = [
        'field' => $field,
        'function' => $function,
        'alias' => $alias,
        'langcode' => $langcode,
    ];
    return $this;
}

Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.