function views_plugin_display::query

Inject anything into the query that the display handler needs.

Overrides views_plugin::query

File

plugins/views_plugin_display.inc, line 2695

Class

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

Code

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