ILIAS
release_8 Revision v8.19
◀ 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
n
o
p
r
s
t
u
v
w
x
+
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
j
l
m
p
s
t
u
+
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
r
s
t
u
v
w
x
z
+
Functions
_
a
b
c
d
e
g
h
i
m
n
p
r
s
t
u
v
x
+
Variables
$
a
c
d
e
f
g
h
i
j
k
l
m
n
o
p
r
s
t
u
v
w
z
Examples
•
All
Data Structures
Namespaces
Files
Functions
Variables
Modules
Pages
class.ilTestPlayerNavButton.php
Go to the documentation of this file.
1
<?php
2
25
class
ilTestPlayerNavButton
extends
ilLinkButton
26
{
30
private
$nextCommand
=
''
;
31
32
// fau: testNav - add glyphicon support for navigation buttons
33
private
$leftGlyph
=
''
;
34
private
$rightGlyph
=
''
;
35
36
public
function
setLeftGlyph
($glyph)
37
{
38
$this->leftGlyph = $glyph;
39
}
40
41
public
function
setRightGlyph
($glyph)
42
{
43
$this->rightGlyph = $glyph;
44
}
45
46
protected
function
renderCaption
(): string
47
{
48
$caption
=
''
;
49
50
if
($this->leftGlyph) {
51
$caption
.=
'<span class="'
. $this->leftGlyph .
'"></span> '
;
52
}
53
54
$caption
.= parent::renderCaption();
55
56
if
($this->rightGlyph) {
57
$caption
.=
' <span class="'
. $this->rightGlyph .
'"></span>'
;
58
}
59
60
return
$caption
;
61
}
62
// fau.
63
67
public
function
getNextCommand
(): string
68
{
69
return
$this->nextCommand
;
70
}
71
75
public
function
setNextCommand
(
$nextCommand
)
76
{
77
$this->nextCommand =
$nextCommand
;
78
}
79
83
public
function
render
(): string
84
{
85
$this->
prepareRender
();
86
87
$attr = array(
88
'href'
=> $this->
getUrl
() ? $this->
getUrl
() :
"#"
,
89
'target'
=> $this->
getTarget
()
90
);
91
92
if
(strlen($this->
getNextCommand
())) {
93
$attr[
'data-nextcmd'
] = $this->
getNextCommand
();
94
}
95
96
return
'<a'
. $this->
renderAttributes
($attr) .
'>'
. $this->
renderCaption
() .
'</a>'
;
97
}
98
99
public
static
function
getInstance
(): self
100
{
101
return
new
self
(self::TYPE_LINK);
102
}
103
}
ilTestPlayerNavButton\$nextCommand
$nextCommand
Definition:
class.ilTestPlayerNavButton.php:30
ilLinkButton\renderAttributes
renderAttributes(array $a_additional_attr=null)
Definition:
class.ilLinkButton.php:70
ilTestPlayerNavButton\getNextCommand
getNextCommand()
Definition:
class.ilTestPlayerNavButton.php:67
ilTestPlayerNavButton\renderCaption
renderCaption()
Definition:
class.ilTestPlayerNavButton.php:46
ilButtonBase\$caption
string $caption
Definition:
class.ilButtonBase.php:30
ilTestPlayerNavButton\render
render()
Definition:
class.ilTestPlayerNavButton.php:83
ilTestPlayerNavButton\setRightGlyph
setRightGlyph($glyph)
Definition:
class.ilTestPlayerNavButton.php:41
ilLinkButton\getUrl
getUrl()
Definition:
class.ilLinkButton.php:45
ilTestPlayerNavButton\getInstance
static getInstance()
Definition:
class.ilTestPlayerNavButton.php:99
ilTestPlayerNavButton\$rightGlyph
$rightGlyph
Definition:
class.ilTestPlayerNavButton.php:34
ilTestPlayerNavButton\setNextCommand
setNextCommand($nextCommand)
Definition:
class.ilTestPlayerNavButton.php:75
ilButtonBase\prepareRender
prepareRender()
Definition:
class.ilButtonBase.php:213
ilTestPlayerNavButton\setLeftGlyph
setLeftGlyph($glyph)
Definition:
class.ilTestPlayerNavButton.php:36
ilTestPlayerNavButton\$leftGlyph
$leftGlyph
Definition:
class.ilTestPlayerNavButton.php:33
ilTestPlayerNavButton
Definition:
class.ilTestPlayerNavButton.php:25
ilLinkButton\getTarget
getTarget()
Definition:
class.ilLinkButton.php:55
ilLinkButton
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
Definition:
class.ilLinkButton.php:25
Modules
Test
classes
class.ilTestPlayerNavButton.php
Generated on Thu Apr 3 2025 22:01:38 for ILIAS by
1.8.13 (using
Doxyfile
)