1 <?php declare(strict_types=1);
103 $il_absolute_path = realpath(dirname(__FILE__) .
'/../../../../');
104 $this->lang_path = $il_absolute_path .
"/lang";
105 $this->cust_lang_path = $il_absolute_path .
"/Customizing/global/lang";
116 public function txt($a_topic, $a_default_lang_fallback_mod =
'')
120 if (empty($a_topic)) {
124 $translation = $this->text[$a_topic];
127 $pos = strpos($translation, $this->comment_separator);
129 if ($pos !==
false) {
131 $translation = substr($translation, 0, $pos);
134 if ($translation ==
"") {
135 $log->writeLanguageLog($a_topic, $this->lang_key);
136 return "-" . $a_topic .
"-";
152 if (empty($a_lang_keys)) {
153 $a_lang_keys = array();
156 if (empty($a_local_keys)) {
157 $a_local_keys = array();
169 if (in_array($lang_key, $a_local_keys) && is_dir($this->cust_lang_path)) {
178 if (!array_key_exists($lang_key, $db_langs)) {
179 if (in_array($lang_key, $a_local_keys)) {
180 $itype =
'installed_local';
182 $itype =
'installed';
184 $lid = $ilDB->nextId(
"object_data");
185 $query =
"INSERT INTO object_data " .
186 "(obj_id,type,title,description,owner,create_date,last_update) " .
189 $ilDB->quote($lid,
"integer") .
"," .
190 $ilDB->quote(
"lng",
"text") .
"," .
191 $ilDB->quote($lang_key,
"text") .
"," .
192 $ilDB->quote($itype,
"text") .
"," .
193 $ilDB->quote(
'-1',
"integer") .
"," .
197 $this->db->manipulate(
$query);
204 foreach ($db_langs as $key => $val) {
205 if (!in_array($key, $err_lang)) {
206 if (in_array($key, $a_lang_keys)) {
207 if (in_array($key, $a_local_keys)) {
208 $ld =
'installed_local';
212 $query =
"UPDATE object_data SET " .
213 "description = " . $ilDB->quote($ld,
"text") .
", " .
214 "last_update = " . $ilDB->now() .
" " .
215 "WHERE obj_id = " . $ilDB->quote($val[
"obj_id"],
"integer") .
" " .
216 "AND type = " . $ilDB->quote(
"lng",
"text");
217 $ilDB->manipulate(
$query);
221 if (substr($val[
"status"], 0, 9) ==
"installed") {
222 $query =
"UPDATE object_data SET " .
223 "description = " . $ilDB->quote(
"not_installed",
"text") .
", " .
224 "last_update = " . $ilDB->now() .
" " .
225 "WHERE obj_id = " . $ilDB->quote($val[
"obj_id"],
"integer") .
" " .
226 "AND type = " . $ilDB->quote(
"lng",
"text");
227 $ilDB->manipulate(
$query);
233 return ($err_lang) ?:
true;
249 $query =
"SELECT * FROM object_data " .
250 "WHERE type = " . $ilDB->quote(
"lng",
"text") .
" " .
251 "AND " . $ilDB->like(
"description",
"text",
'installed%');
252 $r = $ilDB->query(
$query);
254 while ($row = $ilDB->fetchObject($r)) {
255 $arr[] = $row->title;
272 $query =
"SELECT * FROM object_data " .
273 "WHERE type = " . $ilDB->quote(
"lng",
"text") .
" " .
274 "AND description = " . $ilDB->quote(
'installed_local',
"text");
275 $r = $ilDB->query(
$query);
277 while ($row = $ilDB->fetchObject($r)) {
278 $arr[] = $row->title;
294 $query =
"SELECT * FROM object_data " .
295 "WHERE type = " . $ilDB->quote(
"lng",
"text");
296 $r = $ilDB->query(
$query);
298 while ($row = $ilDB->fetchObject($r)) {
299 $arr[$row->title][
"obj_id"] = $row->obj_id;
300 $arr[$row->title][
"status"] = $row->description;
319 $scopeExtension =
"";
320 if (!empty($scope)) {
321 if ($scope ==
'global') {
324 $scopeExtension =
'.' . $scope;
329 if ($scope ==
"local") {
337 $lang_file =
"ilias_" . $a_lang_key .
".lang" . $scopeExtension;
340 if (!is_file($lang_file)) {
346 if (!$content = $this->
cut_header(file($lang_file))) {
352 foreach ($content as $key => $val) {
353 $separated = explode($this->separator, trim($val));
354 $num = count($separated);
380 foreach ($content as $key => $val) {
381 if (trim($val) ==
"<!-- language file start -->") {
382 return array_slice($content, $key + 1);
401 if ($a_mode ==
'all') {
402 $ilDB->manipulate(
"DELETE FROM lng_modules WHERE lang_key = " .
403 $ilDB->quote($a_lang_key,
"text"));
416 if (!$a_keep_local_change) {
417 $ilDB->manipulate(
"DELETE FROM lng_data WHERE lang_key = " .
418 $ilDB->quote($a_lang_key,
"text"));
420 $ilDB->manipulate(
"DELETE FROM lng_data WHERE lang_key = " .
421 $ilDB->quote($a_lang_key,
"text") .
422 " AND local_change IS NULL");
437 if ($a_min_date ==
"") {
438 $a_min_date =
"1980-01-01 00:00:00";
440 if ($a_max_date ==
"") {
441 $a_max_date =
"2200-01-01 00:00:00";
445 "SELECT * FROM lng_data WHERE lang_key = %s " .
446 "AND local_change >= %s AND local_change <= %s",
447 $ilDB->quote($a_lang_key,
"text"),
448 $ilDB->quote($a_min_date,
"timestamp"),
449 $ilDB->quote($a_max_date,
"timestamp")
455 $changes[$row[
"module"]][$row[
"identifier"]] = $row[
"value"];
473 $lang_array = array();
475 $scopeExtension =
"";
476 if (!empty($scope)) {
477 if ($scope ==
'global') {
480 $scopeExtension =
'.' . $scope;
485 if ($scope ==
"local") {
492 $lang_file =
"ilias_" .
$lang_key .
".lang" . $scopeExtension;
495 if (is_file($lang_file)) {
498 $lang_array[
"common"] = [];
501 if ($content = $this->
cut_header(file($lang_file))) {
505 } elseif ($scope ==
'local') {
509 $change_date = date(
"Y-m-d H:i:s", time());
510 $min_date = date(
"Y-m-d H:i:s", filemtime($lang_file));
514 $query_check =
false;
515 $query =
"INSERT INTO lng_data (module,identifier,lang_key,value,local_change,remarks) VALUES ";
516 foreach ($content as $key => $val) {
522 $separated = explode($this->separator, trim($val));
525 $pos = strpos($separated[2], $this->comment_separator);
527 if ($pos !==
false) {
529 $separated[2] = substr($separated[2], 0, $pos);
533 if (isset($local_changes[$separated[0]])) {
534 $local_value = $local_changes[$separated[0]][$separated[1]] ?? null;
540 if ($local_value !=
"" && $local_value != $separated[2]) {
542 $lang_array[$separated[0]][$separated[1]] = $local_value;
545 } elseif ($scope ===
"local") {
546 if ($local_value !==
"") {
548 $lang_array[$separated[0]][$separated[1]] = $local_value;
553 "(%s,%s,%s,%s,%s,%s),",
554 $ilDB->quote($separated[0],
"text"),
555 $ilDB->quote($separated[1],
"text"),
557 $ilDB->quote($separated[2],
"text"),
558 $ilDB->quote($change_date,
"timestamp"),
559 $ilDB->quote($separated[3] ?? null,
"text")
562 $lang_array[$separated[0]][$separated[1]] = $separated[2];
564 $query = rtrim(
$query,
",") .
" ON DUPLICATE KEY UPDATE value=VALUES(value),remarks=VALUES(remarks);";
570 $query =
"INSERT INTO lng_modules (module, lang_key, lang_array) VALUES ";
571 $modules_to_delete = [];
572 foreach ($lang_array as $module => $lang_arr) {
573 if ($scope ===
"local") {
574 $q =
"SELECT * FROM lng_modules WHERE " .
576 " AND module = " .
$ilDB->quote($module,
"text");
577 $set =
$ilDB->query($q);
578 $row =
$ilDB->fetchAssoc($set);
579 $arr2 = isset($row[
"lang_array"]) ? unserialize($row[
"lang_array"],
580 [
"allowed_classes" =>
false]) :
"";
581 if (is_array($arr2)) {
582 $lang_arr = array_merge($arr2, $lang_arr);
587 $ilDB->quote($module,
"text"),
589 $ilDB->quote(serialize($lang_arr),
"clob")
591 $modules_to_delete[] = $module;
594 $inModulesToDelete =
$ilDB->in(
'module', $modules_to_delete,
false,
'text');
595 $ilDB->manipulate(sprintf(
"DELETE FROM lng_modules WHERE lang_key = %s AND $inModulesToDelete",
613 $local_langs = array();
614 if (is_dir($this->cust_lang_path)) {
615 $d = dir($this->cust_lang_path);
617 chdir($this->cust_lang_path);
620 while ($entry =
$d->read()) {
621 if (is_file($entry) && (preg_match(
"~(^ilias_.{2}\.lang.local$)~", $entry))) {
635 $d = dir($this->lang_path);
637 chdir($this->lang_path);
639 $installableLanguages = [];
641 while ($entry =
$d->read()) {
642 if (is_file($entry) && (preg_match(
"~(^ilias_.{2}\.lang$)~", $entry))) {
650 return $installableLanguages;
660 if (empty($a_db_handler) or !is_object($a_db_handler)) {
664 $this->db = &$a_db_handler;
__construct($a_lang_key)
Constructor read the single-language file and put this in an array text.
getInstallableLanguages()
txt($a_topic, $a_default_lang_fallback_mod='')
gets the text for a given topic
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
getLocalChanges($a_lang_key, $a_min_date="", $a_max_date="")
get locally changed language entries
checkLanguage($a_lang_key, $scope='')
validate the logical structure of a lang-file
getInstalledLanguages()
get already installed languages (in db)
insertLanguage($lang_key, $scope='')
insert language data from file in database
installLanguages($a_lang_keys, $a_local_keys)
install languages
flushLanguage($a_lang_key, $a_mode='all')
remove language data from database
getInstalledLocalLanguages()
get already installed local languages (in db)
static _deleteLangData($a_lang_key, $a_keep_local_change)
Delete languge data.
getAvailableLanguages()
get already registered languages (in db)
getLocalLanguages()
Searches for the existence of *.lang.local files.
loadLanguageModule($a_module)
for($i=6; $i< 13; $i++) for($i=1; $i< 13; $i++) $d
setDbHandler($a_db_handler)
set db handler object object db handler
cut_header($content)
Remove *.lang header information from '$content'.