19 declare(strict_types=1);
45 public function __construct(?array $a_data,
int $a_id,
bool $a_call_by_reference)
49 $this->
lng->loadLanguageModule(
"lng");
52 $here_uri = $this->df->uri($this->request->getUri()->__toString());
54 $query_params_namespace = [
'language_folder'];
57 $query_params_namespace,
63 $this->action_token = $action_parameter_token;
64 $this->id_token = $row_id_token;
68 $this->languageFolderTable =
new ilLanguageFolderTable($folder, $url_builder, $action_parameter_token, $row_id_token);
78 $table = $this->languageFolderTable->getTable();
87 'lang_refresh_confirm_selected',
88 "lang_refresh_confirm_info" 90 $refresh = $this->ui_factory->button()->standard(
91 $this->
lng->txt(
"refresh_languages"),
93 )->withOnClick($modal->getShowSignal());
95 $this->
toolbar->addComponent($modal);
96 $this->
toolbar->addComponent($refresh);
99 $check = $this->ui_factory->button()->standard(
100 $this->
lng->txt(
"check_languages"),
101 $this->
getUrl(
"checkLanguage")
106 $ilClientIniFile = $DIC[
"ilClientIniFile"];
107 if ($ilClientIniFile->variableExists(
"system",
"LANGUAGE_LOG")) {
108 $download = $this->ui_factory->button()->standard(
109 $this->
lng->txt(
"lng_download_deprecated"),
110 $this->
ctrl->getLinkTarget($this,
"listDeprecated")
112 $this->
toolbar->addComponent($download);
116 $modal_on = $this->ui_factory->modal()->interruptive(
118 $this->
lng->txt(
"lng_enable_language_detection"),
119 $this->
ctrl->getFormActionByClass(self::class,
"enableLanguageDetection")
121 ->withActionButtonLabel($this->
lng->txt(
'ok'));
122 $modal_off = $this->ui_factory->modal()->interruptive(
124 $this->
lng->txt(
"lng_disable_language_detection"),
125 $this->
ctrl->getFormActionByClass(self::class,
"disableLanguageDetection")
127 ->withActionButtonLabel($this->
lng->txt(
'ok'));
128 $toggleButton = $this->ui_factory->button()->toggle(
129 $this->
lng->txt(
"language_detection"),
130 $modal_on->getShowSignal(),
131 $modal_off->getShowSignal(),
132 (bool) ($this->
settings->get(
"lang_detection"))
134 ->withAriaLabel($this->
lng->txt(
"lng_switch_language_detection"));
135 $this->
toolbar->addComponent($modal_on);
136 $this->
toolbar->addComponent($modal_off);
137 $this->
toolbar->addComponent($toggleButton);
140 $this->tpl->setContent($this->ui_renderer->render($table->withRequest($this->request)));
146 $title = $this->
lng->txt($title);
152 $some_changed =
false;
153 foreach ($ids as
$id) {
155 $lang_title = $this->
lng->txt(
"meta_l_" . $lang_key);
157 if (!empty($last_change)) {
158 $some_changed =
true;
159 $lang_title .=
" (" . $this->
lng->txt(
"last_change") .
" " 165 $items[] =
$f->modal()->interruptiveItem()->standard($id, $lang_title);
176 $modal =
$f->modal()->interruptive(
181 if (!empty($items)) {
182 $modal = $modal->withAffectedItems($items)
183 ->withActionButtonLabel($title);
185 $modal = $modal->withActionButtonLabel($this->
lng->txt(
'ok'));
196 $this->
lng->loadLanguageModule(
"meta");
200 $key = $langObj->install();
203 $lang_installed[] = $key;
209 if (isset($lang_installed)) {
210 if (count($lang_installed) === 1) {
211 $this->data = $this->
lng->txt(
"meta_l_" . $lang_installed[0]) .
" " . strtolower($this->
lng->txt(
"installed")) .
".";
214 foreach ($lang_installed as $lang_key) {
215 $langnames[] = $this->
lng->txt(
"meta_l_" . $lang_key);
217 $this->data = implode(
", ", $langnames) .
" " . strtolower($this->
lng->txt(
"installed")) .
".";
220 $this->data = $this->
lng->txt(
"languages_already_installed");
233 $this->
lng->loadLanguageModule(
"meta");
237 $key = $langObj->install();
240 $lang_installed[] = $key;
246 $key = $langObj->install(
"local");
249 $local_installed[] = $key;
255 if (isset($lang_installed)) {
256 if (count($lang_installed) === 1) {
257 $this->data = $this->
lng->txt(
"meta_l_" . $lang_installed[0]) .
" " . strtolower($this->
lng->txt(
"installed")) .
".";
260 foreach ($lang_installed as $lang_key) {
261 $langnames[] = $this->
lng->txt(
"meta_l_" . $lang_key);
263 $this->data = implode(
", ", $langnames) .
" " . strtolower($this->
lng->txt(
"installed")) .
".";
267 if (isset($local_installed)) {
268 if (count($local_installed) === 1) {
269 $this->data .=
" " . $this->
lng->txt(
"meta_l_" . $local_installed[0]) .
" " . $this->
lng->txt(
"local_language_file") .
" " . strtolower($this->
lng->txt(
"installed")) .
".";
272 foreach ($local_installed as $lang_key) {
273 $langnames[] = $this->
lng->txt(
"meta_l_" . $lang_key);
275 $this->data .=
" " . implode(
", ", $langnames) .
" " . $this->
lng->txt(
"local_language_files") .
" " . strtolower($this->
lng->txt(
"installed")) .
".";
278 $this->data .=
" " . $this->
lng->txt(
"local_languages_already_installed");
291 $this->
lng->loadLanguageModule(
"meta");
299 if (!($sys_lang = $langObj->isSystemLanguage()) && !($usr_lang = $langObj->isUserLanguage())) {
300 $key = $langObj->uninstall();
302 $lang_uninstalled[] = $key;
309 if (isset($lang_uninstalled)) {
310 if (count($lang_uninstalled) === 1) {
311 $this->data = $this->
lng->txt(
"meta_l_" . $lang_uninstalled[0]) .
" " . $this->
lng->txt(
"uninstalled");
314 foreach ($lang_uninstalled as $lang_key) {
315 $langnames[] = $this->
lng->txt(
"meta_l_" . $lang_key);
318 $this->data = implode(
", ", $langnames) .
" " . $this->
lng->txt(
"uninstalled");
320 } elseif ($sys_lang) {
321 $this->data = $this->
lng->txt(
"cannot_uninstall_systemlanguage");
322 } elseif ($usr_lang) {
323 $this->data = $this->
lng->txt(
"cannot_uninstall_language_in_use");
325 $this->data = $this->
lng->txt(
"languages_already_uninstalled");
339 $this->data = $this->
lng->txt(
"selected_languages_updated");
340 $this->
lng->loadLanguageModule(
"meta");
343 foreach ($ids as
$id) {
346 if ($langObj->isInstalled()) {
347 if ($langObj->check()) {
348 $langObj->flush(
"all");
350 $langObj->setTitle($langObj->getKey());
351 $langObj->setDescription(
"installed");
353 $refreshed[] = $langObj->getKey();
355 $this->data .=
"<br />" . $this->
lng->txt(
"meta_l_" . $langObj->getKey());
372 $this->data = $this->
lng->txt(
"languages_updated");
382 $this->data = $this->
lng->txt(
"selected_languages_updated");
383 $this->
lng->loadLanguageModule(
"meta");
386 foreach ($ids as
$id) {
388 if ($langObj->refresh()) {
389 $refreshed[] = $langObj->getKey();
390 $this->data .=
"<br />" . $this->
lng->txt(
"meta_l_" . $langObj->getKey());
405 $ilUser = $DIC->user();
408 $this->
lng->loadLanguageModule(
"meta");
410 #require_once "./Services/User/classes/class.ilObjUser.php"; 413 if (count($ids) !== 1) {
414 $this->tpl->setOnScreenMessage(
'failure', $this->
lng->txt(
"choose_only_one_language") .
"<br/>" . $this->
lng->txt(
"action_aborted"),
true);
415 $this->
ctrl->redirect($this,
"view");
422 if ($newUserLangObj->isUserLanguage()) {
423 $this->tpl->setOnScreenMessage(
'failure', $this->
lng->txt(
"meta_l_" . $newUserLangObj->getKey()) .
" " . $this->
lng->txt(
"is_already_your") .
" " . $this->
lng->txt(
"user_language") .
"<br/>" . $this->
lng->txt(
"action_aborted"),
true);
424 $this->
ctrl->redirect($this,
"view");
427 if (!$newUserLangObj->isInstalled()) {
428 $this->tpl->setOnScreenMessage(
'failure', $this->
lng->txt(
"meta_l_" . $newUserLangObj->getKey()) .
" " . $this->
lng->txt(
"language_not_installed") .
"<br/>" . $this->
lng->txt(
"action_aborted"),
true);
429 $this->
ctrl->redirect($this,
"view");
432 $curUser =
new ilObjUser($ilUser->getId());
433 $curUser->setLanguage($newUserLangObj->getKey());
436 $this->data = $this->
lng->txt(
"user_language") .
" " . $this->
lng->txt(
"changed_to") .
" " . $this->
lng->txt(
"meta_l_" . $newUserLangObj->getKey()) .
".";
448 $this->
lng->loadLanguageModule(
"meta");
451 if (count($ids) !== 1) {
452 $this->tpl->setOnScreenMessage(
'failure', $this->
lng->txt(
"choose_only_one_language") .
"<br/>" . $this->
lng->txt(
"action_aborted"),
true);
453 $this->
ctrl->redirect($this,
"view");
460 if ($newSysLangObj->isSystemLanguage()) {
461 $this->tpl->setOnScreenMessage(
'failure', $this->
lng->txt(
"meta_l_" . $newSysLangObj->getKey()) .
" " . $this->
lng->txt(
"is_already_your") .
" " . $this->
lng->txt(
"system_language") .
"<br/>" . $this->
lng->txt(
"action_aborted"),
true);
462 $this->
ctrl->redirect($this,
"view");
465 if (!$newSysLangObj->isInstalled()) {
466 $this->tpl->setOnScreenMessage(
'failure', $this->
lng->txt(
"meta_l_" . $newSysLangObj->getKey()) .
" " . $this->
lng->txt(
"language_not_installed") .
"<br/>" . $this->
lng->txt(
"action_aborted"),
true);
467 $this->
ctrl->redirect($this,
"view");
470 $this->
ilias->setSetting(
"language", $newSysLangObj->getKey());
473 $this->
ilias->ini->setVariable(
"language",
"default", $newSysLangObj->getKey());
474 $this->
ilias->ini->write();
476 $this->data = $this->
lng->txt(
"system_language") .
" " . $this->
lng->txt(
"changed_to") .
" " . $this->
lng->txt(
"meta_l_" . $newSysLangObj->getKey()) .
".";
487 $this->data = $this->
object->checkAllLanguages();
491 public function out(): void
493 $this->tpl->setOnScreenMessage(
'info', $this->data,
true);
494 $this->
ctrl->redirect($this,
"view");
508 $this->tabs_gui->addTab(
"settings", $this->
lng->txt(
"settings"), $this->
ctrl->getLinkTarget($this,
"view"));
512 $this->tabs_gui->addTab(
"perm_settings", $this->
lng->txt(
"perm_settings"), $this->
ctrl->getLinkTargetByClass(array(self::class,
"ilpermissiongui"),
"perm"));
521 $next_class = $this->
ctrl->getNextClass($this);
522 $cmd = $this->
ctrl->getCmd();
525 switch ($next_class) {
526 case "ilpermissiongui":
527 include_once
"Services/AccessControl/classes/class.ilPermissionGUI.php";
529 $this->tabs_gui->activateTab(
"perm_settings");
530 $this->
ctrl->forwardCommand($perm_gui);
534 $this->tabs_gui->activateTab(
"settings");
538 $this->
lng->loadLanguageModule(
"meta");
542 case 'confirmRefresh':
546 case 'checkLanguage':
551 if (current($ids) ===
'ALL_OBJECTS') {
554 foreach ($languages as
$lang) {
556 if ($langObj->isInstalled()) {
557 $ids[] = (string) $lang[
"obj_id"];
565 'lang_refresh_confirm_selected',
566 "lang_refresh_confirm_info" 568 echo(
$r->renderAsync([$modal]));
570 case 'refreshConfirmed':
576 if (current($ids) ===
'ALL_OBJECTS') {
579 foreach ($languages as
$lang) {
581 if ($langObj->isInstalled()) {
582 $ids[] = (string) $lang[
"obj_id"];
589 'uninstallConfirmed',
590 'lang_uninstall_confirm' 592 echo(
$r->renderAsync([$modal]));
594 case 'uninstallConfirmed':
600 if (current($ids) ===
'ALL_OBJECTS') {
603 foreach ($languages as
$lang) {
605 if (!$langObj->isInstalled()) {
606 $ids[] = (string) $lang[
"obj_id"];
612 case 'install_local':
614 if (current($ids) ===
'ALL_OBJECTS') {
617 foreach ($languages as
$lang) {
618 $ids[] = (string) $lang[
"obj_id"];
623 case 'lang_uninstall_changes':
625 if (current($ids) ===
'ALL_OBJECTS') {
628 foreach ($languages as
$lang) {
630 if ($langObj->isInstalled()) {
631 $ids[] = (string) $lang[
"obj_id"];
639 'lang_uninstall_changes_confirm' 641 echo(
$r->renderAsync([$modal]));
643 case 'uninstallChanges':
647 case 'setSystemLanguage':
651 case 'setUserLanguage':
673 if (!$this->request_wrapper->has($param)) {
676 $trafo = $this->
refinery->byTrying([
677 $this->
refinery->kindlyTo()->null(),
678 $this->
refinery->kindlyTo()->string()
680 return $this->request_wrapper->retrieve($param, $trafo);
690 foreach ($languages as
$lang) {
692 if ($langObj->isInstalled()) {
693 $ids[] = (string) $lang[
"obj_id"];
702 $this->
lng->loadLanguageModule(
"meta");
706 if (!empty($a_ids)) {
708 $header = $this->
lng->txt(
"lang_refresh_confirm");
711 $header = $this->
lng->txt(
"lang_refresh_confirm_selected");
713 $this->tpl->setOnScreenMessage(
'failure', $this->
lng->txt(
"no_checkbox"),
true);
714 $this->
ctrl->redirect($this,
"view");
718 $some_changed =
false;
719 foreach ($ids as
$id) {
721 $lang_title = $this->
lng->txt(
"meta_l_" . $lang_key);
723 if (!empty($last_change)) {
724 $some_changed =
true;
725 $lang_title .=
" (" . $this->
lng->txt(
"last_change") .
" " 728 $conf_screen->addItem(
"id[]", (
string) $id, $lang_title);
731 $conf_screen->setFormAction($this->
ctrl->getFormAction($this));
733 $header .=
"<br />" . $this->
lng->txt(
"lang_refresh_confirm_info");
735 $conf_screen->setHeaderText($header);
736 $conf_screen->setCancel($this->
lng->txt(
"cancel"),
"view");
737 $conf_screen->setConfirm($this->
lng->txt(
"ok"),
"refreshSelected");
738 $this->tpl->setContent($conf_screen->getHTML());
745 $this->
lng->loadLanguageModule(
"meta");
747 $conf_screen->setFormAction($this->
ctrl->getFormAction($this));
748 $conf_screen->setHeaderText($this->
lng->txt(
"lang_uninstall_confirm"));
751 $conf_screen->addItem(
"id[]", $id, $this->
lng->txt(
"meta_l_" . $lang_title));
753 $conf_screen->setCancel($this->
lng->txt(
"cancel"),
"view");
754 $conf_screen->setConfirm($this->
lng->txt(
"ok"),
"uninstall");
755 $this->tpl->setContent($conf_screen->getHTML());
762 $this->
lng->loadLanguageModule(
"meta");
764 $conf_screen->setFormAction($this->
ctrl->getFormAction($this));
765 $conf_screen->setHeaderText($this->
lng->txt(
"lang_uninstall_changes_confirm"));
768 $conf_screen->addItem(
"id[]", (
string)
$id, $this->
lng->txt(
"meta_l_" . $lang_title));
770 $conf_screen->setCancel($this->
lng->txt(
"cancel"),
"view");
771 $conf_screen->setConfirm($this->
lng->txt(
"ok"),
"uninstallChanges");
772 $this->tpl->setContent($conf_screen->getHTML());
782 'confirmRefreshSelected' =>
$f->table()->action()->standard(
783 $this->
lng->txt(
"refresh"),
784 $this->url_builder->withParameter($this->action_token,
"confirmRefreshSelected"),
787 'install' =>
$f->table()->action()->standard(
788 $this->
lng->txt(
"install"),
789 $this->url_builder->withParameter($this->action_token,
"install"),
792 'installLocal' =>
$f->table()->action()->standard(
793 $this->
lng->txt(
"install_local"),
794 $this->url_builder->withParameter($this->action_token,
"installLocal"),
797 'confirmUninstall' =>
$f->table()->action()->standard(
798 $this->
lng->txt(
"uninstall"),
799 $this->url_builder->withParameter($this->action_token,
"confirmUninstall"),
802 'confirmUninstallChanges' =>
$f->table()->action()->standard(
803 $this->
lng->txt(
"lang_uninstall_changes"),
804 $this->url_builder->withParameter($this->action_token,
"confirmUninstallChanges"),
807 'setSystemLanguage' =>
$f->table()->action()->single(
808 $this->
lng->txt(
"setSystemLanguage"),
809 $this->url_builder->withParameter($this->action_token,
"setSystemLanguage"),
812 'setUserLanguage' =>
$f->table()->action()->single(
813 $this->
lng->txt(
"setUserLanguage"),
814 $this->url_builder->withParameter($this->action_token,
"setUserLanguage"),
817 'editFolder' =>
$f->table()->action()->single(
818 $this->
lng->txt(
"edit"),
819 $this->url_builder->withParameter($this->action_token,
"editFolder"),
827 $this->
ctrl->setParameterByClass(
"ilobjlanguageextgui",
"obj_id", current($ids));
828 $this->
ctrl->redirectByClass(
"ilobjlanguageextgui");
836 $this->
settings->set(
"lang_detection",
'0');
837 $this->tpl->setOnScreenMessage(
'success', $this->
lng->txt(
"saved_successfully"));
846 $this->
settings->set(
"lang_detection",
'1');
847 $this->tpl->setOnScreenMessage(
'success', $this->
lng->txt(
"saved_successfully"));
856 $button = $this->ui_factory->button()->standard(
857 $this->
lng->txt(
"download"),
858 $this->
ctrl->getLinkTarget($this,
"downloadDeprecated")
860 $this->
toolbar->addComponent($button);
862 include_once
"./Services/Language/classes/class.ilLangDeprecated.php";
866 foreach (
$d->getDeprecatedLangVars() as $key => $mod) {
867 $res .= $mod .
"," . $key .
"\n";
870 $this->tpl->setContent(
"<pre>" .
$res .
"</pre>");
878 include_once
"./Services/Language/classes/class.ilLangDeprecated.php";
881 foreach (
$d->getDeprecatedLangVars() as $key => $mod) {
882 $res .= $mod .
"," . $key .
"\n";
888 protected function getUrl(
string $action, ?array $lang_ids =
null): string
890 $url_builder = $this->url_builder->
withParameter($this->action_token, $action);
892 $url_builder = $url_builder->
withParameter($this->id_token, $lang_ids);
894 return $url_builder->
buildURI()->__toString();
900 if ($this->request_wrapper->has($this->id_token->getName())) {
901 $ids = $this->request_wrapper->retrieve(
902 $this->id_token->getName(),
903 $this->
refinery->custom()->transformation(fn($v) => $v)
editFolderObject(array $ids)
getTabs()
Retrieves and adds tabs based on user permissions.
static _getObjectsByType(string $obj_type="", ?int $owner=null)
buildURI()
Get a URI representation of the full URL including query string and fragment/hash.
prepareOutput(bool $show_sub_objects=true)
refreshObject()
update all installed languages
refreshSelectedObject(array $ids)
update selected languages
Interface Observer Contains several chained tasks and infos about them.
installLocalObject(array $ids)
Install local language modifications.
acquireParameters(array $namespace, string ... $names)
listDeprecatedObject()
Download deprecated lang entries.
URLBuilderToken $id_token
static deliverData(string $a_data, string $a_filename, string $mime="application/octet-stream")
getUrl(string $action, ?array $lang_ids=null)
uninstallChangesObject(array $ids)
Uninstall local changes in the database.
confirmRefreshSelectedObject(array $a_ids=[])
while($session_entry=$r->fetchRow(ilDBConstants::FETCHMODE_ASSOC)) return null
Search for deprecated lang vars.
static _lookupTitle(int $obj_id)
static refreshPlugins(?array $a_lang_keys=null)
Refresh languages of activated plugins $a_lang_keys keys of languages to be refreshed (not yet suppor...
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
Class ilObjectGUI Basic methods of all Output classes.
Class ilObjForumAdministration.
ilLanguageFolderTable $languageFolderTable
downloadDeprecatedObject()
Download deprecated lang entries.
checkPermissionBool(string $perm, string $cmd="", string $type="", ?int $ref_id=null)
enableLanguageDetectionObject()
Enable language detection.
viewObject()
show installed languages
confirmUninstallChangesObject()
withParameter(URLBuilderToken $token, string|array $value)
Change an acquired parameter's value if the supplied token is valid.
__construct(Container $dic, ilPlugin $plugin)
static formatDate(ilDateTime $date, bool $a_skip_day=false, bool $a_include_wd=false, bool $include_seconds=false, ?ilObjUser $user=null,)
buildConfirmModal(array $ids, string $title, string $action, string $text, string $add_text='')
installObject(array $ids)
install languages
disableLanguageDetectionObject()
Disable language detection.
static refreshAll()
Refresh all installed languages.
uninstallObject(array $ids)
uninstall language
getCommandFromQueryToken(string $param)
static _getLastLocalChange(string $a_key)
get the date of the last local change $a_key language key Return change_date "yyyy-mm-dd hh:mm:ss" ...
exit
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
URLBuilderToken $action_token
checkPermission(string $perm, string $cmd="", string $type="", ?int $ref_id=null)
setSystemLanguageObject(array $ids)
set the system language
checkLanguageObject()
check all languages
Class ilObjLanguageFolderGUI.
setUserLanguageObject(array $ids)
set user language