Browse Source

added languages method to the request class.

Taylor Otwell 13 years ago
parent
commit
97ac2c8dbf
1 changed files with 10 additions and 0 deletions
  1. 10 0
      laravel/request.php

+ 10 - 0
laravel/request.php

@@ -125,6 +125,16 @@ class Request {
 		return in_array($type, static::accept());
 		return in_array($type, static::accept());
 	}
 	}
 
 
+	/**
+	 * Get the languages accepted by the client's browser.
+	 *
+	 * @return array
+	 */
+	public static function languages()
+	{
+		return static::foundation()->getLanguages();
+	}
+
 	/**
 	/**
 	 * Determine if the current request is using HTTPS.
 	 * Determine if the current request is using HTTPS.
 	 *
 	 *