ILIAS
release_10 Revision v10.1-43-ga1241a92c2f
◀ ilDoc Overview
multiple.php
Go to the documentation of this file.
1
<?php
2
3
declare(strict_types=1);
4
5
namespace
ILIAS\UI\examples\MainControls\SystemInfo
;
6
7
use
ILIAS\UI\Component\MainControls\SystemInfo
;
8
20
function
multiple
()
21
{
22
global
$DIC
;
23
$f
= $DIC->ui()->factory();
24
$renderer
= $DIC->ui()->renderer();
25
26
$first =
$f
->mainControls()
27
->systemInfo(
'This is the first Message!'
,
'content of the first message...'
)
28
->withDenotation(SystemInfo::DENOTATION_BREAKING);
29
$second =
$f
->mainControls()
30
->systemInfo(
'This is the second Message!'
,
'content of the second message...'
)
31
->withDenotation(SystemInfo::DENOTATION_IMPORTANT);
32
$third =
$f
->mainControls()
33
->systemInfo(
'This is the third Message!'
,
'content of the third message...'
);
34
35
return
$renderer
->render([$first, $second, $third]);
36
}
$renderer
$renderer
Definition:
build_bootstrap.php:83
ILIAS\UI\examples\MainControls\SystemInfo\multiple
multiple()
description: > This example show how the UI-Elements itself looks like.
Definition:
multiple.php:20
Vendor\Package\$f
$f
Definition:
example_cleaned.php:49
SystemInfo
$DIC
global $DIC
Definition:
shib_login.php:25
ILIAS\UI\examples\MainControls\SystemInfo
Definition:
long_text.php:5
components
ILIAS
UI
src
examples
MainControls
SystemInfo
multiple.php
Generated on Wed Sep 10 2025 15:16:45 for ILIAS by
1.8.13 (using
Doxyfile
)