Add anything to the query that we might need to.
Overrides PluginBase::query
File
- drupal/core/modules/views/lib/Drupal/views/Plugin/views/style/StylePluginBase.php, line 702
- Definition of Drupal\views\Plugin\views\style\StylePluginBase.
Class
- StylePluginBase
- Base class to define a style plugin handler.
Namespace
Drupal\views\Plugin\views\style
Code
public function query() {
parent::query();
if (isset($this->view->rowPlugin)) {
$this->view->rowPlugin
->query();
}
}