protected Query::finish()
Finish the query by adding fields, GROUP BY and range.
Return value
\Drupal\Core\Entity\Query\Sql\Query Returns the called object.
File
- core/lib/Drupal/Core/Entity/Query/Sql/Query.php, line 223
Class
- Query
- The SQL storage entity query class.
Namespace
Drupal\Core\Entity\Query\Sql
Code
1 2 3 4 5 6 7 8 9 10 11 12 13 | protected function finish() { $this ->initializePager(); if ( $this ->range) { $this ->sqlQuery->range( $this ->range[ 'start' ], $this ->range[ 'length' ]); } foreach ( $this ->sqlGroupBy as $field ) { $this ->sqlQuery->groupBy( $field ); } foreach ( $this ->sqlFields as $field ) { $this ->sqlQuery->addField( $field [0], $field [1], isset( $field [2]) ? $field [2] : NULL); } return $this ; } |
Please login to continue.