You are here

public function QueryTest::build in Drupal 10

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

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

Parameters

\Drupal\views\ViewExecutable $view: The view executable.

File

core/modules/views/tests/modules/views_test_data/src/Plugin/views/query/QueryTest.php, line 87

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 representation of the query.
  $this->view->build_info['query'] = "";
  $this->view->build_info['count_query'] = "";
}