You are here

public function StylePluginBase::query in Drupal 8

Same name and namespace in other branches
  1. 9 core/modules/views/src/Plugin/views/style/StylePluginBase.php \Drupal\views\Plugin\views\style\StylePluginBase::query()

Add anything to the query that we might need to.

Overrides PluginBase::query

1 method overrides StylePluginBase::query()
DefaultSummary::query in core/modules/views/src/Plugin/views/style/DefaultSummary.php
Add anything to the query that we might need to.

File

core/modules/views/src/Plugin/views/style/StylePluginBase.php, line 836

Class

StylePluginBase
Base class for views style plugins.

Namespace

Drupal\views\Plugin\views\style

Code

public function query() {
  parent::query();
  if (isset($this->view->rowPlugin)) {
    $this->view->rowPlugin
      ->query();
  }
}