Determine if there are more records available.
This is primarily used to control the display of a more link.
public function hasMoreRecords() {
return $this
->getItemsPerPage() && $this->total_items > (intval($this->current_page) + 1) * $this
->getItemsPerPage();
}