ILIAS
release_5-0 Revision 5.0.0-1144-gc4397b1f870
◀ ilDoc Overview
Main Page
Related Pages
Modules
+
Namespaces
Namespace List
+
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
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
+
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
k
l
m
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
class.ilLinkButton.php
Go to the documentation of this file.
1
<?php
2
/* Copyright (c) 1998-2012 ILIAS open source, Extended GPL, see docs/LICENSE */
3
4
require_once
"Services/UIComponent/Button/classes/class.ilButton.php"
;
5
13
class
ilLinkButton
extends
ilButton
14
{
15
protected
$url
;
// [string]
16
protected
$target
;
// [string]
17
18
public
static
function
getInstance
()
19
{
20
return
new
self
(self::TYPE_LINK);
21
}
22
23
24
//
25
// properties
26
//
27
33
public
function
setUrl
($a_value)
34
{
35
$this->url = trim($a_value);
36
}
37
43
public
function
getUrl
()
44
{
45
return
$this->url
;
46
}
47
53
public
function
setTarget
($a_value)
54
{
55
$this->target = trim($a_value);
56
}
57
63
public
function
getTarget
()
64
{
65
return
$this->target
;
66
}
67
68
69
//
70
// render
71
//
72
78
protected
function
renderCaption
()
79
{
80
return
' '
.$this->getCaption().
' '
;
81
}
82
83
public
function
render
()
84
{
85
$this->
prepareRender
();
86
87
$attr = array();
88
$attr[
"href"
] = $this->
getUrl
() ? $this->
getUrl
() :
"#"
;
89
$attr[
"target"
] = $this->
getTarget
();
90
91
return
'<a'
.$this->renderAttributes($attr).
'>'
.
92
$this->
renderCaption
().
'</a>'
;
93
}
94
}
ilButton\prepareRender
prepareRender()
Prepare render.
Definition:
class.ilButton.php:335
ilLinkButton\setTarget
setTarget($a_value)
Set target.
Definition:
class.ilLinkButton.php:53
ilLinkButton\renderCaption
renderCaption()
Prepare caption for render.
Definition:
class.ilLinkButton.php:78
ilLinkButton\$url
$url
Definition:
class.ilLinkButton.php:15
ilButton
Definition:
class.ilButton.php:11
ilLinkButton\getUrl
getUrl()
Get URL.
Definition:
class.ilLinkButton.php:43
ilLinkButton\$target
$target
Definition:
class.ilLinkButton.php:16
ilLinkButton\setUrl
setUrl($a_value)
Set URL.
Definition:
class.ilLinkButton.php:33
ilLinkButton\render
render()
Definition:
class.ilLinkButton.php:83
ilLinkButton\getInstance
static getInstance()
Definition:
class.ilLinkButton.php:18
ilLinkButton\getTarget
getTarget()
Get target.
Definition:
class.ilLinkButton.php:63
ilLinkButton
Definition:
class.ilLinkButton.php:13
Services
UIComponent
Button
classes
class.ilLinkButton.php
Generated on Mon Mar 31 2025 19:00:54 for ILIAS by
1.8.13 (using
Doxyfile
)