public function SelectExtender::getOrderBy in Drupal 8
Same name and namespace in other branches
- 9 core/lib/Drupal/Core/Database/Query/SelectExtender.php \Drupal\Core\Database\Query\SelectExtender::getOrderBy()
Returns a reference to the order by array for this query.
Because this method returns by reference, alter hooks may edit the order-by array directly to make their changes. If just adding additional ordering fields, however, the use of orderBy() is preferred.
Note that this method must be called by reference as well:
$fields =& $query
->getOrderBy();
Return value
A reference to the expression array structure.
Overrides SelectInterface::getOrderBy
1 call to SelectExtender::getOrderBy()
- SearchQuery::execute in core/
modules/ search/ src/ SearchQuery.php - Executes the search.
File
- core/
lib/ Drupal/ Core/ Database/ Query/ SelectExtender.php, line 244
Class
- SelectExtender
- The base extender class for Select queries.
Namespace
Drupal\Core\Database\QueryCode
public function &getOrderBy() {
return $this->query
->getOrderBy();
}