public function QueryTest::build

Implements Drupal\views\Plugin\views\query\QueryPluginBase::build().

Parameters

Drupal\views\ViewExecutable $view:

Overrides QueryPluginBase::build

File

drupal/core/modules/views/tests/views_test_data/lib/Drupal/views_test_data/Plugin/views/query/QueryTest.php, line 91
Definition of 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 build(ViewExecutable $view) {
  $this->view = $view;

  // @todo Support pagers for know, a php based one would probably match.
  // @todo You could add a string representatin of the query.
  $this->view->build_info['query'] = "";
  $this->view->build_info['count_query'] = "";
}