ILIAS  trunk Revision v11.0_alpha-3011-gc6b235a2e85
class.ilObjLanguageFolder.php
Go to the documentation of this file.
1<?php
2
19declare(strict_types=1);
20
32{
37 public string $lang_default;
38
44 public string $lang_user;
45
51 public string $lang_path;
52
56 public string $separator;
57
61 public array $languages;
62
68 public function __construct(int $a_id, bool $a_call_by_reference = true)
69 {
70 $this->type = "lngf";
71 parent::__construct($a_id, $a_call_by_reference);
72
73 $this->lang_path = $this->lng->lang_path;
74 $this->lang_default = $this->lng->lang_default;
75 $this->lang_user = $this->lng->lang_user;
76 $this->separator = $this->lng->separator;
77 }
78
93 public function getLanguages(): array
94 {
95 $this->lng->loadLanguageModule("meta");
96
97 // set path to directory where lang-files reside
98 $d = dir($this->lang_path);
99 $tmpPath = getcwd();
100 chdir($this->lang_path);
101
102 $languages = [];
103
104 // get available lang-files
105 while ($entry = $d->read()) {
106 if (is_file($entry) && (preg_match("~(^ilias_.{2}\.lang$)~", $entry))) {
107 $lang_key = substr($entry, 6, 2);
108 $languages[$lang_key] = ""; // long names will be set in class Out
109 }
110 }
111
112 $language = array();
113 $tmp_array = array_keys($languages);
114 $lang_keys = array();
115
116 // now get languages from database
117 if ($lang_db = ilObject::_getObjectsByType("lng")) {
118 foreach ($lang_db as $lang) {
119 // set values
120 $lang_key = $lang["title"];
121 $languages[$lang_key] = $lang;
122 $lang_keys[] = $lang_key;
123
124 $languages[$lang_key]["info"] = "";
125 $languages[$lang_key]["status"] = "";
126
127 // determine default language and language of current user
128 if ($lang_key === $this->lang_user) {
129 $languages[$lang_key]["status"] = "in_use";
130 }
131
132 if ($lang_key === $this->lang_default) {
133 $languages[$lang_key]["status"] = "system_language";
134 }
135
136 // check if files are missing
137 if (count($tmp_array) > 0 && !in_array($lang_key, $tmp_array, true)) {
138 $languages[$lang_key]["info"] = "file_not_found";
139 }
140 }
141 }
142
143 // compute new languages
144 foreach ($languages as $lang_key => $lang_data) {
145 if (!in_array($lang_key, $lang_keys, true)) {
146 $languages[$lang_key] = array();
147 $languages[$lang_key]["info"] = "new_language";
148 //$languages[$lang_key]["desc"] = "not_installed";
149 }
150 }
151
152 chdir($tmpPath);
153
154 // Insert languages with files new found into table language
155 $languages = $this->addNewLanguages($languages);
156
157 // Remove from array & db languages which are not installed and no lang-files
158 $languages = $this->removeLanguages($languages);
159
160 // setting language's full names
161 foreach ($languages as $lang_key => $lang_data) {
162 $languages[$lang_key]["name"] = $this->lng->txt("meta_l_" . $lang_key);
163 }
164
165 $this->languages = $languages;
166
167 return $this->languages;
168 }
169
176 public function addNewLanguages(array $a_languages): array
177 {
178 if (count($a_languages) > 0) {
179 foreach ($a_languages as $lang_key => $lang_data) {
180 if (isset($lang_data["info"]) && $lang_data["info"] === "new_language") {
181 $lngObj = new ilObjLanguage();
182 $lngObj->setTitle($lang_key);
183 $lngObj->setDescription("not_installed");
184 $lngObj->create();
185
186 // must get OOP through the whole class some time
187 // (no arrays with db fields! this class doesn't know anything about table object!)
188 $a_languages[$lang_key] = array("obj_id" => $lngObj->getId(),
189 "type" => $lngObj->getType(),
190 "description" => $lngObj->getDescription(),
191 "desc" => $lngObj->getDescription(),
192 "owner" => $lngObj->getOwner(),
193 "create_date" => $lngObj->getCreateDate(),
194 "last_update" => $lngObj->getLastUpdateDate());
195
196 $a_languages[$lang_key]["info"] = "new_language";
197 unset($lngObj); // better: the objects should be resident in an member array of this class
198 }
199 }
200 }
201
202 return $a_languages;
203 }
204
213 public function removeLanguages(array $a_languages): array
214 {
215 foreach ($a_languages as $lang_key => $lang_data) {
216 if ($lang_data["desc"] === "not_installed" && $lang_data["info"] === "file_not_found") {
217 // update languages array
218 unset($a_languages[$lang_key]);
219
220 // update object_data table
221 $query = "DELETE FROM object_data " .
222 "WHERE type = " . $this->db->quote("lng", "text") . " " .
223 "AND title = " . $this->db->quote($lang_key, "text");
224 $this->db->manipulate($query);
225 }
226 }
227
228 return $a_languages;
229 }
230
239 public function checkAllLanguages(): string
240 {
241 // set path to directory where lang-files reside
242 $d = dir($this->lang_path);
243 $tmpPath = getcwd();
244 chdir($this->lang_path);
245
246 // for giving a message when no lang-file was found
247 $found = false;
248
249 $output = '';
250 // get available lang-files
251 while ($entry = $d->read()) {
252 if (is_file($entry) && (preg_match("~(^ilias_.{2}\.lang$)~", $entry))) {
253 // textmeldung, wenn langfile gefunden wurde
254 $output .= "<br/><br/>" . $this->lng->txt("langfile_found") . ": " . $entry;
255 $content = file($entry);
256 $lines_full = count($content);
257 $found = true;
258 $error_param = false;
259 $error_double = false;
260 $double_checker = [];
261
262 if ($content = ilObjLanguage::cut_header($content)) {
263 $lines_cut = count($content);
264 foreach ($content as $key => $val) {
265 $separated = explode($this->separator, trim($val));
266 $num = count($separated);
267 $line = $key + $lines_full - $lines_cut + 1;
268
269 if ($num !== 3) {
270 $error_param = true;
271
272 $output .= "<br/><b/>" . $this->lng->txt("err_in_line") . " " . $line . " !</b>&nbsp;&nbsp;";
273
274 switch ($num) {
275 case 1:
276 if (empty($separated[0])) {
277 $output .= "<br/>" . $this->lng->txt("err_no_param") . " " . $this->lng->txt("check_langfile");
278 } else {
279 $output .= $this->lng->txt("module") . ": " . $separated[0];
280 $output .= "<br/>" . $this->lng->txt("err_1_param") . " " . $this->lng->txt("check_langfile");
281 }
282 break;
283
284 case 2:
285 $output .= $this->lng->txt("module") . ": " . $separated[0];
286 $output .= ", " . $this->lng->txt("identifier") . ": " . $separated[1];
287 $output .= "<br/>" . $this->lng->txt("err_2_param") . " " . $this->lng->txt("check_langfile");
288 break;
289
290 default:
291 $output .= $this->lng->txt("module") . ": " . $separated[0];
292 $output .= ", " . $this->lng->txt("identifier") . ": " . $separated[1];
293 $output .= ", " . $this->lng->txt("value") . ": " . $separated[2];
294 $output .= "<br/>" . $this->lng->txt("err_over_3_param") . " " . $this->lng->txt("check_langfile");
295 break;
296 }
297 continue;
298 }
299 if ($double_checker[strtolower($separated[0])][strtolower($separated[1])] ?? false) {
300 $error_double = true;
301
302 $output .= "<br/><b/>" . $this->lng->txt("err_in_line") . " " . $double_checker[strtolower($separated[0])][strtolower($separated[1])] . " " . $this->lng->txt("and") . " " . $line . " !</b>&nbsp;&nbsp;";
303 $output .= $this->lng->txt("module") . ": " . $separated[0];
304 $output .= ", " . $this->lng->txt("identifier") . ": " . $separated[1];
305 $output .= ", " . $this->lng->txt("value") . ": " . $separated[2];
306 }
307 $double_checker[strtolower($separated[0])][strtolower($separated[1])] = $line;
308 }
309
310 if ($error_param || $error_double) {
311 $reason = "";
312 if ($error_param) {
313 $reason .= " " . $this->lng->txt("err_count_param");
314 }
315 if ($error_double) {
316 $reason .= " " . $this->lng->txt("err_double_entries");
317 }
318 $output .= "<br/>" . $this->lng->txt("file_not_valid") . $reason;
319 } else {
320 $output .= "<br/>" . $this->lng->txt("file_valid");
321 }
322 } else {
323 $output .= "<br/>" . $this->lng->txt("file_not_valid") . " " . $this->lng->txt("err_wrong_header");
324 }
325 }
326 }
327
328 $d->close();
329
330 if (!$found) {
331 $output .= "<br/>" . $this->lng->txt("err_no_langfile_found");
332 }
333
334 chdir($tmpPath);
335 return $output;
336 }
337} // END class.LanguageFolderObject
Class ilObjLanguageFolder contains all function to manage language support for ILIAS3 install,...
array $languages
contians all informations about languages
checkAllLanguages()
validate the logical structure of a lang-file
getLanguages()
gather all information about available languages
__construct(int $a_id, bool $a_call_by_reference=true)
Constructor $a_id reference_id or object_id $a_call_by_reference treat the id as reference_id (true) ...
removeLanguages(array $a_languages)
remove languages which are not installed AND has no lang-file
string $separator
separator value between module,identivier & value
addNewLanguages(array $a_languages)
add new languages
string $lang_default
indicator for the system language this language must not be deleted
string $lang_user
language that is in use by current user this language must not be deleted
string $lang_path
path to language files relative path is taken from ini file and added to absolute path of ilias
Class ilObjLanguage.
static cut_header(array $content)
remove lang-file haeder information from '$content' This function seeks for a special keyword where t...
Class ilObject Basic functions for all objects.
static _getObjectsByType(string $obj_type="", ?int $owner=null)
__construct(Container $dic, ilPlugin $plugin)
@inheritDoc
$lang
Definition: xapiexit.php:25