Get the items per page from the pager.
public function getItemsPerPage() {
// If the pager is already initialized, pass it through to the pager.
if (!empty($this->pager)) {
return $this->pager
->get_items_per_page();
}
if (isset($this->items_per_page)) {
return $this->items_per_page;
}
}