Commit 44db0e72 authored by Taylor Otwell's avatar Taylor Otwell

Refactoring the paginator class again...

parent dac63a50
......@@ -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.
*
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment