ILIAS
trunk Revision v11.0_alpha-3011-gc6b235a2e85
◀ ilDoc Overview
ModeInfo.php
Go to the documentation of this file.
1
<?php
2
19
declare(strict_types=1);
20
21
namespace
ILIAS\UI\Implementation\Component\MainControls
;
22
23
use
ILIAS\Data\URI
;
24
use
ILIAS\UI\Component\MainControls
;
25
use ILIAS\UI\Implementation\Component\ComponentHelper;
26
32
class
ModeInfo
implements
MainControls\ModeInfo
33
{
34
use ComponentHelper;
35
36
private
string
$mode_title
;
37
private
URI
$close_action
;
38
39
public
function
__construct
(
string
$mode_title,
URI
$close_action)
40
{
41
$this->mode_title = $mode_title;
42
$this->close_action = $close_action;
43
}
44
45
public
function
getModeTitle
(): string
46
{
47
return
$this->mode_title;
48
}
49
50
public
function
getCloseAction
():
URI
51
{
52
return
$this->close_action;
53
}
54
}
ILIAS\Data\URI
The scope of this class is split ilias-conform URI's into components.
Definition:
URI.php:35
ILIAS\UI\Implementation\Component\MainControls\ModeInfo\__construct
__construct(string $mode_title, URI $close_action)
Definition:
ModeInfo.php:39
ILIAS\UI\Implementation\Component\MainControls\ModeInfo\getCloseAction
getCloseAction()
Definition:
ModeInfo.php:50
ILIAS\UI\Implementation\Component\MainControls\ModeInfo\$mode_title
string $mode_title
Definition:
ModeInfo.php:36
ILIAS\UI\Implementation\Component\MainControls\ModeInfo\$close_action
URI $close_action
Definition:
ModeInfo.php:37
ILIAS\UI\Implementation\Component\MainControls\ModeInfo\getModeTitle
getModeTitle()
Definition:
ModeInfo.php:45
ILIAS\UI\Component\MainControls\ModeInfo
Interface ModeInfo.
Definition:
ModeInfo.php:32
ILIAS\UI\Component\MainControls
Definition:
Factory.php:21
ILIAS\UI\Implementation\Component\MainControls
Definition:
Factory.php:21
components
ILIAS
UI
src
Implementation
Component
MainControls
ModeInfo.php
Generated on Sun Oct 19 2025 23:04:30 for ILIAS by
1.9.4 (using
Doxyfile
)