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
1 2 3 4 5 6 | 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 ; } |
Please login to continue.