You are here

public function views_plugin_style::query in Views (for Drupal 7) 7.3

Same name and namespace in other branches
  1. 6.3 plugins/views_plugin_style.inc \views_plugin_style::query()
  2. 6.2 plugins/views_plugin_style.inc \views_plugin_style::query()

Add anything to the query that we might need to.

Overrides views_plugin::query

2 methods override views_plugin_style::query()
views_plugin_style_summary::query in plugins/views_plugin_style_summary.inc
Add anything to the query that we might need to.
views_plugin_style_summary_jump_menu::query in plugins/views_plugin_style_summary_jump_menu.inc
Add anything to the query that we might need to.

File

plugins/views_plugin_style.inc, line 626
Definition of views_plugin_style.

Class

views_plugin_style
Base class to define a style plugin handler.

Code

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