Browse Source

added lang::has method.

Taylor Otwell 13 years ago
parent
commit
a9873a479d
1 changed files with 12 additions and 0 deletions
  1. 12 0
      laravel/lang.php

+ 12 - 0
laravel/lang.php

@@ -73,6 +73,18 @@ class Lang {
 		return new static($key, $replacements, $language);
 	}
 
+	/**
+	 * Determine if a language line exists.
+	 *
+	 * @param  string  $key
+	 * @param  string  $language
+	 * @return bool
+	 */
+	public static function has($key, $language = null)
+	{
+		return ! is_null(static::line($key, array(), $language)->get());
+	}
+
 	/**
 	 * Get the language line as a string.
 	 *