ILIAS
release_6 Revision v6.24-5-g0c8bfefb3b8
◀ ilDoc Overview
ModeInfo.php
Go to the documentation of this file.
1
<?php
2
3
namespace
ILIAS\UI\Implementation\Component\MainControls
;
4
5
use
ILIAS\Data\URI
;
6
use
ILIAS\UI\Component\MainControls
;
7
use
ILIAS\UI\Implementation\Component\ComponentHelper
;
8
14
class
ModeInfo
implements
MainControls\ModeInfo
15
{
16
use
ComponentHelper
;
20
private
$mode_title
;
24
private
$close_action
;
25
26
33
public
function
__construct
(
string
$mode_title,
URI
$close_action)
34
{
35
$this->mode_title = $mode_title;
36
$this->close_action = $close_action;
37
}
38
39
40
public
function
getModeTitle
() : string
41
{
42
return
$this->mode_title;
43
}
44
45
46
public
function
getCloseAction
() :
URI
47
{
48
return
$this->close_action;
49
}
50
}
ILIAS\UI\Component\MainControls
Definition:
Factory.php:5
ILIAS\UI\Implementation\Component\MainControls\ModeInfo\__construct
__construct(string $mode_title, URI $close_action)
ModeInfo constructor.
Definition:
ModeInfo.php:33
ILIAS\UI\Implementation\Component\ComponentHelper
trait ComponentHelper
Provides common functionality for component implementations.
Definition:
ComponentHelper.php:13
ILIAS\UI\Implementation\Component\MainControls\ModeInfo\$close_action
$close_action
Definition:
ModeInfo.php:24
ILIAS\UI\Implementation\Component\MainControls\ModeInfo\getModeTitle
getModeTitle()
Definition:
ModeInfo.php:40
ILIAS\UI\Component\MainControls\ModeInfo
Interface ModeInfo.
Definition:
ModeInfo.php:13
ILIAS\Data\URI
The scope of this class is split ilias-conform URI's into components.
Definition:
URI.php:17
URI
ILIAS\UI\Implementation\Component\MainControls\ModeInfo\getCloseAction
getCloseAction()
Definition:
ModeInfo.php:46
ILIAS\UI\Implementation\Component\MainControls
Definition:
Factory.php:4
ILIAS\UI\Implementation\Component\MainControls\ModeInfo\$mode_title
$mode_title
Definition:
ModeInfo.php:20
src
UI
Implementation
Component
MainControls
ModeInfo.php
Generated on Mon Sep 1 2025 20:01:43 for ILIAS by
1.8.13 (using
Doxyfile
)