1 views_plugin_display.inc views_plugin_display::query()

Inject anything into the query that the display handler needs.

Overrides views_plugin::query

File

core/modules/views/plugins/views_plugin_display.inc, line 2548
Contains the base display plugin.

Class

views_plugin_display
The default display plugin handler. Display plugins handle options and basic mechanisms for different output methods.

Code

function query() {
  foreach ($this->extender as $extender) {
    $extender->query();
  }
}