You are here

function date_views_plugin_pager::render in Date 8

Same name and namespace in other branches
  1. 7.3 date_views/includes/date_views_plugin_pager.inc \date_views_plugin_pager::render()
  2. 7.2 date_views/includes/date_views_plugin_pager.inc \date_views_plugin_pager::render()

File

date_views/includes/date_views_plugin_pager.inc, line 230
Date pager. Works with a Date argument, the argument filters the view and the pager provides back/next navigation.

Class

date_views_plugin_pager
Example plugin to handle paging by month.

Code

function render($input) {

  // This adds all of our template suggestions based upon the view name and display id.
  $pager_theme = views_theme_functions('date_views_pager', $this->view, $this->display);
  return theme($pager_theme, array(
    'plugin' => $this,
    'input' => $input,
  ));
}