1 views_plugin_style_summary_jump_menu.inc views_plugin_style_summary_jump_menu::query()

Add anything to the query that we might need to.

Overrides views_plugin_style::query

File

core/modules/views/plugins/views_plugin_style_summary_jump_menu.inc, line 28
Contains the default summary style plugin, which displays items in an HTML list.

Class

views_plugin_style_summary_jump_menu
The default style plugin for summaries.

Code

function query() {
  // Copy the offset option.
  $pager = array(
    'type' => 'none',
    'options' => $this->display->handler->options['pager']['options'],
  );
  $this->display->handler->set_option('pager', $pager);
}