ILIAS
trunk Revision v11.0_alpha-1702-gfd3ecb7f852
◀ ilDoc Overview
Main Page
Related Pages
Modules
+
Namespaces
Namespace List
+
Namespace Members
+
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
k
l
m
n
o
p
r
s
t
u
v
w
x
+
Variables
$
c
e
g
h
j
l
m
p
s
t
u
v
+
Enumerations
a
c
e
f
i
j
l
m
n
o
p
r
s
t
u
v
z
+
Enumerator
a
c
d
e
f
g
i
l
m
n
o
p
q
s
t
u
v
y
+
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
Ö
Enumerations
Enumerator
+
Files
File List
+
Globals
+
All
$
a
b
c
d
e
f
g
h
i
l
m
n
o
p
r
s
t
u
v
z
+
Functions
a
b
c
d
e
f
g
h
i
m
n
p
r
s
t
u
v
+
Variables
$
a
c
e
g
h
i
m
n
o
p
r
s
t
u
v
z
Enumerations
Enumerator
Examples
•
All
Data Structures
Namespaces
Files
Functions
Variables
Enumerations
Enumerator
Modules
Pages
class.ilJsLinkButton.php
Go to the documentation of this file.
1
<?php
2
24
class
ilJsLinkButton
extends
ilButton
25
{
26
protected
string
$target
;
27
28
public
static
function
getInstance
(): self
29
{
30
return
new
self
(self::TYPE_LINK);
31
}
32
33
public
function
setTarget
(
string
$a_value): void
34
{
35
$this->target = trim($a_value);
36
}
37
38
public
function
getTarget
(): string
39
{
40
return
$this->target
;
41
}
42
43
protected
function
renderCaption
(): string
44
{
45
return
' '
. $this->
getCaption
() .
' '
;
46
}
47
48
public
function
render
(): string
49
{
50
$this->
prepareRender
();
51
52
$attr = array();
53
54
$attr[
"target"
] = $this->
getTarget
();
55
$attr[
"name"
] = $this->
getName
();
56
$attr[
"onclick"
] = $this->
getOnClick
();
57
58
return
'<a'
. $this->
renderAttributes
($attr) .
'>'
.
59
$this->
renderCaption
() .
'</a>'
;
60
}
61
}
ilButton\getName
getName()
Definition:
class.ilButton.php:297
ilJsLinkButton\getTarget
getTarget()
Definition:
class.ilJsLinkButton.php:38
ilButtonBase\getOnClick
getOnClick()
Definition:
class.ilButtonBase.php:132
ilJsLinkButton\setTarget
setTarget(string $a_value)
Definition:
class.ilJsLinkButton.php:33
ilButton
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
Definition:
class.ilButton.php:24
ilButtonBase\prepareRender
prepareRender()
Definition:
class.ilButtonBase.php:213
ilJsLinkButton\$target
string $target
Definition:
class.ilJsLinkButton.php:26
ilJsLinkButton\render
render()
Definition:
class.ilJsLinkButton.php:48
ilJsLinkButton\getInstance
static getInstance()
Definition:
class.ilJsLinkButton.php:28
ilJsLinkButton
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
Definition:
class.ilJsLinkButton.php:24
ilButtonBase\renderAttributes
renderAttributes(?array $a_additional_attr=null)
Render current HTML attributes.
Definition:
class.ilButtonBase.php:195
ilJsLinkButton\renderCaption
renderCaption()
Definition:
class.ilJsLinkButton.php:43
ilButtonBase\getCaption
getCaption(bool $a_translate=true)
Definition:
class.ilButtonBase.php:90
components
ILIAS
UIComponent
Button
classes
class.ilJsLinkButton.php
Generated on Thu Apr 3 2025 23:04:11 for ILIAS by
1.8.13 (using
Doxyfile
)