Browse Source

add ability to specify the language on the paginator.

Taylor Otwell 13 years ago
parent
commit
dfb3d35f16
1 changed files with 22 additions and 3 deletions
  1. 22 3
      laravel/paginator.php

+ 22 - 3
laravel/paginator.php

@@ -53,6 +53,13 @@ class Paginator {
 	 */
 	protected $appendage;
 
+	/**
+	 * The language that should be used when creating the pagination links.
+	 *
+	 * @var string
+	 */
+	protected $language;
+
 	/**
 	 * The "dots" element used in the pagination slider.
 	 *
@@ -274,7 +281,7 @@ class Paginator {
 	{
 		$class = "{$element}_page";
 
-		if (is_null($text)) $text = Lang::line("pagination.{$element}")->get();
+		if (is_null($text)) $text = Lang::line("pagination.{$element}")->get($this->language);
 
 		// Each consumer of this method provides a "disabled" Closure which can
 		// be used to determine if the element should be a span element or an
@@ -348,9 +355,9 @@ class Paginator {
 	 */
 	protected function link($page, $text, $class)
 	{
-		$url = URI::current().'?page='.$page.$this->appendage($this->appends);
+		$query = '?page='.$page.$this->appendage($this->appends);
 
-		return HTML::link($url, $text, compact('class'), Request::secure());
+		return HTML::link(URI::current().$query, $text, compact('class'), Request::secure());
 	}
 
 	/**
@@ -385,4 +392,16 @@ class Paginator {
 		return $this;
 	}
 
+	/**
+	 * Set the language that should be used when creating the pagination links.
+	 *
+	 * @param  string     $language
+	 * @return Paginator
+	 */
+	public function speaks($language)
+	{
+		$this->language = $language;
+		return $this;
+	}
+
 }