You are here

custom_pagers_plugin_display_simple.inc in Custom Pagers 7

Same filename and directory in other branches
  1. 6 views/custom_pagers_plugin_display_simple.inc

Handler for 'custom_pagers_simple' display.

File

views/custom_pagers_plugin_display_simple.inc
View source
<?php

/**
 * @file
 * Handler for 'custom_pagers_simple' display.
 */
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) : '';
  }

}

Classes

Namesort descending Description
custom_pagers_plugin_display_simple @file Handler for 'custom_pagers_simple' display.