ILIAS  trunk Revision v11.0_alpha-1689-g66c127b4ae8
All Data Structures Namespaces Files Functions Variables Enumerations Enumerator Modules Pages
class.ilMMSubitemFormGUI.php
Go to the documentation of this file.
1 <?php
2 
19 declare(strict_types=1);
20 
28 
34 {
35  use Hasher;
36 
37  public const F_TITLE = "title";
38  public const F_TYPE = "type";
39  public const F_PARENT = "parent";
40  public const F_ACTIVE = "active";
41  public const F_ICON = "icon";
42  public const F_ROLE_BASED_VISIBILITY = "role_based_visibility";
43 
44  private Standard $form;
45 
55  public function __construct(
56  protected ilCtrl $ctrl,
57  protected ILIAS\UI\Factory $ui_fa,
58  protected Renderer $ui_re,
59  protected ilLanguage $lng,
60  private ilMMItemFacadeInterface $item_facade,
61  private ilMMItemRepository $repository
62  ) {
63  if (!$this->item_facade->isEmpty()) {
64  $this->ctrl->saveParameterByClass(ilMMSubItemGUI::class, ilMMAbstractItemGUI::IDENTIFIER);
65  }
66 
67  $this->initForm();
68  }
69 
70  private function initForm(): void
71  {
72  // TITLE
73  $txt = (fn($id): string => $this->lng->txt($id));
74  $f = (fn(): InputFactory => $this->ui_fa->input());
75 
76  $title = $f()->field()->text($txt('sub_title_default'), $txt('sub_title_default_byline'));
77  if (!$this->item_facade->isEmpty()) {
78  $title = $title->withValue($this->item_facade->getDefaultTitle());
79  }
80  $items[self::F_TITLE] = $title;
81 
82  // TYPE
83  if (($this->item_facade->isEmpty() || $this->item_facade->isCustom())) {
84  $type_groups = $this->getTypeGroups($f);
85  $type = $f()->field()->switchableGroup($type_groups, $txt('sub_type'), $txt('sub_type_byline'))->withRequired(true);
86  if (!$this->item_facade->isEmpty()) {
87  $string = $this->item_facade->getType() === '' ? Link::class : $this->item_facade->getType();
88  $type = $type->withValue($this->hash($string));
89  } else {
90  $type = $type->withValue($this->hash(Link::class));
91  }
92  $items[self::F_TYPE] = $type;
93  }
94 
95  // ICON
96  if ($this->item_facade->supportsCustomIcon()) {
97  // ICON
98  $icon = $f()->field()->file(new ilMMUploadHandlerGUI(), $txt('sub_icon'))
99  ->withByline($txt('sub_icon_byline'))
100  ->withAcceptedMimeTypes([MimeType::IMAGE__SVG_XML]);
101  if ($this->item_facade->getIconID() !== null) {
102  $icon = $icon->withValue([$this->item_facade->getIconID()]);
103  }
104 
105  $items[self::F_ICON] = $icon;
106  }
107 
108  // PARENT
109  $parent = $f()->field()->select($txt('sub_parent'), $this->repository->getPossibleParentsForFormAndTable())
110  ->withRequired(true);
111 
112  $possible_parents = array_keys($this->repository->getPossibleParentsForFormAndTable());
113 
114  if (!$this->item_facade->isEmpty() && !$this->item_facade->isInLostItem() && in_array($this->item_facade->getParentIdentificationString(), $possible_parents)) {
115  $parent = $parent->withValue($this->item_facade->getParentIdentificationString());
116  } else {
117  $parent = $parent->withValue(reset($possible_parents));
118  }
119  $items[self::F_PARENT] = $parent;
120 
121  // ACTIVE
122  $active = $f()->field()->checkbox($txt('sub_active'), $txt('sub_active_byline'));
123  $active = $active->withValue($this->item_facade->isActivated());
124  $items[self::F_ACTIVE] = $active;
125 
126  // ROLE BASED VISIBILITY
127  if ($this->item_facade->supportsRoleBasedVisibility()) {
128  $access = new ilObjMainMenuAccess();
129  $value_role_based_visibility = null;
130  if ($this->item_facade->hasRoleBasedVisibility() && !empty($this->item_facade->getGlobalRoleIDs())) {
131  // remove deleted roles, see https://mantis.ilias.de/view.php?id=34936
132  $value_role_based_visibility[0] = array_intersect(
133  $this->item_facade->getGlobalRoleIDs(),
134  array_keys($access->getGlobalRoles())
135  );
136  }
137  $role_based_visibility = $f()->field()->optionalGroup(
138  [
139  $f()->field()->multiSelect(
140  $txt('sub_global_roles'),
141  $access->getGlobalRoles()
142  )->withRequired(false)
143  ],
144  $txt('sub_role_based_visibility'),
145  $txt('sub_role_based_visibility_byline')
146  )->withValue($value_role_based_visibility);
147  $items[self::F_ROLE_BASED_VISIBILITY] = $role_based_visibility;
148  }
149 
150  // RETURN FORM
151  if ($this->item_facade->isEmpty()) {
152  $section = $f()->field()->section($items, $txt(ilMMSubItemGUI::CMD_ADD), "");
153  $this->form = $f()->container()->form()
154  ->standard($this->ctrl->getLinkTargetByClass(ilMMSubItemGUI::class, ilMMSubItemGUI::CMD_CREATE), [$section]);
155  } else {
156  $section = $f()->field()->section($items, $txt(ilMMSubItemGUI::CMD_EDIT), "");
157  $this->form = $f()->container()->form()
158  ->standard($this->ctrl->getLinkTargetByClass(ilMMSubItemGUI::class, ilMMSubItemGUI::CMD_UPDATE), [$section]);
159  }
160  }
161 
162  public function save(): bool
163  {
164  global $DIC;
165  $r = new ilMMItemRepository();
166  $this->form = $this->form->withRequest($DIC->http()->request());
167  $data = $this->form->getData();
168 
169  if (is_null($data)) {
170  return false;
171  }
172 
173  $role_based_visibility = $data[0][self::F_ROLE_BASED_VISIBILITY] ?? false;
174  $this->item_facade->setDefaultTitle((string) $data[0][self::F_TITLE]);
175  $this->item_facade->setActiveStatus((bool) $data[0][self::F_ACTIVE]);
176  $this->item_facade->setRoleBasedVisibility((bool) $role_based_visibility);
177 
178  if ($role_based_visibility) {
179  $this->item_facade->setGlobalRoleIDs((array) $role_based_visibility[0]);
180  }
181  if ((string) $data[0][self::F_PARENT] !== '' && (string) $data[0][self::F_PARENT] !== '0') {
182  $this->item_facade->setParent((string) $data[0][self::F_PARENT]);
183  }
184  $this->item_facade->setIsTopItm(false);
185 
186  if ($this->item_facade->isEmpty()) {
187  $type = $this->unhash((string) ($data[0][self::F_TYPE][0]));
188  $this->item_facade->setType($type);
189  $r->createItem($this->item_facade);
190  }
191 
192  if ($this->item_facade->supportsCustomIcon()) {
193  $icon = (string) ($data[0][self::F_ICON][0] ?? '');
194  $this->item_facade->setIconID($icon);
195  }
196 
197  if ($this->item_facade->isCustom()) {
198  $type = $this->item_facade->getType();
199  $type_specific_data = (array) $data[0][self::F_TYPE][1];
200  $type_handler = $this->repository->getTypeHandlerForType($type);
201  $type_handler->saveFormFields($this->item_facade->identification(), $type_specific_data);
202  }
203 
204  $r->updateItem($this->item_facade);
205 
206  return true;
207  }
208 
209  public function getHTML(): string
210  {
211  return $this->ui_re->render([$this->form]);
212  }
213 
218  private function getTypeGroups(Closure $f): array
219  {
220  $type_groups = [];
221  $type_informations = $this->repository->getPossibleSubItemTypesWithInformation();
222  foreach ($type_informations as $classname => $information) {
223  if ($this->item_facade->isEmpty()
224  || (!$this->item_facade->isEmpty() && $classname === $this->item_facade->getType() && $this->item_facade->isCustom())
225  ) { // https://mantis.ilias.de/view.php?id=24152
226  $inputs = $this->repository->getTypeHandlerForType($classname)->getAdditionalFieldsForSubForm($this->item_facade->identification());
227  $type_groups[$this->hash($classname)] = $f()->field()->group($inputs, $information->getTypeNameForPresentation());
228  }
229  }
230 
231  return $type_groups;
232  }
233 }
Interface Observer Contains several chained tasks and infos about them.
repository()
description: > Example for rendering a repository card
Definition: repository.php:33
Class ilMMItemRepository.
Class ilMMUploadHandlerGUI.
while($session_entry=$r->fetchRow(ilDBConstants::FETCHMODE_ASSOC)) return null
This is how the factory for UI elements looks.
Definition: Factory.php:37
global $DIC
Definition: shib_login.php:22
Class ilMMSubitemFormGUI.
$txt
Definition: error.php:31
withValue($value)
Get an input like this with another value displayed on the client side.
Definition: Group.php:61
This describes a standard form.
Definition: Standard.php:28
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
form( $class_path, string $cmd, string $submit_caption="")
$id
plugin.php for ilComponentBuildPluginInfoObjectiveTest::testAddPlugins
Definition: plugin.php:23
global $lng
Definition: privfeed.php:31
__construct(protected ilCtrl $ctrl, protected ILIAS\UI\Factory $ui_fa, protected Renderer $ui_re, protected ilLanguage $lng, private ilMMItemFacadeInterface $item_facade, private ilMMItemRepository $repository)
ilMMSubitemFormGUI constructor.
Interface ilMMItemFacadeInterface.
$r