Refactoring the paginator class again...

This commit is contained in:
Taylor Otwell
2011-07-25 12:16:27 -07:00
parent dac63a50c6
commit 44db0e72f9

View File

@@ -187,6 +187,16 @@ class Paginator {
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 @@ class Paginator {
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.
*