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.ilWebLinkBaseItem.php
Go to the documentation of this file.
1
<?php
2
3
declare(strict_types=1);
4
25
abstract
class
ilWebLinkBaseItem
26
{
27
protected
string
$title
;
28
protected
string
$target
;
29
protected
bool
$active
;
30
34
protected
array
$parameters
;
35
protected
?
string
$description
;
36
44
public
function
__construct
(
45
string
$title,
46
?
string
$description,
47
string
$target,
48
bool
$active,
49
array $parameters
50
) {
51
$this->title =
$title
;
52
$this->target =
$target
;
53
$this->active =
$active
;
54
$this->description =
$description
;
55
$this->parameters =
$parameters
;
56
}
57
58
abstract
public
function
isInternal
(): bool;
59
60
public
function
getTitle
(): string
61
{
62
return
$this->title
;
63
}
64
65
public
function
getDescription
(): ?string
66
{
67
return
$this->description
;
68
}
69
70
public
function
getTarget
(): string
71
{
72
return
$this->target
;
73
}
74
75
public
function
isActive
(): bool
76
{
77
return
$this->active
;
78
}
79
83
public
function
getParameters
(): array
84
{
85
return
$this->parameters
;
86
}
87
}
ilWebLinkBaseItem\getTarget
getTarget()
Definition:
class.ilWebLinkBaseItem.php:70
ilWebLinkBaseItem\$description
string $description
Definition:
class.ilWebLinkBaseItem.php:35
ilWebLinkBaseItem\isActive
isActive()
Definition:
class.ilWebLinkBaseItem.php:75
ilWebLinkBaseItem\$active
bool $active
Definition:
class.ilWebLinkBaseItem.php:29
ilWebLinkBaseItem
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
Definition:
class.ilWebLinkBaseItem.php:25
ilWebLinkBaseItem\$target
string $target
Definition:
class.ilWebLinkBaseItem.php:28
ilWebLinkBaseItem\isInternal
isInternal()
ilWebLinkBaseItem\getTitle
getTitle()
Definition:
class.ilWebLinkBaseItem.php:60
ilWebLinkBaseItem\__construct
__construct(string $title, ?string $description, string $target, bool $active, array $parameters)
Definition:
class.ilWebLinkBaseItem.php:44
ilWebLinkBaseItem\getParameters
getParameters()
Definition:
class.ilWebLinkBaseItem.php:83
ilWebLinkBaseItem\$title
string $title
Definition:
class.ilWebLinkBaseItem.php:27
ilWebLinkBaseItem\$parameters
array $parameters
Definition:
class.ilWebLinkBaseItem.php:34
ilWebLinkBaseItem\getDescription
getDescription()
Definition:
class.ilWebLinkBaseItem.php:65
Modules
WebResource
classes
Item
class.ilWebLinkBaseItem.php
Generated on Fri Apr 4 2025 22:02:05 for ILIAS by
1.8.13 (using
Doxyfile
)