You are here

function views_plugin_display_attachment::render_pager in Views (for Drupal 7) 6.3

Same name and namespace in other branches
  1. 6.2 plugins/views_plugin_display_attachment.inc \views_plugin_display_attachment::render_pager()
  2. 7.3 plugins/views_plugin_display_attachment.inc \views_plugin_display_attachment::render_pager()

Not all display plugins will suppert pager rendering.

Overrides views_plugin_display::render_pager

File

plugins/views_plugin_display_attachment.inc, line 273
Contains the attachment display plugin.

Class

views_plugin_display_attachment
The plugin that handles an attachment display.

Code

function render_pager() {
  return !empty($this->use_pager) && $this
    ->get_option('render_pager');
}