Browse Source

Refactoring the paginator class again...

Taylor Otwell 13 years ago
parent
commit
44db0e72f9
1 changed files with 10 additions and 10 deletions
  1. 10 10
      system/paginator.php

+ 10 - 10
system/paginator.php

@@ -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.
 	 *