37 case self::CMD_VIEW_TOP_ITEMS:
38 $this->access->checkAccessAndThrowException(
"visible,read");
41 return $this->
index($DIC);
43 $this->access->checkAccessAndThrowException(
'write');
46 return $this->
add($DIC);
47 case self::CMD_CREATE:
48 $this->access->checkAccessAndThrowException(
'write');
51 return $this->
create($DIC);
53 $this->access->checkAccessAndThrowException(
'write');
56 return $this->
edit($DIC);
57 case self::CMD_UPDATE:
58 $this->access->checkAccessAndThrowException(
'write');
61 return $this->
update($DIC);
62 case self::CMD_SAVE_TABLE:
63 $this->access->checkAccessAndThrowException(
'write');
67 case self::CMD_CONFIRM_DELETE:
69 $this->access->checkAccessAndThrowException(
'write');
72 case self::CMD_DELETE:
73 $this->access->checkAccessAndThrowException(
'write');
76 case self::CMD_CANCEL:
79 case self::CMD_CONFIRM_RESTORE:
81 $this->access->checkAccessAndThrowException(
'write');
83 case self::CMD_RESTORE:
84 $this->access->checkAccessAndThrowException(
'write');
88 case self::CMD_SELECT_PARENT:
90 $this->access->checkAccessAndThrowException(
'write');
93 $this->access->checkAccessAndThrowException(
'write');
96 case self::CMD_UPLOAD:
97 $this->access->checkAccessAndThrowException(
'write');
100 $this->access->checkAccessAndThrowException(
'write');
111 $r = $DIC->http()->request()->getParsedBody();
112 foreach ($r[self::IDENTIFIER] as $identification_string =>
$data) {
113 $item = $this->
repository->getItemFacadeForIdentificationString($this->unhash($identification_string));
114 $item->setPosition((
int)
$data[
'position']);
115 $item->setActiveStatus((
bool) $data[
'active']);
123 $next_class = $this->ctrl->getNextClass();
125 if ($next_class ===
'') {
132 switch ($next_class) {
133 case strtolower(ilMMItemTranslationGUI::class):
136 $this->ctrl->forwardCommand($g);
149 if ($this->access->hasUserPermissionTo(
'write')) {
152 $b->setCaption($this->lng->txt(self::CMD_ADD),
false);
153 $b->setUrl($this->ctrl->getLinkTarget($this, self::CMD_ADD));
154 $this->toolbar->addButtonInstance(
$b);
158 $b->setCaption($this->lng->txt(self::CMD_RESTORE),
false);
159 $b->setUrl($this->ctrl->getLinkTarget($this, self::CMD_CONFIRM_RESTORE));
160 $this->toolbar->addButtonInstance(
$b);
165 $b->setUrl($this->ctrl->getLinkTarget($this, self::CMD_FLUSH));
166 $b->setCaption($this->lng->txt(self::CMD_FLUSH),
false);
167 $this->toolbar->addButtonInstance(
$b);
173 $table->setShowRowsSelector(
false);
175 return $table->getHTML();
180 $this->ctrl->redirectByClass(self::class, self::CMD_VIEW_TOP_ITEMS);
185 $this->ctrl->redirectByClass(self::class, self::CMD_CANCEL);
197 return $f->getHTML();
212 return $f->getHTML();
224 return $f->getHTML();
235 if ($item->isEditable()) {
241 return $f->getHTML();
247 private function delete() :
void 250 if ($item->isDeletable()) {
253 ilUtil::sendSuccess($this->lng->txt(
"msg_topitem_deleted"),
true);
263 $this->ctrl->saveParameterByClass(self::class, self::IDENTIFIER);
266 $c->addItem(self::IDENTIFIER, $this->
hash(
$i->getId()),
$i->getDefaultTitle());
267 $c->setFormAction($this->ctrl->getFormActionByClass(self::class));
268 $c->setConfirm($this->lng->txt(self::CMD_DELETE), self::CMD_DELETE);
269 $c->setCancel($this->lng->txt(self::CMD_CANCEL), self::CMD_CANCEL);
270 $c->setHeaderText($this->lng->txt(self::CMD_CONFIRM_DELETE));
272 return $c->getHTML();
278 $c->setFormAction($this->ctrl->getFormActionByClass(self::class));
279 $c->setConfirm($this->lng->txt(self::CMD_DELETE), self::CMD_RESTORE);
280 $c->setCancel($this->lng->txt(self::CMD_CANCEL), self::CMD_CANCEL);
281 $c->setHeaderText($this->lng->txt(
'msg_restore_confirm'));
283 return $c->getHTML();
289 ilUtil::sendSuccess($this->lng->txt(
"msg_subitem_flushed"),
true);
300 ilUtil::sendSuccess($this->lng->txt(
'msg_restored'),
true);
309 return $this->
ui->renderer()->render($form);
315 $form = $form->withRequest($this->
http->request());
319 $data = $form->getData();
320 if ($item->isInterchangeable() && isset(
$data[0])) {
322 $item->setParent(
$data[0]);
324 ilUtil::sendSuccess($this->lng->txt(
'msg_moved'),
true);
337 $this->ctrl->saveParameter($this, self::IDENTIFIER);
338 $f = $this->
ui->factory();
340 $parent =
$f->input()->field()->select($this->lng->txt(
'select_parent'), $this->
repository->getPossibleParentsForFormAndTable())->withRequired(
true);
342 return $f->input()->container()->form()->standard($this->ctrl->getFormAction($this, self::CMD_MOVE), [$parent]);
Class ilMMAbstractItemGUI.
const CMD_CONFIRM_RESTORE
const CMD_RENDER_INTERRUPTIVE
update(\ILIAS\DI\Container $DIC)
Class ChatMainBarProvider .
Class ilMMItemRepository.
add(\ILIAS\DI\Container $DIC)
static http()
Fetches the global http state from ILIAS.
edit(\ILIAS\DI\Container $DIC)
Class ilMMTopItemGUI ilMMTopItemGUI: ilObjMainMenuGUI ilMMTopItemGUI: ilMMItemTranslationGUI.
Class ilMMItemTranslationGUI.
static sendFailure($a_info="", $a_keep=false)
Send Failure Message to Screen.
create(\ILIAS\DI\Container $DIC)
Class ilMMTopItemTableGUI.
Confirmation screen class.
determineCommand(string $standard, string $delete)