Browse Source

Refactoring paginator... added paginator->append method.

Taylor Otwell 13 years ago
parent
commit
bad119a48b
1 changed files with 28 additions and 7 deletions
  1. 28 7
      system/paginator.php

+ 28 - 7
system/paginator.php

@@ -44,6 +44,13 @@ class Paginator {
 	 */
 	public $language;
 
+	/**
+	 * The values that should be appended to the end of the link query strings.
+	 *
+	 * @var array
+	 */
+	public $append = array();
+
 	/**
 	 * Create a new Paginator instance.
 	 *
@@ -124,12 +131,7 @@ class Paginator {
 	{
 		// The hard-coded "7" is to account for all of the constant elements in a sliding range.
 		// Namely: The the current page, the two ellipses, the two beginning pages, and the two ending pages.
-		if ($this->last_page < 7 + ($adjacent * 2))
-		{
-			return $this->range(1, $this->last_page);
-		}
-
-		return $this->slider($adjacent);
+		return ($this->last_page < 7 + ($adjacent * 2)) ? $this->range(1, $this->last_page) : $this->slider($adjacent);
 	}
 
 	/**
@@ -237,7 +239,14 @@ class Paginator {
 	 */
 	private function link($page, $text, $class)
 	{
-		return HTML::link(Request::uri().'?page='.$page, $text, array('class' => $class), Request::is_secure());
+		$append = '';
+
+		foreach ($this->append as $key => $value)
+		{
+			$append .= '&'.$key.'='.$value;
+		}
+
+		return HTML::link(Request::uri().'?page='.$page.$append, $text, array('class' => $class), Request::is_secure());
 	}
 
 	/**
@@ -252,4 +261,16 @@ class Paginator {
 		return $this;
 	}
 
+	/**
+	 * Set the items that should be appended to the link query strings.
+	 *
+	 * @param  array      $values
+	 * @return Paginator
+	 */
+	public function append($values)
+	{
+		$this->append = $values;
+		return $this;
+	}
+
 }