public function QueryTest::build in Views (for Drupal 7) 8.3
Implements Drupal\views\Plugin\views\query\QueryPluginBase::build().
Parameters
Drupal\views\ViewExecutable $view:
Overrides QueryPluginBase::build
File
- tests/
views_test_data/ lib/ Drupal/ views_test_data/ Plugin/ views/ query/ QueryTest.php, line 68 - Definition of Drupal\views_test_data\Plugin\views\query\QueryTest.
Class
- QueryTest
- Defines a query test plugin.
Namespace
Drupal\views_test_data\Plugin\views\queryCode
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'] = "";
}