lang.php 3.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165
  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. * The array is keyed by [$language.$file].
  13. *
  14. * @var array
  15. */
  16. private static $lines = array();
  17. /**
  18. * The key of the line that is being requested.
  19. *
  20. * @var string
  21. */
  22. private $key;
  23. /**
  24. * The place-holder replacements.
  25. *
  26. * @var array
  27. */
  28. private $replacements = array();
  29. /**
  30. * Create a new Lang instance.
  31. *
  32. * @param string $line
  33. * @return void
  34. */
  35. public function __construct($key)
  36. {
  37. $this->key = $key;
  38. }
  39. /**
  40. * Create a Lang instance for a language line.
  41. *
  42. * @param string $key
  43. * @return Lang
  44. */
  45. public static function line($key)
  46. {
  47. return new static($key);
  48. }
  49. /**
  50. * Get the language line for a given language.
  51. *
  52. * @param string $language
  53. * @return string
  54. */
  55. public function get($language = null)
  56. {
  57. if (is_null($language))
  58. {
  59. $language = Config::get('application.language');
  60. }
  61. list($file, $line) = $this->parse($this->key);
  62. $this->load($file, $language);
  63. // --------------------------------------------------------------
  64. // Get the language line from the appropriate file array.
  65. // --------------------------------------------------------------
  66. if (array_key_exists($line, static::$lines[$language.$file]))
  67. {
  68. $line = static::$lines[$language.$file][$line];
  69. }
  70. else
  71. {
  72. throw new \Exception("Language line [$line] does not exist for language [$language]");
  73. }
  74. // --------------------------------------------------------------
  75. // Make all place-holder replacements. Place-holders are prefixed
  76. // with a colon for convenient location.
  77. // --------------------------------------------------------------
  78. foreach ($this->replacements as $key => $value)
  79. {
  80. $line = str_replace(':'.$key, $value, $line);
  81. }
  82. return $line;
  83. }
  84. /**
  85. * Parse a language key.
  86. *
  87. * @param string $key
  88. * @return array
  89. */
  90. private function parse($key)
  91. {
  92. // --------------------------------------------------------------
  93. // The left side of the dot is the file name, while the right
  94. // side of the dot is the item within that file being requested.
  95. // --------------------------------------------------------------
  96. $segments = explode('.', $key);
  97. if (count($segments) < 2)
  98. {
  99. throw new \Exception("Invalid language key [$key].");
  100. }
  101. return array($segments[0], implode('.', array_slice($segments, 1)));
  102. }
  103. /**
  104. * Load a language file.
  105. *
  106. * @param string $file
  107. * @param string $language
  108. * @return void
  109. */
  110. private function load($file, $language)
  111. {
  112. // --------------------------------------------------------------
  113. // If we have already loaded the language file, bail out.
  114. // --------------------------------------------------------------
  115. if (in_array($language.$file, static::$loaded))
  116. {
  117. return;
  118. }
  119. // --------------------------------------------------------------
  120. // Load the language file into the array of lines. The array
  121. // is keyed by the language and file name.
  122. // --------------------------------------------------------------
  123. if (file_exists($path = APP_PATH.'lang/'.$language.'/'.$file.EXT))
  124. {
  125. static::$lines[$language.$file] = require $path;
  126. }
  127. else
  128. {
  129. throw new \Exception("Language file [$file] does not exist for language [$language].");
  130. }
  131. static::$loaded[] = $language.$file;
  132. }
  133. /**
  134. * Set the place-holder replacements.
  135. *
  136. * @param array $replacements
  137. * @return Lang
  138. */
  139. public function replace($replacements)
  140. {
  141. $this->replacements = $replacements;
  142. return $this;
  143. }
  144. }