lang.php 2.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132
  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. if ( ! array_key_exists($language.$file, static::$lines))
  55. {
  56. // The language file doesn't exist, return the default value.
  57. $line = is_callable($default) ? call_user_func($default) : $default;
  58. }
  59. else
  60. {
  61. $line = Arr::get(static::$lines[$language.$file], $line, $default);
  62. }
  63. foreach ($this->replacements as $key => $value)
  64. {
  65. $line = str_replace(':'.$key, $value, $line);
  66. }
  67. return $line;
  68. }
  69. /**
  70. * Parse a language key.
  71. *
  72. * @param string $key
  73. * @return array
  74. */
  75. private function parse($key)
  76. {
  77. // The left side of the dot is the file name, while the right side of the dot
  78. // is the item within that file being requested.
  79. $segments = explode('.', $key);
  80. if (count($segments) < 2)
  81. {
  82. throw new \Exception("Invalid language key [$key].");
  83. }
  84. return array($segments[0], implode('.', array_slice($segments, 1)));
  85. }
  86. /**
  87. * Load a language file.
  88. *
  89. * @param string $file
  90. * @param string $language
  91. * @return void
  92. */
  93. private function load($file, $language)
  94. {
  95. // If we have already loaded the language file or the file doesn't exist, bail out.
  96. if (array_key_exists($language.$file, static::$lines) or ! file_exists($path = APP_PATH.'lang/'.$language.'/'.$file.EXT))
  97. {
  98. return;
  99. }
  100. static::$lines[$language.$file] = require $path;
  101. }
  102. /**
  103. * Set the place-holder replacements.
  104. *
  105. * @param array $replacements
  106. * @return Lang
  107. */
  108. public function replace($replacements)
  109. {
  110. $this->replacements = $replacements;
  111. return $this;
  112. }
  113. }