lang.php 2.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142
  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 = null)
  58. {
  59. if (is_null($language))
  60. {
  61. $language = Config::get('application.language');
  62. }
  63. list($module, $file, $line) = $this->parse($this->key, $language);
  64. $this->load($module, $file, $language);
  65. if ( ! isset(static::$lines[$module][$language.$file][$line]))
  66. {
  67. return is_callable($default) ? call_user_func($default) : $default;
  68. }
  69. $line = static::$lines[$module][$language.$file][$line];
  70. foreach ($this->replacements as $key => $value)
  71. {
  72. $line = str_replace(':'.$key, $value, $line);
  73. }
  74. return $line;
  75. }
  76. /**
  77. * Parse a language key.
  78. *
  79. * @param string $key
  80. * @param string $language
  81. * @return array
  82. */
  83. private function parse($key, $language)
  84. {
  85. $module = (strpos($key, '::') !== false) ? substr($key, 0, strpos($key, ':')) : 'application';
  86. if ($module != 'application')
  87. {
  88. $key = substr($key, strpos($key, ':') + 2);
  89. }
  90. if (count($segments = explode('.', $key)) > 1)
  91. {
  92. return array($module, $segments[0], $segments[1]);
  93. }
  94. throw new \Exception("Invalid language line [$key]. A specific line must be specified.");
  95. }
  96. /**
  97. * Load a language file.
  98. *
  99. * @param string $module
  100. * @param string $file
  101. * @param string $language
  102. * @return void
  103. */
  104. private function load($module, $file, $language)
  105. {
  106. if (isset(static::$lines[$module][$language.$file])) return;
  107. $path = ($module === 'application') ? LANG_PATH : MODULE_PATH.$module.'/lang/';
  108. if (file_exists($path = $path.$language.'/'.$file.EXT))
  109. {
  110. static::$lines[$module][$language.$file] = require $path;
  111. }
  112. }
  113. /**
  114. * Get the string content of the language line.
  115. */
  116. public function __toString()
  117. {
  118. return $this->get();
  119. }
  120. }