ILIAS
release_7 Revision v7.30-3-g800a261c036
◀ ilDoc Overview
Main Page
Related Pages
Modules
+
Namespaces
Namespace List
+
Namespace Members
+
All
$
_
a
b
c
d
e
f
g
h
i
j
l
m
p
r
s
t
w
+
Functions
_
a
b
c
f
g
h
i
r
s
t
w
+
Variables
$
c
d
e
f
g
h
j
l
m
p
s
t
+
Data Structures
Data Structures
Data Structure Index
Class Hierarchy
+
Data Fields
+
All
$
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
z
+
Functions
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
z
+
Variables
$
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
z
+
Files
File List
+
Globals
+
All
$
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
z
+
Functions
_
a
b
c
d
e
f
g
h
i
l
m
n
o
p
r
s
t
u
v
w
x
+
Variables
$
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
z
Examples
•
All
Data Structures
Namespaces
Files
Functions
Variables
Modules
Pages
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 Sun Apr 6 2025 21:01:49 for ILIAS by
1.8.13 (using
Doxyfile
)