ILIAS
release_8 Revision v8.23
◀ ilDoc Overview
with_footer.php
Go to the documentation of this file.
1
<?php
2
3
declare(strict_types=1);
4
5
namespace
ILIAS\UI\examples\Panel\Secondary\Legacy
;
6
7
function
with_footer
()
8
{
9
global
$DIC
;
10
11
$factory
= $DIC->ui()->factory();
12
$renderer = $DIC->ui()->renderer();
13
14
$tags = [
"PHP"
,
"ILIAS"
,
"Sofware"
,
"SOLID"
,
"Domain Driven"
];
15
16
$html =
""
;
17
foreach
($tags as $tag) {
18
$html .= $renderer->render(
$factory
->button()->tag($tag,
""
));
19
}
20
21
$legacy =
$factory
->legacy($html);
22
$link =
$factory
->button()->Shy(
"Edit Keywords"
,
""
);
23
24
$panel
=
$factory
->panel()->secondary()->legacy(
"panel title"
, $legacy)->withFooter($link);
25
26
return
$renderer->render(
$panel
);
27
}
$panel
if(isset($_FILES['img_file']) &&is_array($_FILES['img_file'])) $panel
Definition:
imgupload.php:198
ILIAS\UI\examples\Panel\Secondary\Legacy
Definition:
base.php:5
$DIC
global $DIC
Definition:
feed.php:28
ILIAS\UI\examples\Panel\Secondary\Legacy\with_footer
with_footer()
Definition:
with_footer.php:7
$factory
$factory
Definition:
metadata.php:75
src
UI
examples
Panel
Secondary
Legacy
with_footer.php
Generated on Mon Sep 1 2025 22:03:01 for ILIAS by
1.8.13 (using
Doxyfile
)