Same name and namespace in other branches
  1. 8.9.x core/lib/Drupal/Core/Entity/Query/QueryInterface.php \Drupal\Core\Entity\Query\QueryInterface::sort()
  2. 9 core/lib/Drupal/Core/Entity/Query/QueryInterface.php \Drupal\Core\Entity\Query\QueryInterface::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

File

core/lib/Drupal/Core/Entity/Query/QueryInterface.php, line 191

Class

QueryInterface
Interface for entity queries.

Namespace

Drupal\Core\Entity\Query

Code

public function sort($field, $direction = 'ASC', $langcode = NULL);