function QueryBase::aggregate
Same name in other branches
- 8.9.x core/lib/Drupal/Core/Entity/Query/QueryBase.php \Drupal\Core\Entity\Query\QueryBase::aggregate()
- 10 core/lib/Drupal/Core/Entity/Query/QueryBase.php \Drupal\Core\Entity\Query\QueryBase::aggregate()
- 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 399
Class
- QueryBase
- The base entity query class.
Namespace
Drupal\Core\Entity\QueryCode
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.