public function StylePluginBase::query

Add anything to the query that we might need to.

Overrides PluginBase::query

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

File

drupal/core/modules/views/lib/Drupal/views/Plugin/views/style/StylePluginBase.php, line 680
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();
  }
}