Go to the source code of this file.
◆ multiple()
Definition at line 5 of file multiple.php.
References $DIC, and Vendor\Package\$f.
Referenced by ilEditClipboardGUI\__construct(), ilObjTaxonomyGUI\setMultiple(), and ilEditClipboardGUI\setMultipleSelections().
13 $f = $DIC->ui()->factory();
14 $renderer = $DIC->ui()->renderer();
16 $first =
$f->mainControls()
17 ->systemInfo(
'This is the first Message!',
'content of the first message...')
18 ->withDenotation(SystemInfo::DENOTATION_BREAKING);
19 $second =
$f->mainControls()
20 ->systemInfo(
'This is the second Message!',
'content of the second message...')
21 ->withDenotation(SystemInfo::DENOTATION_IMPORTANT);
22 $third =
$f->mainControls()
23 ->systemInfo(
'This is the third Message!',
'content of the third message...');
25 return $renderer->render([$first, $second, $third]);