lang.php 3.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167
  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. if (is_null($language))
  56. {
  57. $language = Config::get('application.language');
  58. }
  59. // -----------------------------------------------------
  60. // Parse the key to separate the file and key name.
  61. // -----------------------------------------------------
  62. list($file, $line) = $this->parse($this->key);
  63. // -----------------------------------------------------
  64. // Load the appropriate language file.
  65. // -----------------------------------------------------
  66. $this->load($file, $language);
  67. // --------------------------------------------------------------
  68. // Get the language line.
  69. // --------------------------------------------------------------
  70. if (array_key_exists($line, static::$lines[$language.$file]))
  71. {
  72. $line = static::$lines[$language.$file][$line];
  73. }
  74. else
  75. {
  76. throw new \Exception("Language line [$line] does not exist for language [$language]");
  77. }
  78. // --------------------------------------------------------------
  79. // Make all place-holder replacements.
  80. // --------------------------------------------------------------
  81. foreach ($this->replacements as $key => $value)
  82. {
  83. $line = str_replace(':'.$key, $value, $line);
  84. }
  85. return $line;
  86. }
  87. /**
  88. * Parse a language key.
  89. *
  90. * @param string $key
  91. * @return array
  92. */
  93. private function parse($key)
  94. {
  95. $segments = explode('.', $key);
  96. if (count($segments) < 2)
  97. {
  98. throw new \Exception("Invalid language key [$key].");
  99. }
  100. // --------------------------------------------------------------
  101. // The left side of the dot is the file name, while the right
  102. // side of the dot is the item within that file being requested.
  103. // --------------------------------------------------------------
  104. return array($segments[0], implode('.', array_slice($segments, 1)));
  105. }
  106. /**
  107. * Load a language file.
  108. *
  109. * @param string $file
  110. * @param string $language
  111. * @return void
  112. */
  113. private function load($file, $language)
  114. {
  115. // --------------------------------------------------------------
  116. // If we have already loaded the language file, bail out.
  117. // --------------------------------------------------------------
  118. if (in_array($language.$file, static::$loaded))
  119. {
  120. return;
  121. }
  122. // --------------------------------------------------------------
  123. // Load the language file into the array of lines.
  124. // --------------------------------------------------------------
  125. if (file_exists($path = APP_PATH.'lang/'.$language.'/'.$file.EXT))
  126. {
  127. static::$lines[$language.$file] = require $path;
  128. }
  129. else
  130. {
  131. throw new \Exception("Language file [$file] does not exist for language [$language].");
  132. }
  133. static::$loaded[] = $language.$file;
  134. }
  135. /**
  136. * Set the place-holder replacements.
  137. *
  138. * @param array $replacements
  139. * @return Lang
  140. */
  141. public function replace($replacements)
  142. {
  143. $this->replacements = $replacements;
  144. return $this;
  145. }
  146. }