lang.php 3.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185
  1. <?php namespace Laravel;
  2. class Lang extends Facade { public static $resolve = 'lang'; }
  3. class Lang_Engine {
  4. /**
  5. * All of the loaded language lines.
  6. *
  7. * The array is keyed by [$language.$file].
  8. *
  9. * @var array
  10. */
  11. private $lines = array();
  12. /**
  13. * The default language being used by the application.
  14. *
  15. * @var string
  16. */
  17. private $language;
  18. /**
  19. * The paths containing the language files.
  20. *
  21. * @var array
  22. */
  23. private $paths;
  24. /**
  25. * The key of the language line being retrieved.
  26. *
  27. * @var string
  28. */
  29. private $key;
  30. /**
  31. * The replacements that should be made on the language line.
  32. *
  33. * @var array
  34. */
  35. private $replacements;
  36. /**
  37. * The language of the line being retrieved.
  38. *
  39. * This is set to the default language when a new line is requested.
  40. * However, it may be changed using the "in" method.
  41. *
  42. * @var string
  43. */
  44. private $line_language;
  45. /**
  46. * Create a new Lang instance.
  47. *
  48. * @param string $language
  49. * @param array $paths
  50. * @return void
  51. */
  52. public function __construct($language, $paths)
  53. {
  54. $this->paths = $paths;
  55. $this->language = $language;
  56. }
  57. /**
  58. * Begin retrieving a new language line.
  59. *
  60. * Language lines are retrieved using "dot" notation. So, asking for the "messages.required" langauge
  61. * line would return the "required" line from the "messages" language file.
  62. *
  63. * @param string $key
  64. * @param array $replacements
  65. * @return Lang
  66. */
  67. public function line($key, $replacements = array())
  68. {
  69. $this->key = $key;
  70. $this->replacements = $replacements;
  71. $this->line_language = $this->language;
  72. return $this;
  73. }
  74. /**
  75. * Get the language line.
  76. *
  77. * A default value may also be specified, which will be returned in the language line doesn't exist.
  78. *
  79. * @param string $language
  80. * @return string
  81. */
  82. public function get($default = null)
  83. {
  84. list($file, $line) = $this->parse($this->key);
  85. if ( ! $this->load($file))
  86. {
  87. return ($default instanceof \Closure) ? call_user_func($default) : $default;
  88. }
  89. $line = Arr::get($this->lines[$this->line_language.$file], $line, $default);
  90. foreach ($this->replacements as $key => $value)
  91. {
  92. $line = str_replace(':'.$key, $value, $line);
  93. }
  94. return $line;
  95. }
  96. /**
  97. * Parse a language key.
  98. *
  99. * Language keys follow a {file}.{key} convention. If a specific language key is not
  100. * specified, an exception will be thrown. Setting entire language files at run-time
  101. * is not currently supported.
  102. *
  103. * @param string $key
  104. * @return array
  105. */
  106. private function parse($key)
  107. {
  108. if (count($segments = explode('.', $key)) > 1)
  109. {
  110. return array($segments[0], implode('.', array_slice($segments, 1)));
  111. }
  112. throw new \Exception("Invalid language line [$key]. A specific line must be specified.");
  113. }
  114. /**
  115. * Load a language file.
  116. *
  117. * If the language file has already been loaded, it will not be loaded again.
  118. *
  119. * @param string $file
  120. * @return bool
  121. */
  122. private function load($file)
  123. {
  124. if (isset($this->lines[$this->line_language.$file])) return;
  125. $language = array();
  126. foreach ($this->paths as $directory)
  127. {
  128. if (file_exists($path = $directory.$this->line_language.'/'.$file.EXT))
  129. {
  130. $language = array_merge($language, require $path);
  131. }
  132. }
  133. if (count($language) > 0)
  134. {
  135. $this->lines[$this->line_language.$file] = $language;
  136. }
  137. return isset($this->lines[$this->line_language.$file]);
  138. }
  139. /**
  140. * Set the language the line should be returned in.
  141. *
  142. * The language specified in this method should correspond to a language directory in your application.
  143. *
  144. * @param string $language
  145. * @return Lang
  146. */
  147. public function in($language)
  148. {
  149. $this->line_language = $line_language;
  150. return $this;
  151. }
  152. /**
  153. * Get the string content of the language line.
  154. */
  155. public function __toString()
  156. {
  157. return $this->get();
  158. }
  159. }