You are here

protected function ViewsTestCase::orderResultSet in Views (for Drupal 7) 6.3

Same name and namespace in other branches
  1. 7.3 tests/views_query.test \ViewsTestCase::orderResultSet()

Helper function: order an array of array based on a column.

File

tests/views_query.test, line 62
Tests for Views query features.

Class

ViewsTestCase
Abstract class for views testing

Code

protected function orderResultSet($result_set, $column, $reverse = FALSE) {
  $this->sort_column = $column;
  $this->sort_order = $reverse ? -1 : 1;
  usort($result_set, array(
    $this,
    'helperCompareFunction',
  ));
  return $result_set;
}