QueryBase::sortAggregate

public QueryBase::sortAggregate($field, $function, $direction = 'ASC', $langcode = NULL)

File

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

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;
}
doc_Drupal
2016-10-29 09:35:44
Comments
Leave a Comment

Please login to continue.