lang.php 2.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131
  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. public static $lines = array();
  11. /**
  12. * The key of the line that is being requested.
  13. *
  14. * @var string
  15. */
  16. public $key;
  17. /**
  18. * The place-holder replacements.
  19. *
  20. * @var array
  21. */
  22. public $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 $key
  31. * @param array $replacements
  32. * @return void
  33. */
  34. public function __construct($key, $replacements = array())
  35. {
  36. $this->key = $key;
  37. $this->replacements = $replacements;
  38. }
  39. /**
  40. * Create a Lang instance for a language line.
  41. *
  42. * @param string $key
  43. * @param array $replacements
  44. * @return Lang
  45. */
  46. public static function line($key, $replacements = array())
  47. {
  48. return new static($key, $replacements);
  49. }
  50. /**
  51. * Get the language line.
  52. *
  53. * @param string $language
  54. * @param mixed $default
  55. * @return string
  56. */
  57. public function get($language = null, $default = '')
  58. {
  59. if (is_null($language))
  60. {
  61. $language = Config::get('application.language');
  62. }
  63. list($file, $line) = $this->parse($this->key);
  64. $this->load($file, $language);
  65. $line = Arr::get(static::$lines[$language.$file], $line, $default);
  66. foreach ($this->replacements as $key => $value)
  67. {
  68. $line = str_replace(':'.$key, $value, $line);
  69. }
  70. return $line;
  71. }
  72. /**
  73. * Parse a language key.
  74. *
  75. * The value on the left side of the dot is the language file name,
  76. * while the right side of the dot is the item within that file.
  77. *
  78. * @param string $key
  79. * @return array
  80. */
  81. private function parse($key)
  82. {
  83. $segments = explode('.', $key);
  84. if (count($segments) < 2)
  85. {
  86. throw new \Exception("Invalid language key [$key].");
  87. }
  88. return array($segments[0], implode('.', array_slice($segments, 1)));
  89. }
  90. /**
  91. * Load a language file.
  92. *
  93. * @param string $file
  94. * @param string $language
  95. * @return void
  96. */
  97. private function load($file, $language)
  98. {
  99. if (array_key_exists($language.$file, static::$lines)) return;
  100. if (file_exists($path = LANG_PATH.$language.'/'.$file.EXT))
  101. {
  102. static::$lines[$language.$file] = require $path;
  103. }
  104. }
  105. /**
  106. * Get the string content of the language line.
  107. */
  108. public function __toString()
  109. {
  110. return $this->get();
  111. }
  112. }