lang.php 2.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135
  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. * Language lines are retrieved using "dot" notation. So, asking for the
  27. * "messages.required" language line would return the "required" line
  28. * from the "messages" language file.
  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.
  49. *
  50. * @param string $language
  51. * @param mixed $default
  52. * @return string
  53. */
  54. public function get($language = null, $default = null)
  55. {
  56. if (is_null($language))
  57. {
  58. $language = Config::get('application.language');
  59. }
  60. list($file, $line) = $this->parse($this->key);
  61. $this->load($file, $language);
  62. if ( ! isset(static::$lines[$language.$file][$line]))
  63. {
  64. return is_callable($default) ? call_user_func($default) : $default;
  65. }
  66. $line = static::$lines[$language.$file][$line];
  67. foreach ($this->replacements as $key => $value)
  68. {
  69. $line = str_replace(':'.$key, $value, $line);
  70. }
  71. return $line;
  72. }
  73. /**
  74. * Parse a language key.
  75. *
  76. * The value on the left side of the dot is the language file name,
  77. * while the right side of the dot is the item within that file.
  78. *
  79. * @param string $key
  80. * @return array
  81. */
  82. private function parse($key)
  83. {
  84. $segments = explode('.', $key);
  85. if (count($segments) < 2)
  86. {
  87. throw new \Exception("Invalid language key [$key].");
  88. }
  89. return array($segments[0], implode('.', array_slice($segments, 1)));
  90. }
  91. /**
  92. * Load a language file.
  93. *
  94. * @param string $file
  95. * @param string $language
  96. * @return void
  97. */
  98. private function load($file, $language)
  99. {
  100. if ( ! array_key_exists($language.$file, static::$lines) and file_exists($path = APP_PATH.'lang/'.$language.'/'.$file.EXT))
  101. {
  102. static::$lines[$language.$file] = require $path;
  103. }
  104. }
  105. /**
  106. * Set the place-holder replacements.
  107. *
  108. * @param array $replacements
  109. * @return Lang
  110. */
  111. public function replace($replacements)
  112. {
  113. $this->replacements = $replacements;
  114. return $this;
  115. }
  116. }