37 private const STEP =
'step';
47 private readonly \ilLanguage
$lng;
52 private readonly \ILIAS\UI\Component\Input\Field\Factory
$fields;
54 private readonly \ILIAS\UI\Component\Prompt\State\Factory
$states;
63 $this->request = $DIC->http()->request();
65 $this->ui_factory = $ui->factory();
66 $this->
lng = $DIC->language();
67 $this->translations = $repository->get($item);
68 $this->fields = $this->ui_factory->input()->field();
69 $this->states = $this->ui_factory->prompt()->state();
76 $step = $this->request->getQueryParams()[self::STEP] ??
null;
79 $here_uri->
withParameter(self::STEP, self::STEP_SELECTED_LNGS)
84 return $this->states->show($language_slection);
85 case self::STEP_SELECTED_LNGS:
87 $data = $language_slection->withRequest($this->request)->getData();
91 $here_uri->
withParameter(self::STEP, self::STEP_SAVE_TRANSLATIONS),
95 case self::STEP_SAVE_TRANSLATIONS:
96 $active_language_keys = [];
97 foreach ($this->translations->getLanguageKeys() as $language_key) {
98 $active_language_keys[$language_key] =
true;
101 $tranlation_form = $this
102 ->getTranslationForm(
103 $here_uri->
withParameter(self::STEP, self::STEP_SAVE_TRANSLATIONS),
104 $active_language_keys
106 ->withRequest($this->request);
108 $data = $tranlation_form->getData();
113 return $this->states->show($tranlation_form);
120 return $this->ui_factory->input()->container()->form()->standard(
121 (
string) $form_target,
123 )->withAdditionalTransformation(
124 $this->
refinery->custom()->transformation(
function ($value) {
125 $this->
repository->store($this->translations);
133 $default_value = match (
true) {
134 ($this->item instanceof
GroupDTO) => $this->item->getTitle(),
135 ($this->item instanceof
EntryDTO) => $this->item->getTitle(),
140 foreach ($this->lom_services->dataHelper()->getAllLanguages() as $language) {
141 $languages[$language->value()] = $language->presentableLabel();
145 foreach ($language_keys as $language_key => $active) {
149 $translation = $this->translations->getLanguageCode($language_key)?->getTranslation();
150 $language_title = $languages[$language_key] ??
null;
151 if ($language_title === null) {
154 $inputs[$language_key] = $this->fields
155 ->text($language_title)
156 ->withRequired($required)
158 $translation ?? $default_value
160 ->withAdditionalTransformation(
161 $this->
refinery->custom()->transformation(
function ($value) use ($language_key) {
162 $this->translations->add(
163 $this->
repository->blank($this->item, $language_key, $value)
176 return $this->ui_factory->input()->container()->form()->standard(
177 (
string) $form_target,
179 )->withAdditionalTransformation(
180 $this->
refinery->custom()->transformation(
function ($value) {
181 $this->
repository->store($this->translations);
190 $all_languages = $this->lom_services->dataHelper()->getAllLanguages();
191 $installed_languages = $this->
lng->getInstalledLanguages();
193 foreach ($all_languages as $language) {
194 $language_code = $language->value();
195 if (!$this->all_languages && !in_array($language_code, $installed_languages,
true)) {
198 $inputs[$language_code] = $this->fields
199 ->checkbox($language->presentableLabel())
201 $this->translations->getLanguageCode($language_code) !==
null 203 $this->
refinery->custom()->transformation(
function ($value) use ($language_code) {
205 $this->translations->remove($language_code);
207 $this->translations->add(
211 $this->translations->getLanguageCode($language_code)?->getTranslation() ??
'' 227 foreach ($this->
lng->getInstalledLanguages() as $installed_language) {
228 $languages[$installed_language] =
true;
231 return $this->ui_factory->modal()->roundtrip(
232 $this->
lng->txt(
'translations'),
237 $this->
refinery->custom()->transformation(
function ($value) {
238 $this->
repository->store($this->translations);
repository()
description: > Example for rendering a repository card
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
while($session_entry=$r->fetchRow(ilDBConstants::FETCHMODE_ASSOC)) return null
Provides fluid interface to RBAC services.
This is how the factory for UI elements looks.
withParameter(string $key, $value)
Get URI with modified parameters.