38 $main_tpl = $DIC->ui()->mainTemplate();
40 $ilAccess = $DIC[
'ilAccess'];
41 $this->tpl = $DIC->ui()->mainTemplate();
42 $this->
ctrl = $DIC->ctrl();
43 $this->
lng = $DIC->language();
44 $this->parent_gui = $ilObjOrgUnitGUI;
45 $this->
object = $ilObjOrgUnitGUI->getObject();
48 if (!$ilAccess->
checkAccess(
'write',
'', $this->object->getRefId())) {
49 $this->tpl->setOnScreenMessage(
'failure', $this->
lng->txt(
"permission_denied"),
true);
50 $this->
ctrl->redirect($this->parent_gui,
"");
56 $cmd = $this->
ctrl->getCmd();
60 public function editTranslations(
bool $a_get_post_values =
false,
bool $a_add =
false): void
62 $this->
lng->loadLanguageModule($this->
object->getType());
70 if ($a_get_post_values) {
72 foreach ($_POST[
"title"] as $k => $v) {
75 "desc" => $_POST[
"desc"][$k],
76 "lang" => $_POST[
"lang"][$k],
77 "default" => ($_POST[
"default"] == $k),
80 $table->setData($vals);
82 $data = $this->
object->getTranslations();
84 $data[][
"title"] =
"";
86 $table->setData(
$data);
88 $this->tpl->setContent($table->getHTML());
97 if (!isset($_POST[
"default"])) {
98 $this->tpl->setOnScreenMessage(
'failure', $this->
lng->txt(
"msg_no_default_language"));
103 if (array_key_exists(
"", $_POST[
"lang"])) {
104 $this->tpl->setOnScreenMessage(
'failure', $this->
lng->txt(
"msg_no_language_selected"));
109 if (count(array_unique($_POST[
"lang"])) < count($_POST[
"lang"])) {
110 $this->tpl->setOnScreenMessage(
'failure', $this->
lng->txt(
"msg_multi_language_selected"));
116 $this->
object->removeTranslations();
117 foreach ($_POST[
"title"] as $k => $v) {
118 $translations = $this->
object->getTranslations();
120 if (array_key_exists($_POST[
"lang"][$k], $translations)) {
121 $this->
object->updateTranslation(
125 ($_POST[
"default"] == $k) ? 1 : 0
128 $this->
object->addTranslation(
132 ($_POST[
"default"] == $k) ? 1 : 0
137 $this->tpl->setOnScreenMessage(
'success', $this->
lng->txt(
"msg_obj_modified"),
true);
138 $this->
ctrl->redirect($this,
"editTranslations");
146 if ($_POST[
"title"]) {
147 $k = max(array_keys($_POST[
"title"]));
149 $_POST[
"title"][$k] =
"";
161 foreach ($_POST[
"title"] as $k => $v) {
162 if ($_POST[
"check"][$k]) {
164 if ($k != $_POST[
"default"]) {
165 unset($_POST[
"title"][$k]);
166 unset($_POST[
"desc"][$k]);
167 unset($_POST[
"lang"][$k]);
169 $this->tpl->setOnScreenMessage(
'failure', $this->
lng->txt(
"msg_no_default_language"));
static stripSlashes(string $a_str, bool $a_strip_html=true, string $a_allow="")
checkAccess(string $a_permission, string $a_cmd, int $a_ref_id, string $a_type="", ?int $a_obj_id=null, ?int $a_tree_id=null)
check access for an object (provide $a_type and $a_obj_id if available for better performance) ...
saveTranslations()
Save title and translations.
deleteTranslations()
Remove translation.
__construct(object $ilObjOrgUnitGUI)
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
addTranslation()
Add a translation.
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
editTranslations(bool $a_get_post_values=false, bool $a_add=false)
ilAccessHandler $ilAccess
ilGlobalTemplateInterface $tpl