1 views_plugin_style.inc views_plugin_style::query()

Add anything to the query that we might need to.

Overrides views_plugin::query

File

core/modules/views/plugins/views_plugin_style.inc, line 600
Definition of views_plugin_style.

Class

views_plugin_style
Base class to define a style plugin handler.

Code

function query() {
  parent::query();
  if (isset($this->row_plugin)) {
    $this->row_plugin->query();
  }
}