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