You are here

public function QueryTest::addOrderBy in Zircon Profile 8

Same name and namespace in other branches
  1. 8.0 core/modules/views/tests/modules/views_test_data/src/Plugin/views/query/QueryTest.php \Drupal\views_test_data\Plugin\views\query\QueryTest::addOrderBy()

File

core/modules/views/tests/modules/views_test_data/src/Plugin/views/query/QueryTest.php, line 78
Contains \Drupal\views_test_data\Plugin\views\query\QueryTest.

Class

QueryTest
Defines a query test plugin.

Namespace

Drupal\views_test_data\Plugin\views\query

Code

public function addOrderBy($table, $field = NULL, $order = 'ASC', $alias = '', $params = array()) {
  $this->orderBy = array(
    'field' => $field,
    'order' => $order,
  );
}