19 declare(strict_types=1);
51 $this->
setId(self::class);
55 $this->
lng = $this->parent_obj->lng;
57 $this->
setData($this->resolveData());
59 if ($this->
access->hasUserPermissionTo(
'write')) {
63 $this->
setRowTemplate(
'tpl.sub_items.html',
'components/ILIAS/MainMenu');
69 $this->
lng->txt(self::F_TABLE_ENTRY_STATUS),
70 self::F_TABLE_ENTRY_STATUS
74 self::F_TABLE_ALL_VALUE => $this->
lng->txt(
"all"),
75 self::F_TABLE_ONLY_ACTIVE_VALUE => $this->
lng->txt(
"only_active"),
76 self::F_TABLE_ONLY_INACTIVE_VALUE => $this->
lng->txt(
"only_inactive"),
108 protected function fillRow(array $a_set):
void 111 static $parent_identification_string;
116 $factory = $DIC->ui()->factory();
120 $item_facade = $a_set[
'facade'];
122 if ($item_facade->isChild() && (!$parent_identification_string || $parent_identification_string !== $item_facade->getParentIdentificationString())) {
123 $parent_identification_string = $item_facade->getParentIdentificationString();
124 $current_parent_identification = $this->item_repository->resolveIdentificationFromString(
125 $parent_identification_string
127 $current_parent_item = $this->item_repository->getSingleItem($current_parent_identification);
128 $this->tpl->setVariable(
130 $current_parent_item instanceof
hasTitle ? $current_parent_item->
getTitle() :
"-" 132 $this->tpl->setVariable(
134 $current_parent_item->getProviderIdentification()->serialize()
136 $this->tpl->setVariable(
138 $this->
hash($current_parent_item->getProviderIdentification()->serialize())
142 $this->tpl->setVariable(
'IDENTIFIER', self::IDENTIFIER);
143 $this->tpl->setVariable(
'ID', $this->
hash($item_facade->getId()));
144 $this->tpl->setVariable(
'NATIVE_ID', $item_facade->getId());
145 $this->tpl->setVariable(
'TITLE', $item_facade->getDefaultTitle());
146 $this->tpl->setVariable(
'PARENT', $this->
getSelect($item_facade)->
render());
147 $this->tpl->setVariable(
'STATUS', $item_facade->getStatus());
148 if ($item_facade->isActivated()) {
149 $this->tpl->touchBlock(
'is_active');
151 if ($item_facade->getRawItem()->isAlwaysAvailable() || !$item_facade->getRawItem()->isAvailable()) {
152 $this->tpl->touchBlock(
'is_active_blocked');
155 $this->tpl->setVariable(
'POSITION', $position * 10);
156 $this->tpl->setVariable(
'NATIVE_POSITION', $item_facade->getRawItem()->getPosition());
157 $this->tpl->setVariable(
'SAVED_POSITION', $item_facade->getFilteredItem()->getPosition());
158 $this->tpl->setVariable(
'TYPE', $item_facade->getTypeForPresentation());
159 $this->tpl->setVariable(
'PROVIDER', $item_facade->getProviderNameForPresentation());
161 $this->
ctrl->setParameterByClass(
162 ilMMSubItemGUI::class,
164 $this->
hash($a_set[
'identification'])
166 $this->
ctrl->setParameterByClass(
167 ilMMItemTranslationGUI::class,
169 $this->
hash($a_set[
'identification'])
172 if ($this->
access->hasUserPermissionTo(
'write')) {
173 $items[] = $factory->button()->shy(
177 $items[] = $factory->button()->shy(
182 $ditem = $factory->modal()->interruptiveItem()->standard(
183 $this->
hash($a_set[
'identification']),
184 $item_facade->getDefaultTitle()
188 if ($item_facade->isDeletable()) {
190 $m = $factory->modal()
196 ->withAffectedItems([$ditem]);
198 $items[] = $factory->button()->shy(
201 )->withOnClick($m->getShowSignal());
206 if ($item_facade->isInterchangeable()) {
208 $m = $factory->modal()
215 ->withAffectedItems([$ditem]);
216 $items[] = $factory->button()->shy(
219 )->withOnClick($m->getShowSignal());
223 $this->tpl->setVariable(
225 $move_modal . $delete_modal .
$renderer->render([$factory->dropdown()->standard($items)->withLabel($this->
lng->txt(
'sub_actions'))])
236 $s =
new ilSelectInputGUI(
'', self::IDENTIFIER .
"[{$this->hash($child->getId())}][parent]");
249 foreach ($this->item_repository->getPossibleParentsForFormAndTable() as $identification => $name) {
250 $parents[$this->
hash($identification)] = $name;
256 private function resolveData(): array
259 $sub_items_for_table = $this->item_repository->getSubItemsForTable();
262 array_walk($sub_items_for_table,
function (array &$item) use ($DIC):
void {
263 $item_ident = $DIC->globalScreen()->identification()->fromSerializedIdentification($item[
'identification']);
264 $item_facade = $this->item_repository->repository()->getItemFacade($item_ident);
265 $item[
'facade'] = $item_facade;
269 $sub_items_for_table = array_filter($sub_items_for_table,
function (array $item_facade):
bool {
273 $item_facade = $item_facade[
'facade'];
274 if (!isset($this->
filter[self::F_TABLE_ENTRY_STATUS])) {
277 if (((
int) $this->
filter[self::F_TABLE_ENTRY_STATUS]) === self::F_TABLE_ALL_VALUE) {
280 if (((
int) $this->
filter[self::F_TABLE_ENTRY_STATUS]) === self::F_TABLE_ONLY_ACTIVE_VALUE && (!$item_facade->isActivated() && !$item_facade->isAlwaysAvailable())) {
283 return !((
int) $this->
filter[self::F_TABLE_ENTRY_STATUS] === self::F_TABLE_ONLY_INACTIVE_VALUE && $item_facade->isActivated());
286 return $sub_items_for_table;
getSelect(ilMMItemFacadeInterface $child)
const F_TABLE_ENTRY_STATUS
setFormAction(string $a_form_action, bool $a_multipart=false)
addFilterItem(ilTableFilterItem $a_input_item, bool $a_optional=false)
addCommandButton(string $a_cmd, string $a_text, string $a_onclick='', string $a_id="", string $a_class="")
Class ilMMSubItemTableGUI.
Class ilMMItemRepository.
const F_TABLE_ONLY_ACTIVE_VALUE
setExternalSorting(bool $a_val)
addAndReadFilterItem(ilFormPropertyGUI $field)
fillRow(array $a_set)
Standard Version of Fill Row.
getParentIdentificationString()
__construct(ilMMSubItemGUI $a_parent_obj, private ilMMItemRepository $item_repository, private ilObjMainMenuAccess $access)
ilMMSubItemTableGUI constructor.
setRowTemplate(string $a_template, string $a_template_dir="")
Set row template.
Class ilMMTopItemGUI ilMMSubItemGUI: ilObjMainMenuGUI ilMMSubItemGUI: ilMMItemTranslationGUI.
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
const F_TABLE_ONLY_INACTIVE_VALUE
getPossibleParentsForFormAndTable()
__construct(Container $dic, ilPlugin $plugin)
const F_TABLE_SHOW_INACTIVE
addColumn(string $a_text, string $a_sort_field="", string $a_width="", bool $a_is_checkbox_action_column=false, string $a_class="", string $a_tooltip="", bool $a_tooltip_with_html=false)
filter(string $filter_id, $class_path, string $cmd, bool $activated=true, bool $expanded=true)
Interface ilMMItemFacadeInterface.
setExternalSegmentation(bool $a_val)