ILIAS  trunk Revision v11.0_alpha-1689-g66c127b4ae8
All Data Structures Namespaces Files Functions Variables Enumerations Enumerator Modules Pages
class.ilFooterTranslationGUI.php
Go to the documentation of this file.
1 <?php
2 
19 declare(strict_types=1);
20 
31 use ILIAS\Data\URI;
32 
40 {
41  use Hasher;
42  use UIHelper;
43 
47  public const CMD_DEFAULT = 'index';
51  public const CMD_LANGUAGE_SELECTION = 'selectLanguages';
55  public const CMD_SAVE_LANGUAGE_SELECTION = 'saveLanguages';
59  public const CMD_TRANSLATE_IN_MODAL = 'translateInAsyncModal';
63  public const CMD_SAVE_TRANSLATIONS = 'saveTranslations';
69 
70  public function __construct(
71  private Container $dic,
72  private Translator $translator,
73  private ilObjFooterUIHandling $ui_handling,
74  private TranslatableItem $translatable_item,
75  private ?URI $back_target = null
76  ) {
77  $this->ui_factory = $this->dic->ui()->factory();
78  $this->ctrl = $this->dic->ctrl();
79  $this->request = $this->dic->http()->request();
80 
82  $this->dic->database()
83  );
84 
85  $this->workflow = new TranslationWorkflowForm(
86  $this->dic->learningObjectMetadata(),
87  $this->dic->ui(),
89  $this->translatable_item,
90  );
91  }
92 
93  private function index(): void
94  {
95  // LISTING
96  $translations = $this->repository->get($this->translatable_item);
97  if ($translations->get() === []) {
98  $content = $this->ui_factory->messageBox()->info(
99  $this->translator->translate('no_translations')
100  );
101  } else {
102  $items = [];
103  foreach ($translations->get() as $t) {
104  $items[$this->translator->translate('meta_l_' . $t->getLanguageCode())] = $t->getTranslation();
105  }
106  $content = $this->ui_factory->listing()->descriptive(
107  $items
108  );
109  $content = $this->back_target === null ? $this->ui_factory->panel()->secondary()->legacy(
110  $this->translator->translate('translations'),
111  $this->ui_factory->legacy()->content(
112  $this->ui_handling->render($content)
113  )
114  ) : $content;
115  }
116 
117  $prompt = $this->ui_factory->prompt()->standard(
118  $this->ui_handling->getHereAsURI(self::CMD_LANGUAGE_SELECTION)
119  );
120 
121  // Edit Button
122  $edit_button = $this->ui_factory
123  ->button()
124  ->standard(
125  $this->translator->translate('edit_translations'),
126  '#'
127  )
128  ->withOnClick($prompt->getShowSignal());
129 
130  $this->dic->toolbar()->addComponent(
131  $edit_button
132  );
133 
134  if ($this->back_target === null) {
135  $this->ui_handling->out(
136  $prompt,
137  $content
138  );
139  return;
140  }
141 
142  $this->ui_handling->outAsyncAsModal(
143  'Translations',
144  (string) $this->back_target,
145  $edit_button,
146  $this->ui_factory->divider()->horizontal(),
147  $prompt,
148  $content
149  );
150  }
151 
152  private function selectLanguages(): void
153  {
154  $this->ui_handling->outAsync(
155  $this->workflow->asTranslationWorkflow(
156  $this->ui_handling->getHereAsURI(),
157  $this->back_target ?? $this->ui_handling->getHereAsURI(self::CMD_DEFAULT)
158  )
159  );
160  }
161 
162  private function translateInAsyncModal(): void
163  {
164  $this->ui_handling->outAsync(
165  $this->workflow->asTranslationModal(
166  $this->ui_handling->getHereAsURI(self::CMD_SAVE_TRANSLATIONS)
167  )
168  );
169  }
170 
171  private function saveTranslations(): void
172  {
173  $form = $this->workflow->asTranslationModal(
174  $this->ui_handling->getHereAsURI(self::CMD_SAVE_TRANSLATIONS)
175  );
176  $form = $form->withRequest($this->request);
177  if (($data = $form->getData()) === null) {
178  $this->ui_handling->outAsync($form);
179  return;
180  }
181  $this->ctrl->redirectToURL(
182  (string) ($this->back_target ?? $this->ui_handling->getHereAsURI(self::CMD_DEFAULT))
183  );
184  }
185 
186  // HELPERS AND NEEDED IMPLEMENATIONS
187 
188  public function executeCommand(): void
189  {
190  $this->ui_handling->requireReadable();
191 
192  $next_class = $this->ctrl->getNextClass($this) ?? '';
193  $cmd = $this->ctrl->getCmd(self::CMD_DEFAULT);
194 
195  switch ($cmd) {
196  case self::CMD_DEFAULT:
197  case self::CMD_LANGUAGE_SELECTION:
198  case self::CMD_SAVE_LANGUAGE_SELECTION:
199  case self::CMD_TRANSLATE_IN_MODAL:
200  case self::CMD_SAVE_TRANSLATIONS:
201  default:
202  $this->ui_handling->backToMainTab();
203  $this->ui_handling->requireWritable();
204  $this->$cmd();
205  break;
206  }
207  }
208 
209 }
repository()
description: > Example for rendering a repository card
Definition: repository.php:33
Customizing of pimple-DIC for ILIAS.
Definition: Container.php:35
TranslationsRepository $repository
while($session_entry=$r->fetchRow(ilDBConstants::FETCHMODE_ASSOC)) return null
This is how the factory for UI elements looks.
Definition: Factory.php:37
__construct(private Container $dic, private Translator $translator, private ilObjFooterUIHandling $ui_handling, private TranslatableItem $translatable_item, private ?URI $back_target=null)
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
$dic
Definition: result.php:31
TranslationWorkflowForm $workflow