You are here

function views_plugin_style_summary_jump_menu::query in Views (for Drupal 7) 6.3

Same name and namespace in other branches
  1. 6.2 plugins/views_plugin_style_summary_jump_menu.inc \views_plugin_style_summary_jump_menu::query()
  2. 7.3 plugins/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

plugins/views_plugin_style_summary_jump_menu.inc, line 26
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);
}