You are here

function date_views_plugin_pager::has_more_records 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::has_more_records()
  2. 7.2 date_views/includes/date_views_plugin_pager.inc \date_views_plugin_pager::has_more_records()

Because we don't know how many pages there are, we never believe there are more records.

File

date_views/includes/date_views_plugin_pager.inc, line 61
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 has_more_records() {
  return FALSE;
}