3 declare(strict_types=1);
10 $f = $DIC->ui()->factory();
11 $renderer = $DIC->ui()->renderer();
15 $close_url =
$_SERVER[
'REQUEST_URI'] .
'&aggregate_closed=true';
27 $generic_icon1 =
$f->symbol()->icon()->standard(
"cal",
"generic");
28 $generic_title1 =
$f->link()->standard(
"Aggregate of Item",
"#");
29 $generic_item1 =
$f->item()->notification($generic_title1, $generic_icon1)
30 ->withDescription(
"Is shown when top item is clicked")
31 ->withProperties([
"Property 1" =>
"Content 1",
"Property 2" =>
"Content 2"])
33 $f->dropdown()->standard([
34 $f->button()->shy(
"Link to ilias.de",
"https://www.ilias.de"),
35 $f->button()->shy(
"Link to github",
"https://www.github.com")
38 ->withCloseAction($close_url);
40 $generic_title2 =
$f->link()->standard(
"Item",
"just_opens_the_list_of_aggregates");
41 $generic_item2 =
$f->item()->notification($generic_title2, $generic_icon1)
42 ->withDescription(
"Notification Item with Aggregates")
43 ->withProperties([
"Property 1" =>
"Content 1",
"Property 2" =>
"Content 2"])
44 ->withAggregateNotifications([$generic_item1, $generic_item1]);
47 return $renderer->render($generic_item2);
Refinery Factory $refinery