19 declare(strict_types=1);
55 $il_absolute_path = realpath(__DIR__ .
"/../../../../../");
56 $this->lang_path = $il_absolute_path .
"/lang";
57 $this->cust_lang_path = $il_absolute_path .
"/Customizing/global/lang";
67 public function txt(
string $a_topic,
string $a_default_lang_fallback_mod =
''): string
71 if (empty($a_topic)) {
75 $translation = $this->text[$a_topic] ??
'';
78 $pos = strpos($translation, $this->comment_separator);
82 $translation = substr($translation, 0, $pos);
85 if ($translation ===
"") {
86 $log->writeLanguageLog($a_topic, $this->lang_key);
87 return "-" . $a_topic .
"-";
104 if (empty($a_lang_keys)) {
105 $a_lang_keys = array();
108 if (empty($a_local_keys)) {
109 $a_local_keys = array();
116 foreach ($a_lang_keys as $lang_key) {
121 if (in_array($lang_key, $a_local_keys,
true) && is_dir($this->cust_lang_path)) {
130 if (!array_key_exists($lang_key, $db_langs)) {
131 if (in_array($lang_key, $a_local_keys,
true)) {
132 $itype =
"installed_local";
134 $itype =
"installed";
136 $lid = $ilDB->nextId(
"object_data");
137 $query =
"INSERT INTO object_data " .
138 "(obj_id,type,title,description,owner,create_date,last_update) " .
141 $ilDB->quote($lid,
"integer") .
"," .
142 $ilDB->quote(
"lng",
"text") .
"," .
143 $ilDB->quote($lang_key,
"text") .
"," .
144 $ilDB->quote($itype,
"text") .
"," .
145 $ilDB->quote(
"-1",
"integer") .
"," .
149 $ilDB->manipulate($query);
156 foreach ($db_langs as $key => $val) {
157 if (!in_array($key, $err_lang,
true)) {
158 if (in_array($key, $a_lang_keys,
true)) {
159 if (in_array($key, $a_local_keys,
true)) {
160 $ld =
"installed_local";
164 $query =
"UPDATE object_data SET " .
165 "description = " . $ilDB->quote($ld,
"text") .
", " .
166 "last_update = " . $ilDB->now() .
" " .
167 "WHERE obj_id = " . $ilDB->quote($val[
"obj_id"],
"integer") .
" " .
168 "AND type = " . $ilDB->quote(
"lng",
"text");
169 $ilDB->manipulate($query);
173 if (strpos($val[
"status"],
"installed") === 0) {
174 $query =
"UPDATE object_data SET " .
175 "description = " . $ilDB->quote(
"not_installed",
"text") .
", " .
176 "last_update = " . $ilDB->now() .
" " .
177 "WHERE obj_id = " . $ilDB->quote($val[
"obj_id"],
"integer") .
" " .
178 "AND type = " . $ilDB->quote(
"lng",
"text");
179 $ilDB->manipulate($query);
185 return ($err_lang) ?:
true;
199 $query =
"SELECT * FROM object_data " .
200 "WHERE type = " . $ilDB->quote(
"lng",
"text") .
" " .
201 "AND " . $ilDB->like(
"description",
"text",
"installed%");
202 $r = $ilDB->query($query);
204 while ($row = $ilDB->fetchObject(
$r)) {
205 $arr[] = $row->title;
220 $query =
"SELECT * FROM object_data " .
221 "WHERE type = " . $ilDB->quote(
"lng",
"text") .
" " .
222 "AND description = " . $ilDB->quote(
"installed_local",
"text");
223 $r = $ilDB->query($query);
225 while ($row = $ilDB->fetchObject(
$r)) {
226 $arr[] = $row->title;
241 $query =
"SELECT * FROM object_data " .
242 "WHERE type = " . $ilDB->quote(
"lng",
"text");
243 $r = $ilDB->query($query);
245 while ($row = $ilDB->fetchObject(
$r)) {
246 $arr[$row->title][
"obj_id"] = $row->obj_id;
247 $arr[$row->title][
"status"] = $row->description;
266 $scopeExtension =
"";
268 if (
$scope ===
"global") {
271 $scopeExtension =
"." .
$scope;
284 $lang_file =
"ilias_" . $a_lang_key .
".lang" . $scopeExtension;
287 if (!is_file($lang_file)) {
293 if (!$content = $this->
cut_header(file($lang_file))) {
299 foreach ($content as $key => $val) {
300 $separated = explode($this->separator, trim($val));
301 $num = count($separated);
327 foreach ($content as $key => $val) {
328 if (trim($val) ===
"<!-- language file start -->") {
329 return array_slice($content, $key + 1);
340 protected function flushLanguage(
string $a_lang_key,
string $a_mode =
"all"): void
344 self::_deleteLangData($a_lang_key, ($a_mode ===
"keep_local"));
346 if ($a_mode ===
"all") {
347 $ilDB->manipulate(
"DELETE FROM lng_modules WHERE lang_key = " .
348 $ilDB->quote($a_lang_key,
"text"));
357 public static function _deleteLangData(
string $a_lang_key,
bool $a_keep_local_change): void
361 if (!$a_keep_local_change) {
362 $ilDB->manipulate(
"DELETE FROM lng_data WHERE lang_key = " .
363 $ilDB->quote($a_lang_key,
"text"));
365 $ilDB->manipulate(
"DELETE FROM lng_data WHERE lang_key = " .
366 $ilDB->quote($a_lang_key,
"text") .
367 " AND local_change IS NULL");
378 public function getLocalChanges(
string $a_lang_key,
string $a_min_date =
"",
string $a_max_date =
""): array
382 if ($a_min_date ===
"") {
383 $a_min_date =
"1980-01-01 00:00:00";
385 if ($a_max_date ===
"") {
386 $a_max_date =
"2200-01-01 00:00:00";
390 "SELECT * FROM lng_data WHERE lang_key = %s " .
391 "AND local_change >= %s AND local_change <= %s",
392 $ilDB->quote($a_lang_key,
"text"),
393 $ilDB->quote($a_min_date,
"timestamp"),
394 $ilDB->quote($a_max_date,
"timestamp")
396 $result = $ilDB->query(
$q);
400 $changes[$row[
"module"]][$row[
"identifier"]] = $row[
"value"];
417 $lang_array = array();
419 $scopeExtension =
"";
421 if (
$scope ===
"global") {
424 $scopeExtension =
"." .
$scope;
436 $lang_file =
"ilias_" . $lang_key .
".lang" . $scopeExtension;
439 if (is_file($lang_file)) {
442 $lang_array[
"common"] = [];
445 if ($content = $this->
cut_header(file($lang_file))) {
449 } elseif (
$scope ===
"local") {
453 $change_date = date(
"Y-m-d H:i:s", time());
454 $min_date = date(
"Y-m-d H:i:s", filemtime($lang_file));
458 $query_check =
false;
459 $query =
"INSERT INTO lng_data (module,identifier,lang_key,value,local_change,remarks) VALUES ";
460 foreach ($content as $key => $val) {
466 $separated = explode($this->separator, trim($val));
469 $pos = strpos($separated[2], $this->comment_separator);
471 if ($pos !==
false) {
473 $separated[2] = substr($separated[2], 0, $pos);
477 if (isset($local_changes[$separated[0]])) {
478 $local_value = $local_changes[$separated[0]][$separated[1]] ??
"";
484 if ($local_value !==
"" && $local_value !== $separated[2]) {
486 $lang_array[$separated[0]][$separated[1]] = $local_value;
489 } elseif (
$scope ===
"local") {
490 if ($local_value !==
"") {
492 $lang_array[$separated[0]][$separated[1]] = $local_value;
498 "(%s,%s,%s,%s,%s,%s),",
499 $ilDB->quote($separated[0],
"text"),
500 $ilDB->quote($separated[1],
"text"),
501 $ilDB->quote($lang_key,
"text"),
502 $ilDB->quote($separated[2],
"text"),
503 $ilDB->quote($change_date,
"timestamp"),
504 $ilDB->quote($separated[3] ??
null,
"text")
507 $lang_array[$separated[0]][$separated[1]] = $separated[2];
509 $query = rtrim($query,
",") .
" ON DUPLICATE KEY UPDATE value=VALUES(value),remarks=VALUES(remarks);";
511 $ilDB->manipulate($query);
515 $query =
"INSERT INTO lng_modules (module, lang_key, lang_array) VALUES ";
516 $modules_to_delete = [];
517 foreach ($lang_array as $module => $lang_arr) {
519 $q =
"SELECT * FROM lng_modules WHERE " .
520 " lang_key = " . $ilDB->quote($lang_key,
"text") .
521 " AND module = " . $ilDB->quote($module,
"text");
522 $set = $ilDB->query(
$q);
523 $row = $ilDB->fetchAssoc($set);
524 $arr2 = unserialize($row[
"lang_array"], [
"allowed_classes" =>
false]);
525 if (is_array($arr2)) {
526 $lang_arr = array_merge($arr2, $lang_arr);
531 $ilDB->quote($module,
"text"),
532 $ilDB->quote($lang_key,
"text"),
533 $ilDB->quote(serialize($lang_arr),
"clob"),
535 $modules_to_delete[] = $module;
538 $inModulesToDelete = $ilDB->in(
'module', $modules_to_delete,
false,
'text');
539 $ilDB->manipulate(sprintf(
540 "DELETE FROM lng_modules WHERE lang_key = %s AND $inModulesToDelete",
541 $ilDB->quote($lang_key,
"text")
544 $query = rtrim($query,
",") .
";";
545 $ilDB->manipulate($query);
557 $local_langs = array();
558 if (is_dir($this->cust_lang_path)) {
559 $d = dir($this->cust_lang_path);
561 chdir($this->cust_lang_path);
564 while ($entry =
$d->read()) {
565 if (is_file($entry) && (preg_match(
"~(^ilias_.{2}\.lang.local$)~", $entry))) {
566 $lang_key = substr($entry, 6, 2);
582 $d = dir($this->lang_path);
584 chdir($this->lang_path);
586 $installableLanguages = [];
588 while ($entry =
$d->read()) {
589 if (is_file($entry) && (preg_match(
"~(^ilias_.{2}\.lang$)~", $entry))) {
590 $lang_key = substr($entry, 6, 2);
597 return $installableLanguages;
607 $this->db = &$a_db_handler;
getInstallableLanguages()
Return installable languages.
flushLanguage(string $a_lang_key, string $a_mode="all")
remove language data from database $a_lang_key language key $a_mode "all" or "keep_local" ...
string $comment_separator
getLocalChanges(string $a_lang_key, string $a_min_date="", string $a_max_date="")
get locally changed language entries $a_lang_key language key $a_min_date minimum change date "yyyy-m...
__construct(string $a_lang_key)
txt(string $a_topic, string $a_default_lang_fallback_mod='')
gets the text for a given topic
language handling for setup
while($session_entry=$r->fetchRow(ilDBConstants::FETCHMODE_ASSOC)) return null
cut_header(array $content)
Remove *.lang header information from '$content'.
checkLanguage(string $a_lang_key, string $scope="")
validate the logical structure of a lang-file
installLanguages(array $a_lang_keys, array $a_local_keys)
install languages
getInstalledLanguages()
get already installed languages (in db)
getInstalledLocalLanguages()
get already installed local languages (in db)
loadLanguageModule(string $a_module)
getAvailableLanguages()
get already registered languages (in db)
getLocalLanguages()
Searches for the existence of *.lang.local files.
insertLanguage(string $lang_key, string $scope="")
insert language data from file in database
setDbHandler(ilDBInterface $a_db_handler)
set db handler object object db handler Return true on success
static _deleteLangData(string $a_lang_key, bool $a_keep_local_change)
Delete languge data.