lang.php 3.4 KB

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