public QueryBase::aggregate($field, $function, $langcode = NULL, &$alias = NULL)
File
- core/lib/Drupal/Core/Entity/Query/QueryBase.php, line 379
Class
- QueryBase
- The base entity query class.
Namespace
Drupal\Core\Entity\Query
Code
1 2 3 4 5 6 7 8 9 10 11 12 13 14 | public function aggregate( $field , $function , $langcode = NULL, & $alias = NULL) { if (!isset( $alias )) { $alias = $this ->getAggregationAlias( $field , $function ); } $this ->aggregate[ $alias ] = array ( 'field' => $field , 'function' => $function , 'alias' => $alias , 'langcode' => $langcode , ); return $this ; } |
Please login to continue.