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.ilADTLocalizedText.php
Go to the documentation of this file.
1
<?php
2
19
declare(strict_types=1);
20
25
class
ilADTLocalizedText
extends
ilADTText
26
{
27
private
array
$translations
= [];
28
29
public
function
getTextForLanguage
(
string
$language): string
30
{
31
if
(array_key_exists($language, $this->
getTranslations
()) && strlen($this->
getTranslations
()[$language])) {
32
return
$this->
getTranslations
()[$language];
33
}
34
return
(
string
) $this->
getText
();
35
}
36
40
public
function
getTranslations
(): array
41
{
42
return
$this->translations
;
43
}
44
45
public
function
setTranslation
(
string
$language,
string
$translation): void
46
{
47
$this->translations[$language] = $translation;
48
}
49
53
protected
function
isValidDefinition
(
ilADTDefinition
$a_def): bool
54
{
55
return
$a_def instanceof
ilADTLocalizedTextDefinition
;
56
}
57
61
public
function
equals
(
ilADT
$a_adt): ?bool
62
{
63
if
(!$this->
getDefinition
()->isComparableTo($a_adt)) {
64
return
null;
65
}
66
if
($this->
getTranslations
() != count($a_adt->getTranslations())) {
67
return
false
;
68
}
69
foreach
($a_adt->getTranslations() as
$key
=>
$value
) {
70
if
(!isset($this->
getTranslations
()[$key])) {
71
return
false
;
72
}
73
if
(!strcmp($this->
getTranslations
()[$key],
$value
)) {
74
return
false
;
75
}
76
}
77
return
true
;
78
}
79
83
public
function
isLarger
(
ilADT
$a_adt): ?bool
84
{
85
return
null;
86
}
87
91
public
function
isSmaller
(
ilADT
$a_adt): ?bool
92
{
93
return
null;
94
}
95
99
public
function
isNull
(): bool
100
{
101
$has_translation =
false
;
102
foreach
($this->
getTranslations
() as $translation) {
103
if
($translation !==
''
) {
104
$has_translation =
true
;
105
break
;
106
}
107
}
108
return
!$this->
getLength
() && !$has_translation;
109
}
110
114
public
function
getCheckSum
(): ?string
115
{
116
if
(!$this->
isNull
()) {
117
return
md5(serialize($this->
getTranslations
()));
118
}
119
return
null;
120
}
121
125
public
function
exportStdClass
(): ?
stdClass
126
{
127
if
(!$this->
isNull
()) {
128
$obj =
new
stdClass
();
129
$obj->translations = $this->
getTranslations
();
130
return
$obj;
131
}
132
return
null;
133
}
134
138
public
function
importStdClass
(?
stdClass
$a_std): void
139
{
140
if
(is_object($a_std)) {
141
$this->translations = $a_std->translations;
142
}
143
}
144
}
ilADTText\$value
string $value
Definition:
class.ilADTText.php:7
ilADTLocalizedText\isValidDefinition
isValidDefinition(ilADTDefinition $a_def)
Definition:
class.ilADTLocalizedText.php:53
stdClass
ilADTLocalizedText\importStdClass
importStdClass(?stdClass $a_std)
Definition:
class.ilADTLocalizedText.php:138
ilADTLocalizedText\$translations
array $translations
Definition:
class.ilADTLocalizedText.php:27
ilADTLocalizedText\isLarger
isLarger(ilADT $a_adt)
Definition:
class.ilADTLocalizedText.php:83
ilADT
ADT base class.
Definition:
class.ilADT.php:11
ilADTLocalizedText
Class ilADTLocalizedText.
Definition:
class.ilADTLocalizedText.php:25
ilADTLocalizedText\setTranslation
setTranslation(string $language, string $translation)
Definition:
class.ilADTLocalizedText.php:45
ilADTLocalizedText\isSmaller
isSmaller(ilADT $a_adt)
Definition:
class.ilADTLocalizedText.php:91
ILIAS\LTI\ToolProvider\$key
string $key
Consumer key/client ID value.
Definition:
System.php:193
ilADTText\getText
getText()
Definition:
class.ilADTText.php:32
ilADTLocalizedText\getCheckSum
getCheckSum()
Definition:
class.ilADTLocalizedText.php:114
ilADTLocalizedText\getTextForLanguage
getTextForLanguage(string $language)
Definition:
class.ilADTLocalizedText.php:29
ilADTLocalizedText\equals
equals(ilADT $a_adt)
Definition:
class.ilADTLocalizedText.php:61
ilADTLocalizedText\getTranslations
getTranslations()
Definition:
class.ilADTLocalizedText.php:40
ilADTText
Definition:
class.ilADTText.php:5
ilADTDefinition
ADT definition base class.
Definition:
class.ilADTDefinition.php:11
ilADTLocalizedTextDefinition
Class ilADTLocalizedText.
Definition:
class.ilADTLocalizedTextDefinition.php:25
ilADTLocalizedText\isNull
isNull()
Definition:
class.ilADTLocalizedText.php:99
ilADTLocalizedText\exportStdClass
exportStdClass()
Definition:
class.ilADTLocalizedText.php:125
ilADTText\getLength
getLength()
Definition:
class.ilADTText.php:37
ilADT\getDefinition
getDefinition()
Get definition.
Definition:
class.ilADT.php:92
Services
ADT
classes
Types
LocalizedText
class.ilADTLocalizedText.php
Generated on Thu Apr 3 2025 22:01:44 for ILIAS by
1.8.13 (using
Doxyfile
)