Zeile 25 | Zeile 25 |
---|
* @var string */ public $language;
|
* @var string */ public $language;
|
| /** * The fallback language we are using. * * @var string */ public $fallback = 'english';
|
/** * Information about the current language.
| /** * Information about the current language.
|
Zeile 112 | Zeile 119 |
---|
} } $this->language = $language."/{$area}";
|
} } $this->language = $language."/{$area}";
|
| $this->fallback = $this->fallback."/{$area}";
|
} }
| } }
|
Zeile 136 | Zeile 144 |
---|
{ require_once $lfile; }
|
{ require_once $lfile; }
|
| elseif(file_exists($this->path."/".$this->fallback."/".$section.".lang.php")) { require_once $this->path."/".$this->fallback."/".$section.".lang.php"; } // Deprecated! This fallback will be removed in future versions!
|
elseif(file_exists($this->path."/english/".$section.".lang.php")) { require_once $this->path."/english/".$section.".lang.php"; } else
|
elseif(file_exists($this->path."/english/".$section.".lang.php")) { require_once $this->path."/english/".$section.".lang.php"; } else
|
{
| {
|
if($supress_error != true) { die("$lfile does not exist");
|
if($supress_error != true) { die("$lfile does not exist");
|
} }
| } }
|
// We must unite and protect our language variables! $lang_keys_ignore = array('language', 'path', 'settings');
| // We must unite and protect our language variables! $lang_keys_ignore = array('language', 'path', 'settings');
|
Zeile 164 | Zeile 177 |
---|
} function sprintf($string)
|
} function sprintf($string)
|
{
| {
|
$arg_list = func_get_args(); $num_args = count($arg_list);
| $arg_list = func_get_args(); $num_args = count($arg_list);
|
Zeile 210 | Zeile 223 |
---|
*/ function parse($contents) {
|
*/ function parse($contents) {
|
$contents = preg_replace("#<lang:([a-zA-Z0-9_]+)>#e", "\$this->$1", $contents);
| $contents = preg_replace_callback("#<lang:([a-zA-Z0-9_]+)>#", array($this, 'parse_replace'), $contents);
|
return $contents;
|
return $contents;
|
| }
/** * Replace content with language variable. * * @param array Matches. * @return string Language variable. */ function parse_replace($matches) { return $this->$matches[1];
|
} } ?>
| } } ?>
|