lang.php 4.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178
  1. <?php namespace System;
  2. class Lang {
  3. /**
  4. * All of the loaded language files.
  5. *
  6. * @var array
  7. */
  8. private static $loaded = array();
  9. /**
  10. * All of the loaded language lines.
  11. *
  12. * @var array
  13. */
  14. private static $lines = array();
  15. /**
  16. * The key of the line that is being requested.
  17. *
  18. * @var string
  19. */
  20. private $key;
  21. /**
  22. * The place-holder replacements.
  23. *
  24. * @var array
  25. */
  26. private $replacements = array();
  27. /**
  28. * Create a new Lang instance.
  29. *
  30. * @param string $line
  31. * @return void
  32. */
  33. public function __construct($key)
  34. {
  35. $this->key = $key;
  36. }
  37. /**
  38. * Create a Lang instance for a language line.
  39. *
  40. * @param string $key
  41. * @return Lang
  42. */
  43. public static function line($key)
  44. {
  45. return new static($key);
  46. }
  47. /**
  48. * Get the language line for a given language.
  49. *
  50. * @param string $language
  51. * @return string
  52. */
  53. public function get($language = null)
  54. {
  55. // --------------------------------------------------------------
  56. // If no language was specified, use the default language.
  57. // --------------------------------------------------------------
  58. if (is_null($language))
  59. {
  60. $language = Config::get('application.language');
  61. }
  62. // --------------------------------------------------------------
  63. // Extract the file and item from the key.
  64. // --------------------------------------------------------------
  65. list($file, $line) = $this->parse($this->key);
  66. // --------------------------------------------------------------
  67. // Load the language file.
  68. // --------------------------------------------------------------
  69. $this->load($file, $language);
  70. // --------------------------------------------------------------
  71. // Get the language line.
  72. // --------------------------------------------------------------
  73. if (array_key_exists($line, static::$lines[$language.$file]))
  74. {
  75. $line = static::$lines[$language.$file][$line];
  76. }
  77. else
  78. {
  79. throw new \Exception("Language line [$line] does not exist for language [$language]");
  80. }
  81. // --------------------------------------------------------------
  82. // Make all place-holder replacements.
  83. // --------------------------------------------------------------
  84. foreach ($this->replacements as $key => $value)
  85. {
  86. $line = str_replace(':'.$key, $value, $line);
  87. }
  88. return $line;
  89. }
  90. /**
  91. * Parse a language key.
  92. *
  93. * @param string $key
  94. * @return array
  95. */
  96. private function parse($key)
  97. {
  98. // ---------------------------------------------
  99. // Get the key segments.
  100. // ---------------------------------------------
  101. $segments = explode('.', $key);
  102. // ---------------------------------------------
  103. // Validate the key format.
  104. // ---------------------------------------------
  105. if (count($segments) < 2)
  106. {
  107. throw new \Exception("Invalid language key [$key].");
  108. }
  109. // ---------------------------------------------
  110. // Return the file and item name.
  111. // ---------------------------------------------
  112. return array($segments[0], implode('.', array_slice($segments, 1)));
  113. }
  114. /**
  115. * Load a language file.
  116. *
  117. * @param string $file
  118. * @param string $language
  119. * @return void
  120. */
  121. private function load($file, $language)
  122. {
  123. // --------------------------------------------------------------
  124. // Do not load the file if it has already been loaded.
  125. // --------------------------------------------------------------
  126. if (in_array($language.$file, static::$loaded))
  127. {
  128. return;
  129. }
  130. // --------------------------------------------------------------
  131. // Does the language file exist?
  132. // --------------------------------------------------------------
  133. if (file_exists($path = APP_PATH.'lang/'.$language.'/'.$file.EXT))
  134. {
  135. static::$lines[$language.$file] = require $path;
  136. }
  137. else
  138. {
  139. throw new \Exception("Language file [$file] does not exist for language [$language].");
  140. }
  141. // --------------------------------------------------------------
  142. // Add the file to the array of loaded files.
  143. // --------------------------------------------------------------
  144. static::$loaded[] = $language.$file;
  145. }
  146. /**
  147. * Set the place-holder replacements.
  148. *
  149. * @param array $replacements
  150. * @return Lang
  151. */
  152. public function replace($replacements)
  153. {
  154. $this->replacements = $replacements;
  155. return $this;
  156. }
  157. }