blob: ca43c13acd9d258aeec80170fa3f3a7946270881 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
|
<?php
/*
* File: ratatoeskr/sys/translation.php
* Load translation.
*
* License:
* This file is part of Ratatöskr.
* Ratatöskr is licensed unter the MIT / X11 License.
* See "ratatoeskr/licenses/ratatoeskr" for more information.
*/
require_once(dirname(__FILE__) . "/models.php");
require_once(dirname(__FILE__) . "/utils.php");
require_once(dirname(__FILE__) . "/init_ste.php");
if(!defined(TRANSLATION_PLUGIN_LOADED))
{
$ste->register_tag(
"get_translation",
function($ste, $params, $sub)
{
global $translation;
if((!isset($translation)) or empty($params["for"]) or (!isset($translation[$params["for"]])))
return "";
$rv = $translation[$params["for"]];
return (!empty($params["raw"])) ? $rv : htmlesc($rv);
}
);
define(TRANSLATION_PLUGIN_LOADED, True);
}
/*
* Function: load_language
* Load a language (i.e. set the global $translation variable).
*
* Parameters:
* $lang - The language (2-Letter code, e.g. "en", "de", "it" ...) to load. NULL for default (from database).
*/
function load_language($lang=NULL)
{
global $ratatoeskr_settings;
if($lang === NULL)
$lang = $ratatoeskr_settings["default_language"];
/*
* Because we will include an file defined by the $lang param, we will
* only allow alphabetic characters, so this function should not be
* vulnerable to LFI-Exploits...
*/
$lang = implode("", array_filter(str_split($lang, 1), "ctype_alpha"));
require(dirname(__FILE__) . "/../translations/$lang.php");
$GLOBALS["translation"] = $translation;
}
?>
|