You are here

public function QueryBase::sort in Drupal 9

Same name and namespace in other branches
  1. 8 core/lib/Drupal/Core/Entity/Query/QueryBase.php \Drupal\Core\Entity\Query\QueryBase::sort()

Sorts the result set by a given field.

@todo standardize $direction options in https://www.drupal.org/project/drupal/issues/3079258

Parameters

string $field: Name of a field.

string $direction: (optional) The direction to sort. Allowed values are "ASC" and "DESC". Defaults to "ASC".

string|null $langcode: (optional) The language code allows filtering results by specific language. If omitted (NULL), any translation satisfies the condition.

Return value

$this

Overrides QueryInterface::sort

1 call to QueryBase::sort()
QueryBase::tableSort in core/lib/Drupal/Core/Entity/Query/QueryBase.php
Enables sortable tables for this query.

File

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

Class

QueryBase
The base entity query class.

Namespace

Drupal\Core\Entity\Query

Code

public function sort($field, $direction = 'ASC', $langcode = NULL) {
  $this->sort[] = [
    'field' => $field,
    'direction' => strtoupper($direction),
    'langcode' => $langcode,
  ];
  return $this;
}