19 declare(strict_types=1);
35 $factory = $DIC->ui()->factory();
39 $post_wrapper = $DIC->http()->wrapper()->post();
42 $message =
'Are you sure you want to delete the following item?';
43 $ctrl->setParameterByClass(
'ilsystemstyledocumentationgui',
'modal_nr',
"2");
44 $form_action = $ctrl->getFormActionByClass(
'ilsystemstyledocumentationgui');
45 $items = [
'First Item',
'Second Item',
'Third Item'];
51 $affected_item = $factory->modal()->interruptiveItem()->standard(
$id, $item);
52 $modal = $factory->modal()->interruptive(
'Delete Items',
$message, $form_action)
53 ->withAffectedItems([$affected_item]);
60 foreach ($items as $i => $item) {
61 $ajax_url =
$_SERVER[
'REQUEST_URI'] .
'&item=' . $i;
62 $modal = $factory->modal()->interruptive(
'',
'',
'')
63 ->withAsyncRenderUrl($ajax_url);
64 $button = $factory->button()->standard(
'Delete ' . $item,
'#')
65 ->withOnClick($modal->getShowSignal());
72 $post_wrapper->has(
'interruptive_items') &&
75 $out[] = $post_wrapper->retrieve(
'interruptive_items',
$refinery->custom()->transformation(
76 function ($v) use ($factory, $post_wrapper, $items) {
77 return $factory->panel()->standard(
'Affected Item', $factory->legacy()->content($items[$v[0]]));
show_modal_on_button_click_async_rendered()
description: > Example for rendering an interruptive modal by clicking a button. ...
$id
plugin.php for ilComponentBuildPluginInfoObjectiveTest::testAddPlugins
exit
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...