ILIAS
trunk Revision v11.0_alpha-2645-g16283d3b3f8
◀ 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\UI\Component\MainControls
Definition:
Factory.php:21
ILIAS\UI\Implementation\Component\MainControls\ModeInfo\$close_action
URI $close_action
Definition:
ModeInfo.php:37
ILIAS\UI\Implementation\Component\MainControls\ModeInfo\__construct
__construct(string $mode_title, URI $close_action)
Definition:
ModeInfo.php:39
ILIAS\UI\Implementation\Component\MainControls\ModeInfo\getModeTitle
getModeTitle()
Definition:
ModeInfo.php:45
ILIAS\UI\Component\MainControls\ModeInfo
Interface ModeInfo.
Definition:
ModeInfo.php:31
ILIAS\UI\Implementation\Component\MainControls\ModeInfo
Class ModeInfo.
Definition:
ModeInfo.php:32
ILIAS\Data\URI
ILIAS\UI\Implementation\Component\MainControls\ModeInfo\getCloseAction
getCloseAction()
Definition:
ModeInfo.php:50
ComponentHelper
ILIAS\UI\Implementation\Component\MainControls\ModeInfo\$mode_title
string $mode_title
Definition:
ModeInfo.php:36
ILIAS\UI\Implementation\Component\MainControls
Definition:
Factory.php:21
ComponentHelper
components
ILIAS
UI
src
Implementation
Component
MainControls
ModeInfo.php
Generated on Mon Sep 1 2025 23:04:18 for ILIAS by
1.8.13 (using
Doxyfile
)