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.ilADTText.php
Go to the documentation of this file.
1
<?php
2
3
declare(strict_types=1);
4
5
class
ilADTText
extends
ilADT
6
{
7
protected
?
string
$value
;
8
9
// definition
10
11
protected
function
isValidDefinition
(
ilADTDefinition
$a_def): bool
12
{
13
return
$a_def instanceof
ilADTTextDefinition
;
14
}
15
16
public
function
reset
(): void
17
{
18
parent::reset();
19
$this->value = null;
20
}
21
22
// properties
23
24
public
function
setText
(?
string
$a_value = null): void
25
{
26
if
($a_value !== null) {
27
$a_value = trim($a_value);
28
}
29
$this->value = $a_value;
30
}
31
32
public
function
getText
(): ?string
33
{
34
return
$this->value
;
35
}
36
37
public
function
getLength
():
int
38
{
39
if
(function_exists(
"mb_strlen"
)) {
40
return
mb_strlen((
string
) $this->
getText
(),
"UTF-8"
);
41
}
else
{
42
return
strlen((
string
) $this->
getText
());
43
}
44
}
45
46
// comparison
47
48
public
function
equals
(
ilADT
$a_adt): ?bool
49
{
50
if
($this->
getDefinition
()->isComparableTo($a_adt)) {
51
return
!strcmp($this->
getText
(), $a_adt->getText());
52
}
53
return
null;
54
}
55
56
public
function
isLarger
(
ilADT
$a_adt): ?bool
57
{
58
return
null;
59
}
60
61
public
function
isSmaller
(
ilADT
$a_adt): ?bool
62
{
63
return
null;
64
}
65
66
// null
67
68
public
function
isNull
(): bool
69
{
70
return
!$this->
getLength
();
71
}
72
73
// validation
74
75
public
function
isValid
(): bool
76
{
77
$valid
= parent::isValid();
78
if
(!$this->
isNull
()) {
79
$max = $this->
getDefinition
()->getMaxLength();
80
if
($max && $max < $this->
getLength
()) {
81
$valid
=
false
;
82
$this->
addValidationError
(self::ADT_VALIDATION_ERROR_MAX_LENGTH);
83
}
84
}
85
return
$valid
;
86
}
87
88
public
function
getCheckSum
(): ?string
89
{
90
if
(!$this->
isNull
()) {
91
return
md5($this->
getText
());
92
}
93
return
null;
94
}
95
96
public
function
exportStdClass
(): ?
stdClass
97
{
98
if
(!$this->
isNull
()) {
99
$obj =
new
stdClass
();
100
$obj->value = $this->
getText
();
101
return
$obj;
102
}
103
return
null;
104
}
105
106
public
function
importStdClass
(?
stdClass
$a_std): void
107
{
108
if
(is_object($a_std)) {
109
$this->
setText
($a_std->value);
110
}
111
}
112
}
ilADTTextDefinition
Definition:
class.ilADTTextDefinition.php:21
ilADTText\equals
equals(ilADT $a_adt)
Definition:
class.ilADTText.php:48
ilADT\addValidationError
addValidationError(string $a_error_code)
Definition:
class.ilADT.php:223
ilADTText\isNull
isNull()
Definition:
class.ilADTText.php:68
ilADTText\$value
string $value
Definition:
class.ilADTText.php:7
stdClass
$valid
$valid
Definition:
dummy_client.php:57
ilADT
ADT base class.
Definition:
class.ilADT.php:11
ilADTText\isSmaller
isSmaller(ilADT $a_adt)
Definition:
class.ilADTText.php:61
ilADTText\setText
setText(?string $a_value=null)
Definition:
class.ilADTText.php:24
ilADTText\isValidDefinition
isValidDefinition(ilADTDefinition $a_def)
Definition:
class.ilADTText.php:11
ilADTText\importStdClass
importStdClass(?stdClass $a_std)
Definition:
class.ilADTText.php:106
ilADTText\getCheckSum
getCheckSum()
Definition:
class.ilADTText.php:88
ilADTText\getText
getText()
Definition:
class.ilADTText.php:32
ilADTText\exportStdClass
exportStdClass()
Definition:
class.ilADTText.php:96
ilADTText\isValid
isValid()
Definition:
class.ilADTText.php:75
ilADTText\reset
reset()
Definition:
class.ilADTText.php:16
ilADTText\isLarger
isLarger(ilADT $a_adt)
Definition:
class.ilADTText.php:56
ilADTText
Definition:
class.ilADTText.php:5
ilADTDefinition
ADT definition base class.
Definition:
class.ilADTDefinition.php:11
ILIAS\Repository\int
int(string $key)
Definition:
trait.BaseGUIRequest.php:61
ilADTText\getLength
getLength()
Definition:
class.ilADTText.php:37
ilADT\getDefinition
getDefinition()
Get definition.
Definition:
class.ilADT.php:92
Services
ADT
classes
Types
Text
class.ilADTText.php
Generated on Fri Apr 4 2025 22:02:08 for ILIAS by
1.8.13 (using
Doxyfile
)