ILIAS  trunk Revision v11.0_alpha-1689-g66c127b4ae8
All Data Structures Namespaces Files Functions Variables Enumerations Enumerator Modules Pages
class.ilMMItemTranslationGUI.php
Go to the documentation of this file.
1 <?php
2 
19 declare(strict_types=1);
20 
23 
29 {
30  use DIC;
31 
32  public const P_TRANSLATIONS = 'translations';
33  public const P_DELETE = 'delete';
34  public const CMD_ADD_LANGUAGE = "addLanguages";
35  public const CMD_SAVE_LANGUAGES = "saveLanguages";
36  public const CMD_SAVE_TRANSLATIONS = "saveTranslations";
37  public const CMD_DELETE_TRANSLATIONS = "deleteTranslations";
38  public const CMD_DEFAULT = 'index';
39  public const IDENTIFIER = 'identifier';
42 
46  public function __construct(private ilMMItemFacadeInterface $item_facade, private ilMMItemRepository $repository)
47  {
48  global $DIC;
49  $this->main_tpl = $DIC->ui()->mainTemplate();
50  $this->lom_services = $DIC->learningObjectMetadata();
51  $this->lng()->loadLanguageModule("mme");
52  }
53 
54  public function executeCommand(): void
55  {
56  $this->ctrl()->saveParameter($this, self::IDENTIFIER);
57  $cmd = $this->ctrl()->getCmd(self::CMD_DEFAULT);
58  $this->{$cmd}();
59  }
60 
61  protected function index(): void
62  {
63  $this->initToolbar();
64 
65  $table = new ilMMItemTranslationTableGUI($this, $this->item_facade);
66  $this->tpl()->setContent($table->getHTML());
67  }
68 
69  protected function initToolbar(): void
70  {
71  $this->toolbar()->addButton(
72  $this->lng()->txt("add_languages"),
73  $this->ctrl()
74  ->getLinkTarget($this, self::CMD_ADD_LANGUAGE)
75  );
76  }
77 
78  protected function saveTranslations(): void
79  {
80  $to_translate = (array) $this->http()->request()->getParsedBody()[self::P_TRANSLATIONS];
81  foreach ($to_translate as $id => $data) {
85  $translation = ilMMItemTranslationStorage::find($id);
86  $translation->setTranslation($data['translation']);
87  $translation->update();
88  }
89  $this->repository->clearCache();
90  $this->main_tpl->setOnScreenMessage('info', $this->lng()->txt('msg_translations_saved'), true);
91  $this->cancel();
92  }
93 
94  protected function deleteTranslations(): void
95  {
96  $to_delete = (array) ($this->http()->request()->getParsedBody()[self::P_DELETE] ?? []);
97  foreach ($to_delete as $id) {
98  ilMMItemTranslationStorage::find($id)->delete();
99  }
100  $this->repository->updateItem($this->item_facade);
101  $this->main_tpl->setOnScreenMessage('info', $this->lng()->txt('msg_translations_deleted'), true);
102  $this->cancel();
103  }
104 
105  protected function addLanguages(): void
106  {
107  $form = $this->getLanguagesForm();
108 
109  $this->tpl()->setContent($form->getHTML());
110  }
111 
112  protected function saveLanguages(): void
113  {
114  $form = $this->getLanguagesForm();
115  if ($form->checkInput()) {
116  $ad = $form->getInput("additional_langs");
117  if (is_array($ad)) {
118  foreach ($ad as $language_key) {
119  ilMMItemTranslationStorage::storeTranslation($this->item_facade->identification(), $language_key, "");
120  }
121  }
122  $this->repository->updateItem($this->item_facade);
123  $this->main_tpl->setOnScreenMessage('info', $this->lng()->txt("msg_languages_added"), true);
124  $this->cancel();
125  }
126 
127  $this->main_tpl->setOnScreenMessage('failure', $this->lng()->txt('err_check_input'));
128  $form->setValuesByPost();
129  $this->tpl()->setContent($form->getHTML());
130  }
131 
135  protected function getLanguagesForm(): ilPropertyFormGUI
136  {
137  $form = new ilPropertyFormGUI();
138  $form->setFormAction($this->ctrl()->getFormAction($this));
139 
140  // additional languages
141  $options = [];
142  foreach ($this->lom_services->dataHelper()->getAllLanguages() as $language) {
143  $options[$language->value()] = $language->presentableLabel();
144  }
145  $options = ["" => $this->lng()->txt("please_select")] + $options;
146  $si = new ilSelectInputGUI($this->lng()->txt("additional_langs"), "additional_langs");
147  $si->setOptions($options);
148  $si->setMulti(true);
149  $form->addItem($si);
150 
151  $form->setTitle($this->lng()->txt("add_languages"));
152  $form->addCommandButton(self::CMD_SAVE_LANGUAGES, $this->lng()->txt("save"));
153  $form->addCommandButton(self::CMD_DEFAULT, $this->lng()->txt("cancel"));
154 
155  return $form;
156  }
157 
158  protected function cancel(): void
159  {
160  $this->ctrl()->redirect($this, self::CMD_DEFAULT);
161  }
162 }
This class represents a selection list property in a property form.
repository()
description: > Example for rendering a repository card
Definition: repository.php:33
ilGlobalTemplateInterface $main_tpl
Class ilMMItemRepository.
static http()
Fetches the global http state from ILIAS.
global $DIC
Definition: shib_login.php:22
Class ilMMItemTranslationGUI.
Class ilMMItemTranslationTableGUI.
__construct(private ilMMItemFacadeInterface $item_facade, private ilMMItemRepository $repository)
ilMMItemTranslationGUI constructor.
$id
plugin.php for ilComponentBuildPluginInfoObjectiveTest::testAddPlugins
Definition: plugin.php:23
static storeTranslation(IdentificationInterface $identification, string $language_key, string $translation)
Interface ilMMItemFacadeInterface.