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.ilADTExternalLink.php
Go to the documentation of this file.
1
<?php
2
19
declare(strict_types=1);
20
21
class
ilADTExternalLink
extends
ilADT
22
{
23
public
const
MAX_LENGTH
= 2000;
24
25
protected
?
string
$value
;
26
protected
?
string
$title
;
27
32
protected
function
isValidDefinition
(
ilADTDefinition
$a_def): bool
33
{
34
return
$a_def instanceof
ilADTExternalLinkDefinition
;
35
}
36
40
public
function
reset
(): void
41
{
42
parent::reset();
43
$this->value =
null
;
44
$this->title =
null
;
45
}
46
51
public
function
setTitle
(?
string
$a_title =
null
): void
52
{
53
if
($a_title !==
null
) {
54
$a_title = trim($a_title);
55
}
56
$this->title = $a_title;
57
}
58
63
public
function
getTitle
(): ?string
64
{
65
return
$this->title
;
66
}
67
72
public
function
setUrl
(?
string
$a_value =
null
): void
73
{
74
if
($a_value !==
null
) {
75
$a_value = trim($a_value);
76
}
77
$this->value = $a_value;
78
}
79
84
public
function
getUrl
(): ?string
85
{
86
return
$this->value
;
87
}
88
93
public
function
equals
(
ilADT
$a_adt): ?bool
94
{
95
if
($this->
getDefinition
()->isComparableTo($a_adt)) {
96
return
strcmp($this->
getCheckSum
() ??
''
, $a_adt->
getCheckSum
() ??
''
) === 0;
97
}
98
return
null
;
99
}
100
101
public
function
isLarger
(
ilADT
$a_adt): ?bool
102
{
103
return
null
;
104
}
105
106
public
function
isSmaller
(
ilADT
$a_adt): ?bool
107
{
108
return
null
;
109
}
110
115
public
function
isNull
(): bool
116
{
117
return
!$this->
getLength
();
118
}
119
124
public
function
getLength
():
int
125
{
126
if
(function_exists(
"mb_strlen"
)) {
127
return
mb_strlen($this->
getUrl
() . $this->
getTitle
(),
"UTF-8"
);
128
}
else
{
129
return
strlen($this->
getUrl
() . $this->
getTitle
());
130
}
131
}
132
133
public
function
isValid
(): bool
134
{
135
$valid
= parent::isValid();
136
if
(!$this->
isNull
()) {
137
if
(self::MAX_LENGTH < $this->
getLength
()) {
138
$valid
=
false
;
139
$this->
addValidationError
(self::ADT_VALIDATION_ERROR_MAX_LENGTH);
140
}
141
}
142
return
$valid
;
143
}
144
149
public
function
getCheckSum
(): ?string
150
{
151
if
(!$this->
isNull
()) {
152
return
md5($this->
getUrl
() . $this->
getTitle
());
153
}
154
return
null
;
155
}
156
160
public
function
exportStdClass
(): ?
stdClass
161
{
162
if
(!$this->
isNull
()) {
163
$obj =
new
stdClass
();
164
$obj->url = $this->
getUrl
();
165
$obj->title = $this->
getTitle
();
166
return
$obj;
167
}
168
return
null
;
169
}
170
174
public
function
importStdClass
(?
stdClass
$a_std): void
175
{
176
if
(is_object($a_std)) {
177
$this->
setTitle
($a_std->title);
178
$this->
setUrl
($a_std->url);
179
}
180
}
181
}
ilADTExternalLinkDefinition
Definition:
class.ilADTExternalLinkDefinition.php:21
ilADT\addValidationError
addValidationError(string $a_error_code)
Definition:
class.ilADT.php:237
ilADTExternalLink\MAX_LENGTH
const MAX_LENGTH
Definition:
class.ilADTExternalLink.php:23
ilADTExternalLink\isSmaller
isSmaller(ilADT $a_adt)
Definition:
class.ilADTExternalLink.php:106
stdClass
$valid
$valid
Definition:
dummy_client.php:59
ilADTExternalLink\setUrl
setUrl(?string $a_value=null)
Set url.
Definition:
class.ilADTExternalLink.php:72
ilADTExternalLink\$title
string $title
Definition:
class.ilADTExternalLink.php:26
ilADTExternalLink\isLarger
isLarger(ilADT $a_adt)
Definition:
class.ilADTExternalLink.php:101
ilADT
ADT base class.
Definition:
class.ilADT.php:25
ilADTExternalLink\importStdClass
importStdClass(?stdClass $a_std)
Definition:
class.ilADTExternalLink.php:174
ilADTExternalLink\$value
string $value
Definition:
class.ilADTExternalLink.php:25
null
while($session_entry=$r->fetchRow(ilDBConstants::FETCHMODE_ASSOC)) return null
Definition:
shib_logout.php:142
ilADTExternalLink\getTitle
getTitle()
Get title.
Definition:
class.ilADTExternalLink.php:63
ilADTExternalLink\getUrl
getUrl()
Get url.
Definition:
class.ilADTExternalLink.php:84
ilADTExternalLink\getCheckSum
getCheckSum()
get checksum
Definition:
class.ilADTExternalLink.php:149
ilADTExternalLink\reset
reset()
Reset.
Definition:
class.ilADTExternalLink.php:40
ilADTExternalLink\exportStdClass
exportStdClass()
Definition:
class.ilADTExternalLink.php:160
ilADTExternalLink\isValid
isValid()
Definition:
class.ilADTExternalLink.php:133
ilADTExternalLink\isNull
isNull()
is null
Definition:
class.ilADTExternalLink.php:115
ilADTExternalLink\setTitle
setTitle(?string $a_title=null)
Set title.
Definition:
class.ilADTExternalLink.php:51
ilADTExternalLink\equals
equals(ilADT $a_adt)
Definition:
class.ilADTExternalLink.php:93
ilADTExternalLink\isValidDefinition
isValidDefinition(ilADTDefinition $a_def)
Definition:
class.ilADTExternalLink.php:32
ilADT\getCheckSum
getCheckSum()
Get unique checksum.
ilADTDefinition
ADT definition base class.
Definition:
class.ilADTDefinition.php:25
ILIAS\Repository\int
int(string $key)
Definition:
trait.BaseGUIRequest.php:61
ilADTExternalLink
Definition:
class.ilADTExternalLink.php:21
ilADTExternalLink\getLength
getLength()
Get length.
Definition:
class.ilADTExternalLink.php:124
ilADT\getDefinition
getDefinition()
Get definition.
Definition:
class.ilADT.php:106
components
ILIAS
ADT
classes
Types
ExternalLink
class.ilADTExternalLink.php
Generated on Thu Apr 3 2025 23:01:51 for ILIAS by
1.8.13 (using
Doxyfile
)