Refactoring the paginator class again...

This commit is contained in:
Taylor Otwell 2011-07-25 12:16:27 -07:00
parent dac63a50c6
commit 44db0e72f9
1 changed files with 10 additions and 10 deletions

View File

@ -187,6 +187,16 @@ private function dots()
return HTML::span('...', array('class' => 'dots')).' ';
}
/**
* Determine the last page number based on the total pages and per page limit.
*
* @return int
*/
private function last_page()
{
return ceil($this->total / $this->per_page);
}
/**
* Build a range of page links.
*
@ -208,16 +218,6 @@ private function range($start, $end)
return $pages;
}
/**
* Determine the last page number based on the total pages and per page limit.
*
* @return int
*/
private function last_page()
{
return ceil($this->total / $this->per_page);
}
/**
* Set the language that should be used when generating page links.
*