3 declare(strict_types=1);
11 $f = $DIC->ui()->factory();
12 $renderer = $DIC->ui()->renderer();
14 $icon =
$f->symbol()->icon()->standard(
'crs',
'Course');
17 $f->button()->shy(
"Go to Course",
"#"),
18 $f->button()->shy(
"Go to Portfolio",
"#"),
19 $f->divider()->horizontal(),
20 $f->button()->shy(
"ilias.de",
"http://www.ilias.de")
23 $dropdown =
$f->dropdown()->standard($items);
26 $content =
$f->listing()->descriptive(
28 "Entry 1" =>
"Some text",
29 "Entry 2" =>
"Some more text",
33 $image =
$f->image()->responsive(
34 "./templates/default/images/HeaderIcon.svg",
38 $card =
$f->card()->repositoryObject(
45 )->withCertificateIcon(
55 $deck =
$f->deck(array($card,$card,$card,$card,$card,
56 $card,$card,$card,$card))->withNormalCardsSize();
59 return $renderer->render($deck);