19 declare(strict_types=1);
73 $this->
toolbar = $DIC[
'ilToolbar'];
74 $this->
user = $DIC[
'ilUser'];
75 $this->
access = $DIC[
'ilAccess'];
76 $this->
lng = $DIC[
'lng'];
77 $this->
ctrl = $DIC[
'ilCtrl'];
78 $this->tpl = $DIC[
'tpl'];
79 $this->ui_factory = $DIC[
'ui.factory'];
80 $this->ui_renderer = $DIC[
'ui.renderer'];
81 $this->post_wrapper = $DIC->http()->wrapper()->post();
82 $this->request = $DIC->http()->request();
84 $this->lom_services = $DIC->learningObjectMetadata();
95 $this->hide_description = $hide;
100 $this->support_content_translation = $content_translation;
106 foreach ($this->obj_trans->getLanguages() as $k => $v) {
107 $data[$k][
'default'] = (
int) $v->isDefault();
108 $data[$k][
'title'] = $v->getTitle();
109 $data[$k][
'desc'] = $v->getDescription();
110 $data[$k][
'lang'] = $v->getLanguageCode();
119 $titles = $this->post_wrapper->has(
'title')
120 ? $this->post_wrapper->retrieve(
126 $descriptions = $this->post_wrapper->has(
'desc')
127 ? $this->post_wrapper->retrieve(
133 $languages = $this->post_wrapper->has(
'lang')
134 ? $this->post_wrapper->retrieve(
140 $default = $this->post_wrapper->has(
'default')
141 ? $this->post_wrapper->retrieve(
147 foreach ($titles as $k => $v) {
150 'desc' => $descriptions[$k],
151 'lang' => $languages[$k],
152 'default' => ($default == $k)
167 $this->title_descr_only = $val;
177 $this->fallback_lang_mode = $val;
188 self::CMD_LIST_TRANSLATIONS,
189 self::CMD_SAVE_TRANSLATIONS,
190 self::CMD_ADD_TRANSLATION,
191 self::CMD_DELETE_TRANSLATIONS,
192 self::CMD_CONFIRM_REMOVE_LANGUAGES,
193 self::CMD_SAVE_LANGUAGES,
194 self::CMD_SAVE_CONTENT_TRANSLATION_ACTIVATION,
195 self::CMD_DEACTIVATE_CONTENT_MULTILANG,
196 self::CMD_SET_FALLBACK
199 $this->
ctrl->getNextClass($this);
200 if (!$this->
access->checkAccess(
'write',
'', $this->obj_gui->getRefId())) {
201 $this->tpl->setOnScreenMessage(
'failure', $this->
lng->txt(
'no_permission'));
202 $this->
ctrl->redirect($this->obj_gui);
204 $cmd = $this->
ctrl->getCmd(self::CMD_LIST_TRANSLATIONS);
205 if (in_array($cmd, $commands)) {
217 $this->ui_factory->button()->standard(
218 $this->
lng->txt(
'obj_add_languages'),
219 $add_langs_modal->getShowSignal()
224 if ($this->support_content_translation) {
230 self::CMD_LIST_TRANSLATIONS,
231 !$this->hide_description,
232 $this->obj_trans->getMasterLanguage(),
234 $this->obj_trans->getFallbackLanguage()
236 if ($get_post_values) {
241 $page_content = $table->getHTML() . $this->ui_renderer->render($add_langs_modal);
243 if (isset($content_translation_modal)) {
244 $page_content .= $this->ui_renderer->render($content_translation_modal);
247 $this->tpl->setContent($page_content);
252 return $this->ui_factory->modal()->roundtrip(
253 $this->
lng->txt(
'confirm'),
254 $this->ui_factory->legacy()->content($this->
lng->txt(
'obj_select_master_lang')),
258 $this->
ctrl->getFormActionByClass(self::class, self::CMD_SAVE_LANGUAGES)
264 $lang_var_postfix =
'_multilang';
265 $deactivation_modal_text_tag =
'obj_deactivate_multilang_conf';
267 $lang_var_postfix =
'_content_lang';
268 $deactivation_modal_text_tag =
'obj_deactivate_content_transl_conf';
272 $this->tpl->setOnScreenMessage(
'info', $this->
lng->txt(
'obj_multilang_title_descr_only'));
276 if (!$this->obj_trans->getContentActivated()) {
278 $this->ui_factory->button()->standard(
279 $this->
lng->txt(
'obj_activate' . $lang_var_postfix),
280 $activate_modal->getShowSignal()
283 return $activate_modal;
288 $this->ui_factory->button()->standard(
289 $this->
lng->txt(
'obj_deactivate' . $lang_var_postfix),
290 $deactivate_modal->getShowSignal()
293 return $deactivate_modal;
298 return $this->ui_factory->modal()->interruptive(
299 $this->
lng->txt(
'confirm'),
300 $this->
lng->txt($text_tag),
301 $this->
ctrl->getLinkTargetByClass(self::class, self::CMD_DEACTIVATE_CONTENT_MULTILANG)
302 )->withActionButtonLabel($this->
lng->txt(
'confirm'));
307 return $this->ui_factory->modal()->roundtrip(
308 $this->
lng->txt(
'confirm'),
309 $this->ui_factory->legacy()->content($this->
lng->txt(
'obj_select_master_lang')),
313 $this->
ctrl->getFormActionByClass(self::class, self::CMD_SAVE_CONTENT_TRANSLATION_ACTIVATION)
320 if (!$this->post_wrapper->has(
'default') && $this->obj_trans->getMasterLanguage() ===
'') {
321 $this->tpl->setOnScreenMessage(
'failure', $this->
lng->txt(
'msg_no_default_language'));
327 $languages = $this->post_wrapper->has(
'lang')
328 ? $this->post_wrapper->retrieve(
330 $this->
refinery->kindlyTo()->dictOf(
331 $this->
refinery->kindlyTo()->string()
335 if (array_key_exists(
'', $languages)) {
336 $this->tpl->setOnScreenMessage(
'failure', $this->
lng->txt(
'msg_no_language_selected'));
342 if (count(array_unique($languages)) < count($languages)) {
343 $this->tpl->setOnScreenMessage(
'failure', $this->
lng->txt(
'msg_multi_language_selected'));
349 $this->obj_trans->setLanguages([]);
351 $titles = $this->post_wrapper->has(
'title')
352 ? $this->post_wrapper->retrieve(
354 $this->
refinery->kindlyTo()->dictOf(
355 $this->
refinery->kindlyTo()->string()
359 $descriptions = $this->post_wrapper->has(
'desc')
360 ? $this->post_wrapper->retrieve(
362 $this->
refinery->kindlyTo()->dictOf(
363 $this->
refinery->kindlyTo()->string()
368 $post_default = $this->post_wrapper->has(
'default')
369 ? $this->post_wrapper->retrieve(
375 $check = $this->post_wrapper->has(
'check')
376 ? $this->post_wrapper->retrieve(
382 if ($this->obj_trans->getFallbackLanguage() !==
'') {
383 $obj_store_lang = $this->obj_trans->getFallbackLanguage();
385 $obj_store_lang = ($this->obj_trans->getMasterLanguage() !=
'')
386 ? $this->obj_trans->getMasterLanguage()
387 : $languages[$post_default];
390 foreach ($titles as $k => $v) {
392 $is_default = ($post_default === $k);
395 if ($this->obj_trans->getMasterLanguage() !=
'') {
396 $is_default = ($this->obj_trans->getMasterLanguage() === $languages[$k]);
398 if ($languages[$k] === $obj_store_lang) {
403 $this->obj_trans->addLanguage(
410 $this->obj_trans->save();
411 if (method_exists($this->obj,
'setObjectTranslation')) {
412 $this->obj->setObjectTranslation($this->obj_trans);
414 $this->obj->update();
416 $this->tpl->setOnScreenMessage(
'success', $this->
lng->txt(
'msg_obj_modified'),
true);
417 $this->
ctrl->redirect($this, self::CMD_LIST_TRANSLATIONS);
423 foreach ($this->lom_services->dataHelper()->getAllLanguages() as $language) {
424 $options[$language->value()] = $language->presentableLabel();
428 $master_lang = $this->obj_trans->getMasterLanguage();
429 $trafo = $this->
refinery->custom()->transformation(
430 function (array $vs) use ($master_lang) {
432 foreach ($vs as $v) {
433 if ($v !== $master_lang && $v !==
'') {
440 return $this->ui_factory->input()->field()->multiSelect(
441 $this->
lng->txt(
'obj_additional_langs'),
446 $trafo = $this->
refinery->custom()->transformation(
447 fn($v) => in_array($v, array_keys($options)) ? $v : $this->
lng->getDefaultLanguage()
450 return $this->ui_factory->input()->field()->select(
451 $this->
lng->txt(
'obj_master_lang'),
454 ->withValue($this->
user->getLanguage());
460 ->withRequest($this->request)
462 $this->obj_trans->setMasterLanguage(
$data[
'lang']);
463 if (!in_array(
$data[
'lang'], $this->obj_trans->getLanguages())) {
464 $this->obj_trans->addLanguage(
466 $this->obj->getTitle(),
467 $this->obj->getDescription(),
471 $this->obj_trans->save();
473 $this->
ctrl->redirect($this, self::CMD_LIST_TRANSLATIONS);
479 $this->obj_trans->setMasterLanguage(
'');
480 $this->obj_trans->setLanguages([]);
481 $this->obj_trans->save();
483 $this->obj_trans->deactivateContentTranslation();
485 $this->tpl->setOnScreenMessage(
'success', $this->
lng->txt(
'obj_cont_transl_deactivated'),
true);
487 $this->tpl->setOnScreenMessage(
'success', $this->
lng->txt(
'obj_multilang_deactivated'),
true);
490 $this->
ctrl->redirect($this, self::CMD_LIST_TRANSLATIONS);
496 ->withRequest($this->request)
500 $this->tpl->setOnScreenMessage(
'failure', $this->
lng->txt(
'no_checkbox'),
true);
501 $this->
ctrl->redirect($this, self::CMD_LIST_TRANSLATIONS);
505 $this->obj_trans->addLanguage($lang,
'',
'',
false);
508 $this->obj_trans->save();
509 $this->tpl->setOnScreenMessage(
'success', $this->
lng->txt(
'saved_successfully'),
true);
510 $this->
ctrl->redirect($this, self::CMD_LIST_TRANSLATIONS);
515 $this->
lng->loadLanguageModule(
'meta');
518 $languages = $this->post_wrapper->has(
'lang')
519 ? $this->post_wrapper->retrieve(
525 $to_be_deleted = $this->post_wrapper->has(
'check')
526 ? $this->post_wrapper->retrieve(
532 if (count($to_be_deleted) === 0) {
533 $this->tpl->setOnScreenMessage(
'info', $this->
lng->txt(
'no_checkbox'),
true);
534 $this->
ctrl->redirect($this, self::CMD_LIST_TRANSLATIONS);
538 $cgui->setFormAction($this->
ctrl->getFormAction($this));
539 $cgui->setHeaderText($this->
lng->txt(
'obj_conf_delete_lang'));
540 $cgui->setCancel($this->
lng->txt(
'cancel'), self::CMD_LIST_TRANSLATIONS);
541 $cgui->setConfirm($this->
lng->txt(
'remove'), self::CMD_DELETE_TRANSLATIONS);
543 foreach (array_keys($to_be_deleted) as $index) {
544 if (!array_key_exists($index, $languages)) {
547 $cgui->addItem(
'lang[]', $languages[$index], $this->
lng->txt(
'meta_l_' . $languages[$index]));
550 $this->tpl->setContent($cgui->getHTML());
556 $langs_to_be_deleted = $this->post_wrapper->has(
'lang')
557 ? $this->post_wrapper->retrieve(
563 foreach ($langs_to_be_deleted as
$lang) {
564 $this->obj_trans->removeLanguage($lang);
566 $this->obj_trans->save();
567 $this->tpl->setOnScreenMessage(
'success', $this->
lng->txt(
'saved_successfully'),
true);
568 $this->
ctrl->redirect($this, self::CMD_LIST_TRANSLATIONS);
573 $default_lang = $this->obj_trans->getDefaultLanguage();
574 return $this->
refinery->custom()->transformation(
575 function (?array $vs) use ($default_lang) {
581 foreach ($vs as $k => $v) {
582 if ($v !== $default_lang) {
583 $langs[$k] = (string) $v;
594 $checkboxes = $this->post_wrapper->has(
'check')
595 ? $this->post_wrapper->retrieve(
597 $this->
refinery->kindlyTo()->dictOf(
603 if ($checkboxes === []) {
604 $this->tpl->setOnScreenMessage(
'failure', $this->
lng->txt(
'obj_select_one_language'));
608 $checked = key($checkboxes);
610 $languages = $this->post_wrapper->has(
'lang')
611 ? $this->post_wrapper->retrieve(
617 $fallback_lang = $languages[$checked];
618 if ($fallback_lang !== $this->obj_trans->getFallbackLanguage()) {
619 $this->obj_trans->setFallbackLanguage($fallback_lang);
621 $this->obj_trans->setFallbackLanguage(
'');
623 $this->obj_trans->save();
624 $this->tpl->setOnScreenMessage(
'info', $this->
lng->txt(
'msg_obj_modified'),
true);
625 $this->
ctrl->redirect($this, self::CMD_LIST_TRANSLATIONS);
This describes commonalities between the different modals.
const CMD_LIST_TRANSLATIONS
setTitleDescrOnlyMode(bool $val)
Some objects like learning modules do not support to translate only the title and the description...
const CMD_SAVE_TRANSLATIONS
addContentTranslationToolbarActionAndRetrieveCorrespondingModal()
TableGUI class for title/description translations.
LOMServices $lom_services
static stripSlashes(string $a_str, bool $a_strip_html=true, string $a_allow="")
getEnableFallbackLanguage()
getActivateMultilingualityModal()
RequestInterface $request
getTableValuesByRequest()
bool $support_content_translation
ilGlobalTemplateInterface $tpl
while($session_entry=$r->fetchRow(ilDBConstants::FETCHMODE_ASSOC)) return null
confirmDeleteTranslations()
getMultiLangFormInput(bool $add=false)
getConfirmDeactivateMultilingualityModal(string $text_tag)
Class ilObjectGUI Basic methods of all Output classes.
static getInstance(int $obj_id)
getTableValuesByObjects()
const CMD_ADD_TRANSLATION
ArrayBasedRequestWrapper $post_wrapper
supportContentTranslation(bool $content_translation)
deactivateContentMultiLang()
setEnableFallbackLanguage(bool $val)
__construct(Container $dic, ilPlugin $plugin)
const CMD_CONFIRM_REMOVE_LANGUAGES
const CMD_SAVE_CONTENT_TRANSLATION_ACTIVATION
const CMD_DEACTIVATE_CONTENT_MULTILANG
hideDescription(bool $hide)
retrieveTrafoToRemoveDefaultLang()
static _lookupType(int $id, bool $reference=false)
saveContentTranslationActivation()
GUI class for object translation handling.
ilObjectTranslation $obj_trans
listTranslations(bool $get_post_values=false, bool $add=false)
Class ArrayBasedRequestWrapper.
const CMD_DELETE_TRANSLATIONS