3 declare(strict_types=1);
11 $renderer = $DIC->ui()->renderer();
13 $message =
'Here you see an interruptive Item:';
14 $icon =
$factory->image()->standard(
'./templates/default/images/icon_crs.svg',
'');
16 ->withAffectedItems(array(
21 'Note, this item is currently only to be used in interruptive Modal.' 25 'Title of the other Item',
31 $button =
$factory->button()->standard(
'Show an interruptive Item',
'')
32 ->withOnClick($modal->getShowSignal());
35 return $renderer->render([$button, $modal]);