ILIAS
release_6 Revision v6.24-5-g0c8bfefb3b8
◀ 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
s
t
w
+
Functions
_
a
b
c
f
g
h
i
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
Standard.php
Go to the documentation of this file.
1
<?php
2
3
/* Copyright (c) 2017 Alexander Killing <killing@leifos.de> Extended GPL, see docs/LICENSE */
4
5
namespace
ILIAS\UI\Implementation\Component\Link
;
6
7
use
ILIAS\UI\Component
as
C
;
8
9
class
Standard
extends
Link
implements C\Link\Standard
10
{
11
15
protected
$label
;
16
22
public
function
__construct
(
$label
,
$action
)
23
{
24
parent::__construct
(
$action
);
25
$this->
checkStringArg
(
"label"
,
$label
);
26
$this->label =
$label
;
27
}
28
32
public
function
getLabel
()
33
{
34
return
$this->label
;
35
}
36
}
ILIAS\UI\Implementation\Component\Link
Definition:
Bulky.php:7
ILIAS\UI\Implementation\Component\Link\Standard
Definition:
Standard.php:9
ILIAS\UI\Component
ILIAS\UI\Implementation\Component\Link\Standard\$label
$label
Definition:
Standard.php:15
ILIAS\UI\Implementation\Component\checkStringArg
checkStringArg($which, $value)
Throw an InvalidArgumentException if $value is no string.
Definition:
ComponentHelper.php:92
ILIAS\UI\Implementation\Component\Link\Link
This implements commonalities between Links.
Definition:
Link.php:13
ILIAS\UI\Implementation\Component\Link\Standard\getLabel
getLabel()
Definition:
Standard.php:32
ILIAS\UI\Implementation\Component\Link\Link\$action
$action
Definition:
Link.php:20
ILIAS\UI\Implementation\Component\Link\Standard\__construct
__construct($label, $action)
Standard constructor.
Definition:
Standard.php:22
ILIAS\GlobalScreen\Provider\__construct
__construct(Container $dic, ilPlugin $plugin)
Definition:
PluginProviderHelper.php:30
src
UI
Implementation
Component
Link
Standard.php
Generated on Wed Apr 9 2025 20:01:39 for ILIAS by
1.8.13 (using
Doxyfile
)