QueryBase::conditionAggregate

public QueryBase::conditionAggregate($field, $function = NULL, $value = NULL, $operator = '=', $langcode = NULL)

File

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

Class

QueryBase
The base entity query class.

Namespace

Drupal\Core\Entity\Query

Code

public function conditionAggregate($field, $function = NULL, $value = NULL, $operator = '=', $langcode = NULL) {
  $this->aggregate($field, $function, $langcode);
  $this->conditionAggregate->condition($field, $function, $value, $operator, $langcode);

  return $this;
}
doc_Drupal
2016-10-29 09:35:40
Comments
Leave a Comment

Please login to continue.