You are here

protected function ViewTestBase::orderResultSet in Drupal 10

Same name and namespace in other branches
  1. 8 core/modules/views/tests/src/Functional/ViewTestBase.php \Drupal\Tests\views\Functional\ViewTestBase::orderResultSet()
  2. 9 core/modules/views/tests/src/Functional/ViewTestBase.php \Drupal\Tests\views\Functional\ViewTestBase::orderResultSet()

Orders a nested array containing a result set based on a given column.

Parameters

array $result_set: An array of rows from a result set, with each row as an associative array keyed by column name.

string $column: The column name by which to sort the result set.

bool $reverse: (optional) Boolean indicating whether to sort the result set in reverse order. Defaults to FALSE.

Return value

array The sorted result set.

File

core/modules/views/tests/src/Functional/ViewTestBase.php, line 80

Class

ViewTestBase
Defines a base class for Views testing in the full web test environment.

Namespace

Drupal\Tests\views\Functional

Code

protected function orderResultSet($result_set, $column, $reverse = FALSE) {
  $order = $reverse ? -1 : 1;
  usort($result_set, function ($a, $b) use ($column, $order) {
    return $order * ($a[$column] <=> $b[$column]);
  });
  return $result_set;
}