162 $this->log = $DIC->logger()->root();
164 $this->lang_key = $a_lang_key;
166 $this->text = array();
167 $this->loaded_modules = array();
169 $this->usage_log_enabled = self::isUsageLogEnabled();
171 $this->lang_path = ILIAS_ABSOLUTE_PATH .
"/lang";
172 $this->cust_lang_path = ILIAS_ABSOLUTE_PATH .
"/Customizing/global/lang";
174 $this->lang_default =
$ilIliasIniFile->readVariable(
"language",
"default");
176 if ($DIC->offsetExists(
'ilSetting')) {
179 $this->lang_default =
$ilSetting->get(
"language");
182 if ($DIC->offsetExists(
'ilUser')) {
184 $this->lang_user =
$ilUser->prefs[
"language"];
189 if (!in_array($this->lang_key, $langs)) {
193 require_once(
'./Services/Language/classes/class.ilCachedLanguage.php');
195 if ($this->global_cache->isActive()) {
196 $this->cached_modules = $this->global_cache->getTranslations();
211 return $this->lang_default ? $this->lang_default :
'en';
216 $rtl = array(
'ar',
'fa',
'ur',
'he');
240 public function txtlng($a_module, $a_topic, $a_language)
242 if (strcmp($a_language, $this->lang_key) == 0) {
243 return $this->
txt($a_topic);
257 public function txt($a_topic, $a_default_lang_fallback_mod =
"")
259 if (empty($a_topic)) {
264 self::$used_topics[$a_topic] = $a_topic;
267 if (isset($this->text[$a_topic])) {
268 $translation = $this->text[$a_topic];
271 if ($translation ==
"" && $a_default_lang_fallback_mod !=
"") {
273 if ($this->lang_key != $this->lang_default) {
276 $a_default_lang_fallback_mod,
281 if ($translation ==
"" || $translation ==
"-" . $a_topic .
"-") {
284 $a_default_lang_fallback_mod,
291 if ($translation ==
"") {
292 if (ILIAS_LOG_ENABLED && is_object($this->log)) {
293 $this->log->debug(
"Language (" . $this->lang_key .
"): topic -" . $a_topic .
"- not present");
295 return "-" . $a_topic .
"-";
297 if ($this->usage_log_enabled) {
298 self::logUsage($this->map_modules_txt[$a_topic], $a_topic);
311 return isset($this->text[$a_topic]);
317 $ilDB = $DIC->database();
319 if (in_array($a_module, $this->loaded_modules)) {
323 $this->loaded_modules[] = $a_module;
326 self::$used_modules[$a_module] = $a_module;
330 if (empty($this->lang_key)) {
334 if (isset($this->cached_modules[$a_module]) && is_array($this->cached_modules[$a_module])) {
335 $this->text = array_merge($this->text, $this->cached_modules[$a_module]);
337 if ($this->usage_log_enabled) {
338 foreach (array_keys($this->cached_modules[$a_module]) as $key) {
339 $this->map_modules_txt[$key] = $a_module;
346 $q =
"SELECT * FROM lng_modules " .
347 "WHERE lang_key = " .
$ilDB->quote(
$lang_key,
"text") .
" AND module = " .
348 $ilDB->quote($a_module,
"text");
349 $r =
$ilDB->query($q);
352 if ($row ===
false) {
356 $new_text = unserialize($row[
"lang_array"]);
357 if (is_array($new_text)) {
358 $this->text = array_merge($this->text, $new_text);
360 if ($this->usage_log_enabled) {
361 foreach (array_keys($new_text) as $key) {
362 $this->map_modules_txt[$key] = $a_module;
371 return self::_getInstalledLanguages();
376 include_once(
"./Services/Object/classes/class.ilObject.php");
379 foreach ($langlist as
$lang) {
380 if (substr($lang[
"desc"], 0, 9) ==
"installed") {
381 $languages[] = $lang[
"title"];
385 return $languages ? $languages : array();
391 $ilDB = $DIC->database();
393 $set =
$ilDB->query($q = sprintf(
394 "SELECT * FROM lng_data WHERE module = %s " .
395 "AND lang_key = %s AND identifier = %s",
396 $ilDB->quote((
string) $a_mod,
"text"),
397 $ilDB->quote((
string) $a_lang_key,
"text"),
398 $ilDB->quote((
string) $a_id,
"text")
400 $rec =
$ilDB->fetchAssoc($set);
402 if ($rec[
"value"] !=
"") {
404 self::$used_topics[$a_id] = $a_id;
405 self::$used_modules[$a_mod] = $a_mod;
407 if (self::isUsageLogEnabled()) {
408 self::logUsage($a_mod, $a_id);
411 return $rec[
"value"];
414 return "-" . $a_id .
"-";
426 $ilDB = $DIC->database();
428 $query =
'SELECT obj_id FROM object_data ' .
' ' .
429 'WHERE title = ' .
$ilDB->quote($a_lang_key,
'text') .
' ' .
430 'AND type = ' .
$ilDB->quote(
'lng',
'text');
442 asort(self::$used_topics);
443 return self::$used_topics;
448 asort(self::$used_modules);
449 return self::$used_modules;
463 return new self(
'en');
474 if ($DIC->offsetExists(
'ilUser')) {
483 require_once
'Services/Language/classes/class.ilLanguageDetection.php';
485 $language = $language_detection->detect();
487 $ilUser->setPref(
'language', $language);
488 $_GET[
'lang'] = $language;
492 if (isset(
$_POST[
'change_lang_to']) &&
$_POST[
'change_lang_to'] !=
"") {
508 $langs = self::_getInstalledLanguages();
532 if (!is_object($a_tpl)) {
536 if (!is_array($a_lang_key)) {
537 $a_lang_key = array($a_lang_key);
541 foreach ($a_lang_key as $lk) {
542 $map[$lk] = $this->
txt($lk);
558 if (!is_object($a_tpl)) {
562 if (!is_array($a_map)) {
566 foreach ($a_map as $k => $v) {
568 include_once(
"./Services/JSON/classes/class.ilJsonUtil.php");
569 $a_tpl->addOnloadCode(
"il.Language.setLangVar('" . $k .
"', " .
ilJsonUtil::encode($v) .
");");
580 protected static function logUsage($a_module, $a_identifier)
582 if ($a_module !=
"" && $a_identifier !=
"") {
583 self::$lng_log[$a_identifier] = $a_module;
598 $ilClientIniFile = $DIC->clientIni();
599 $ilDB = $DIC->database();
605 if (defined(
"DEVMODE") && DEVMODE) {
609 if (!$ilClientIniFile->variableExists(
'system',
'LANGUAGE_LOG')) {
610 return $ilClientIniFile->readVariable(
'system',
'LANGUAGE_LOG') == 1;
623 if (!$this->usage_log_enabled || !$DIC->isDependencyAvailable(
"database")) {
627 $ilDB = $DIC->database();
629 foreach ((array) self::$lng_log as $identifier => $module) {
630 $wave[] =
'(' .
$ilDB->quote($module,
'text') .
', ' .
$ilDB->quote($identifier,
'text') .
')';
631 unset(self::$lng_log[$identifier]);
633 if (count($wave) == 150 || (count(self::$lng_log) == 0 && count($wave) > 0)) {
634 $query =
'REPLACE INTO lng_log (module, identifier) VALUES ' . implode(
', ', $wave);
static get($a_var)
Get a value.
Class ilDBPdoMySQLMyISAM.
static set($a_var, $a_val)
Set a value.
static _getObjectsByType($a_obj_type="", $a_owner="")
Get objects by type.
static _lookupEntry($a_lang_key, $a_mod, $a_id)
Class ilLanguageDetection.
static logUsage($a_module, $a_identifier)
saves tupel of language module and identifier
txtlng($a_module, $a_topic, $a_language)
gets the text for a given topic in a given language if the topic is not in the list, the topic itself with "-" will be returned
static getGlobalInstance()
Builds the global language object.
exists($a_topic)
Check if language entry exists.
static encode($mixed, $suppress_native=false)
foreach($_POST as $key=> $value) $res
__construct($a_lang_key)
Constructor read the single-language file and put this in an array text.
static stripSlashes($a_str, $a_strip_html=true, $a_allow="")
strip slashes if magic qoutes is enabled
static getFallbackInstance()
Builds a global default language instance.
toJSMap($a_map, ilGlobalTemplateInterface $a_tpl=null)
Transfer text to Javascript.
loadLanguageModule($a_module)
__destruct()
destructor saves all language usages to db if log is enabled and ilDB exists
static lookupId($a_lang_key)
Lookup obj_id of language ilDB $ilDB.
toJS($a_lang_key, ilGlobalTemplateInterface $a_tpl=null)
txt($a_topic, $a_default_lang_fallback_mod="")
gets the text for a given topic if the topic is not in the list, the topic itself with "-" will be re...
if($DIC->http() ->request() ->getMethod()=="GET" &&isset($DIC->http() ->request() ->getQueryParams()['tex'])) $tpl
static _getInstalledLanguages()
static isUsageLogEnabled()
checks if language usage log is enabled you need MySQL to use this function this function is automati...