You are here

public function StylePluginBase::query in Views (for Drupal 7) 8.3

Add anything to the query that we might need to.

Overrides PluginBase::query

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

File

lib/Drupal/views/Plugin/views/style/StylePluginBase.php, line 677
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->row_plugin)) {
    $this->row_plugin
      ->query();
  }
}