You are here

class custom_pagers_plugin_display_simple in Custom Pagers 6

Same name and namespace in other branches
  1. 7 views/custom_pagers_plugin_display_simple.inc \custom_pagers_plugin_display_simple

@file Handler for 'custom_pagers_simple' display.

Hierarchy

Expanded class hierarchy of custom_pagers_plugin_display_simple

1 string reference to 'custom_pagers_plugin_display_simple'
custom_pagers_views_plugins in views/custom_pagers.views.inc
Implementation of hook_views_plugins.

File

views/custom_pagers_plugin_display_simple.inc, line 7
Handler for 'custom_pagers_simple' display.

View source
class custom_pagers_plugin_display_simple extends views_plugin_display {
  function execute() {
    return $this->view
      ->render($this->display->id);
  }
  function render() {
    return !empty($this->view->result) || !empty($this->view->style_plugin->definition['even empty']) ? $this->view->style_plugin
      ->render($this->view->result) : '';
  }

}

Members