You are here

public function QueryBase::sortAggregate in Zircon Profile 8

Same name and namespace in other branches
  1. 8.0 core/lib/Drupal/Core/Entity/Query/QueryBase.php \Drupal\Core\Entity\Query\QueryBase::sortAggregate()

File

core/lib/Drupal/Core/Entity/Query/QueryBase.php, line 412
Contains \Drupal\Core\Entity\Query\QueryBase.

Class

QueryBase
The base entity query class.

Namespace

Drupal\Core\Entity\Query

Code

public function sortAggregate($field, $function, $direction = 'ASC', $langcode = NULL) {
  $alias = $this
    ->getAggregationAlias($field, $function);
  $this->sortAggregate[$alias] = array(
    'field' => $field,
    'function' => $function,
    'direction' => $direction,
    'langcode' => $langcode,
  );
  $this
    ->aggregate($field, $function, $langcode, $alias);
  return $this;
}