123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167 |
- <?php namespace System;
- class Lang {
- /**
- * All of the loaded language files.
- *
- * @var array
- */
- private static $loaded = array();
- /**
- * All of the loaded language lines.
- *
- * @var array
- */
- private static $lines = array();
- /**
- * The key of the line that is being requested.
- *
- * @var string
- */
- private $key;
- /**
- * The place-holder replacements.
- *
- * @var array
- */
- private $replacements = array();
- /**
- * Create a new Lang instance.
- *
- * @param string $line
- * @return void
- */
- public function __construct($key)
- {
- $this->key = $key;
- }
- /**
- * Create a Lang instance for a language line.
- *
- * @param string $key
- * @return Lang
- */
- public static function line($key)
- {
- return new static($key);
- }
- /**
- * Get the language line for a given language.
- *
- * @param string $language
- * @return string
- */
- public function get($language = null)
- {
- if (is_null($language))
- {
- $language = Config::get('application.language');
- }
- // -----------------------------------------------------
- // Parse the key to separate the file and key name.
- // -----------------------------------------------------
- list($file, $line) = $this->parse($this->key);
- // -----------------------------------------------------
- // Load the appropriate language file.
- // -----------------------------------------------------
- $this->load($file, $language);
- // --------------------------------------------------------------
- // Get the language line.
- // --------------------------------------------------------------
- if (array_key_exists($line, static::$lines[$language.$file]))
- {
- $line = static::$lines[$language.$file][$line];
- }
- else
- {
- throw new \Exception("Language line [$line] does not exist for language [$language]");
- }
- // --------------------------------------------------------------
- // Make all place-holder replacements.
- // --------------------------------------------------------------
- foreach ($this->replacements as $key => $value)
- {
- $line = str_replace(':'.$key, $value, $line);
- }
- return $line;
- }
- /**
- * Parse a language key.
- *
- * @param string $key
- * @return array
- */
- private function parse($key)
- {
- $segments = explode('.', $key);
- if (count($segments) < 2)
- {
- throw new \Exception("Invalid language key [$key].");
- }
- // --------------------------------------------------------------
- // The left side of the dot is the file name, while the right
- // side of the dot is the item within that file being requested.
- // --------------------------------------------------------------
- return array($segments[0], implode('.', array_slice($segments, 1)));
- }
- /**
- * Load a language file.
- *
- * @param string $file
- * @param string $language
- * @return void
- */
- private function load($file, $language)
- {
- // --------------------------------------------------------------
- // If we have already loaded the language file, bail out.
- // --------------------------------------------------------------
- if (in_array($language.$file, static::$loaded))
- {
- return;
- }
- // --------------------------------------------------------------
- // Load the language file into the array of lines.
- // --------------------------------------------------------------
- if (file_exists($path = APP_PATH.'lang/'.$language.'/'.$file.EXT))
- {
- static::$lines[$language.$file] = require $path;
- }
- else
- {
- throw new \Exception("Language file [$file] does not exist for language [$language].");
- }
- static::$loaded[] = $language.$file;
- }
- /**
- * Set the place-holder replacements.
- *
- * @param array $replacements
- * @return Lang
- */
- public function replace($replacements)
- {
- $this->replacements = $replacements;
- return $this;
- }
- }
|