You are here

function custom_pagers_plugin_display_simple::render in Custom Pagers 7

Same name and namespace in other branches
  1. 6 views/custom_pagers_plugin_display_simple.inc \custom_pagers_plugin_display_simple::render()

Render this display.

Overrides views_plugin_display::render

File

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

Class

custom_pagers_plugin_display_simple
@file Handler for 'custom_pagers_simple' display.

Code

function render() {
  return !empty($this->view->result) || !empty($this->view->style_plugin->definition['even empty']) ? $this->view->style_plugin
    ->render($this->view->result) : '';
}