ILIAS
release_9 Revision v9.13-25-g2c18ec4c24f
◀ ilDoc Overview
with_tooltip.php
Go to the documentation of this file.
1
<?php
2
3
declare(strict_types=1);
4
5
namespace
ILIAS\UI\examples\Link\Bulky
;
6
7
//The Bulky Links in this example point to ilias.de
8
//Note the exact look of the Bulky Links is mostly defined by the
9
//surrounding container.
10
function
with_tooltip
()
11
{
12
global
$DIC
;
13
$f
= $DIC->ui()->factory();
14
$renderer = $DIC->ui()->renderer();
15
16
$target = new \ILIAS\Data\URI(
"https://ilias.de"
);
17
$glyph =
$f
->symbol()->glyph()->comment();
18
19
$link =
$f
->link()->bulky($glyph,
'Link to ilias.de with Glyph'
, $target)
20
->withHelpTopics(
21
...
$f
->helpTopics(
"ilias"
,
"learning management system"
)
22
);
23
24
return
$renderer->render([
25
$link
26
]);
27
}
ILIAS\UI\examples\Link\Bulky
Definition:
base.php:5
$DIC
global $DIC
Definition:
feed.php:28
Vendor\Package\$f
$f
Definition:
example_cleaned.php:49
ILIAS\UI\examples\Link\Bulky\with_tooltip
with_tooltip()
Definition:
with_tooltip.php:10
src
UI
examples
Link
Bulky
with_tooltip.php
Generated on Wed Sep 10 2025 14:12:10 for ILIAS by
1.8.13 (using
Doxyfile
)