function ViewsTestCase::orderResultSet

Same name in other branches
  1. 7.x-3.x tests/views_query.test \ViewsTestCase::orderResultSet()

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

File

tests/views_query.test, line 62

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;
}