function views_plugin_display_attachment::render_pager in Views (for Drupal 7) 6.2
Same name and namespace in other branches
- 6.3 plugins/views_plugin_display_attachment.inc \views_plugin_display_attachment::render_pager()
- 7.3 plugins/views_plugin_display_attachment.inc \views_plugin_display_attachment::render_pager()
Does the display render the pager if it has it enabled?
Overrides views_plugin_display::render_pager
File
- plugins/
views_plugin_display_attachment.inc, line 275 - 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');
}