ILIAS
trunk Revision v11.0_alpha-2638-g80c1d007f79
◀ ilDoc Overview
Standard.php
Go to the documentation of this file.
1
<?php
2
19
declare(strict_types=1);
20
21
namespace
ILIAS\UI\Implementation\Component\Modal\InterruptiveItem
;
22
23
use
ILIAS\UI\Component\Image\Image
;
24
use
ILIAS\UI\Component\Modal\InterruptiveItem\Standard
as
StandardInterface
;
25
26
class
Standard
extends
InterruptiveItem
implements
StandardInterface
27
{
28
protected
string
$title
;
29
protected
string
$description
;
30
protected
?
Image
$icon
;
31
32
public
function
__construct
(
33
string
$id
,
34
string
$title,
35
?
Image
$icon =
null
,
36
string
$description =
''
37
) {
38
parent::__construct
($id);
39
40
$this->title =
$title
;
41
$this->icon =
$icon
;
42
$this->description =
$description
;
43
}
44
45
public
function
getTitle
(): string
46
{
47
return
$this->title
;
48
}
49
50
public
function
getDescription
(): string
51
{
52
return
$this->description
;
53
}
54
55
public
function
getIcon
(): ?
Image
56
{
57
return
$this->icon
;
58
}
59
}
Image
ILIAS\UI\Implementation\Component\Modal\InterruptiveItem\InterruptiveItem
Definition:
InterruptiveItem.php:26
null
while($session_entry=$r->fetchRow(ilDBConstants::FETCHMODE_ASSOC)) return null
Definition:
shib_logout.php:144
ILIAS\UI\Implementation\Component\Modal\InterruptiveItem\Standard\__construct
__construct(string $id, string $title, ?Image $icon=null, string $description='')
Definition:
Standard.php:32
ILIAS\UI\Implementation\Component\Modal\InterruptiveItem\Standard\getTitle
getTitle()
Get the title of the object.
Definition:
Standard.php:45
ILIAS\UI\Implementation\Component\Modal\InterruptiveItem\Standard\$description
string $description
Definition:
Standard.php:29
ILIAS\UI\Implementation\Component\Modal\InterruptiveItem\Standard\getIcon
getIcon()
Get the icon of the object.
Definition:
Standard.php:55
ILIAS\UI\Implementation\Component\Modal\InterruptiveItem\Standard\$icon
Image $icon
Definition:
Standard.php:30
ILIAS\GlobalScreen\Provider\__construct
__construct(Container $dic, ilPlugin $plugin)
Definition:
PluginProviderHelper.php:37
ILIAS\UI\Implementation\Component\Modal\InterruptiveItem\Standard
Definition:
Standard.php:26
Standard
ILIAS\UI\Implementation\Component\Modal\InterruptiveItem\InterruptiveItem\$id
string $id
Definition:
InterruptiveItem.php:30
ILIAS\UI\Implementation\Component\Modal\InterruptiveItem\Standard\getDescription
getDescription()
Get the description of the object.
Definition:
Standard.php:50
ILIAS\UI\Implementation\Component\Modal\InterruptiveItem\Standard\$title
string $title
Definition:
Standard.php:28
ILIAS\UI\Implementation\Component\Modal\InterruptiveItem
Definition:
Factory.php:21
components
ILIAS
UI
src
Implementation
Component
Modal
InterruptiveItem
Standard.php
Generated on Sun Aug 31 2025 23:02:44 for ILIAS by
1.8.13 (using
Doxyfile
)