19 declare(strict_types=1);
63 if (!$this->item_facade->isEmpty()) {
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());
80 $items[self::F_TITLE] = $title;
83 if (($this->item_facade->isEmpty() || $this->item_facade->isCustom())) {
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));
90 $type = $type->withValue($this->
hash(Link::class));
92 $items[self::F_TYPE] = $type;
96 if ($this->item_facade->supportsCustomIcon()) {
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()]);
105 $items[self::F_ICON] = $icon;
109 $parent =
$f()->field()->select(
$txt(
'sub_parent'), $this->
repository->getPossibleParentsForFormAndTable())
110 ->withRequired(
true);
112 $possible_parents = array_keys($this->
repository->getPossibleParentsForFormAndTable());
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());
117 $parent = $parent->withValue(reset($possible_parents));
119 $items[self::F_PARENT] = $parent;
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;
127 if ($this->item_facade->supportsRoleBasedVisibility()) {
129 $value_role_based_visibility =
null;
130 if ($this->item_facade->hasRoleBasedVisibility() && !empty($this->item_facade->getGlobalRoleIDs())) {
132 $value_role_based_visibility[0] = array_intersect(
133 $this->item_facade->getGlobalRoleIDs(),
134 array_keys($access->getGlobalRoles())
137 $role_based_visibility =
$f()->field()->optionalGroup(
139 $f()->field()->multiSelect(
140 $txt(
'sub_global_roles'),
141 $access->getGlobalRoles()
142 )->withRequired(
false)
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;
151 if ($this->item_facade->isEmpty()) {
153 $this->
form =
$f()->container()->form()
157 $this->
form =
$f()->container()->form()
166 $this->
form = $this->
form->withRequest($DIC->http()->request());
169 if (is_null(
$data)) {
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);
178 if ($role_based_visibility) {
179 $this->item_facade->setGlobalRoleIDs((array) $role_based_visibility[0]);
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]);
184 $this->item_facade->setIsTopItm(
false);
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);
192 if ($this->item_facade->supportsCustomIcon()) {
193 $icon = (string) (
$data[0][self::F_ICON][0] ??
'');
194 $this->item_facade->setIconID($icon);
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);
204 $r->updateItem($this->item_facade);
211 return $this->ui_re->render([$this->
form]);
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())
226 $inputs = $this->
repository->getTypeHandlerForType($classname)->getAdditionalFieldsForSubForm($this->item_facade->identification());
227 $type_groups[$this->
hash($classname)] =
$f()->field()->group(
$inputs, $information->getTypeNameForPresentation());
Interface Observer Contains several chained tasks and infos about them.
repository()
description: > Example for rendering a repository card
Class ilMMItemRepository.
Class ilMMUploadHandlerGUI.
while($session_entry=$r->fetchRow(ilDBConstants::FETCHMODE_ASSOC)) return null
This is how the factory for UI elements looks.
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
Interface ilMMItemFacadeInterface.