Tweaking paginator class.

This commit is contained in:
Taylor Otwell 2011-07-25 13:29:53 -07:00
parent 721693a52a
commit 873e4ee2d7
1 changed files with 3 additions and 1 deletions

View File

@ -47,10 +47,12 @@ class Paginator {
*/ */
public function __construct($results, $total, $per_page) public function __construct($results, $total, $per_page)
{ {
$this->page = static::page($total, $per_page);
$this->per_page = $per_page; $this->per_page = $per_page;
$this->results = $results; $this->results = $results;
$this->total = $total; $this->total = $total;
// Determine the current page based on the total results and per page limit.
$this->page = static::page($this->total, $this->per_page);
} }
/** /**