1 <?php declare(strict_types=1);
38 $this->change_date = date(
"Y-m-d H:i:s", time());
44 public function insertLangEntries(
string $lang_file): array
47 $lang_array = array();
48 $lang_array[
"common"] = array();
52 $query =
"INSERT INTO lng_data (module,identifier,lang_key,value,local_change,remarks) VALUES ";
53 foreach ($this->content as $val) {
59 $separated = explode($this->separator, trim($val));
60 $pos = strpos($separated[2], $this->comment_separator);
62 $separated[3] = substr($separated[2], $pos + strlen($this->comment_separator));
63 $separated[2] = substr($separated[2], 0, $pos);
67 $local_value = $this->local_changes[$separated[0]][$separated[1]] ??
"";
69 if (empty($this->scope)) {
71 if ($local_value !==
"" && $local_value !== $separated[2]) {
73 $lang_array[$separated[0]][$separated[1]] = $local_value;
76 } elseif ($this->scope ===
"local") {
78 if ($local_value !==
"") {
80 $lang_array[$separated[0]][$separated[1]] = $local_value;
84 if ($double_checker[$separated[0]][$separated[1]][$this->key] ??
false) {
89 "Duplicate Language Entry in $lang_file:\n$val",
93 $double_checker[$separated[0]][$separated[1]][
$this->key] =
true;
96 "(%s,%s,%s,%s,%s,%s),",
97 $this->ilDB->quote($separated[0],
"text"),
98 $this->ilDB->quote($separated[1],
"text"),
99 $this->ilDB->quote($this->key,
"text"),
100 $this->ilDB->quote($separated[2],
"text"),
101 $this->ilDB->quote($this->change_date,
"timestamp"),
102 $this->ilDB->quote($separated[3] ?? null,
"text")
105 $lang_array[$separated[0]][$separated[1]] = $separated[2];
107 $query = rtrim(
$query,
",") .
" ON DUPLICATE KEY UPDATE value=VALUES(value),remarks=VALUES(remarks);";
109 $this->ilDB->manipulate(
$query);
120 $query =
"INSERT INTO lng_modules (module, lang_key, lang_array) VALUES ";
121 $modules_to_delete = [];
122 foreach ($lang_array as $module => $lang_arr) {
123 if ($this->scope ===
"local") {
124 $q =
"SELECT * FROM lng_modules WHERE " .
125 " lang_key = " . $this->ilDB->quote($this->key,
"text") .
126 " AND module = " . $this->ilDB->quote($module,
"text");
127 $set = $this->ilDB->query($q);
128 $row = $this->ilDB->fetchAssoc($set);
129 $arr2 = isset($row[
"lang_array"]) ? unserialize($row[
"lang_array"], [
"allowed_classes" =>
false]) :
"";
130 if (is_array($arr2)) {
131 $lang_arr = array_merge($arr2, $lang_arr);
136 $this->ilDB->quote($module,
"text"),
137 $this->ilDB->quote($this->key,
"text"),
138 $this->ilDB->quote(serialize($lang_arr),
"clob")
140 $modules_to_delete[] = $module;
143 $inModulesToDelete = $this->ilDB->in(
'module', $modules_to_delete,
false,
'text');
144 $this->ilDB->manipulate(sprintf(
"DELETE FROM lng_modules WHERE lang_key = %s AND $inModulesToDelete",
145 $this->ilDB->quote($this->key,
"text")
149 $this->ilDB->manipulate(
$query);
153 $this->checkModules();
156 protected function checkModules():
void 159 "SELECT module, lang_array FROM lng_modules WHERE lang_key = %s",
164 foreach ($this->ilDB->fetchAll(
$result) as $module) {
165 $unserialied = unserialize($module[
"lang_array"], [
"allowed_classes" =>
false]);
166 if (!is_array($unserialied)) {
171 "Data for module '" . $module[
"module"] .
"' of language '" . $this->key .
"' is not correctly saved. " .
172 "Please check the collation of your database tables lng_data and lng_modules. It must be utf8_unicode_ci.",
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
replaceLangModules(array $lang_array)
__construct(ilDBInterface $ilDB, string $key, array $content, array $local_changes, string $scope="", string $separator="#:#", string $comment_separator="###")