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.ilADTLocalizedTextDefinition.php
Go to the documentation of this file.
1
<?php
2
19
declare(strict_types=1);
20
25
class
ilADTLocalizedTextDefinition
extends
ilADTDefinition
26
{
30
private
array
$active_languages
= [];
31
private
string
$default_language
=
''
;
32
private
?
int
$max_length
= null;
33
34
public
function
getMaxLength
(): ?
int
35
{
36
return
$this->max_length
;
37
}
38
39
public
function
setMaxLength
(?
int
$max_length): void
40
{
41
$this->max_length =
$max_length
;
42
}
43
47
public
function
getActiveLanguages
(): array
48
{
49
return
$this->active_languages
;
50
}
51
52
public
function
setActiveLanguages
(array $active): void
53
{
54
$this->active_languages = $active;
55
}
56
60
public
function
isComparableTo
(
ilADT
$a_adt): bool
61
{
62
return
$a_adt instanceof
ilADTLocalizedText
;
63
}
64
68
public
function
getDefaultLanguage
(): string
69
{
70
return
$this->default_language
;
71
}
72
76
public
function
setDefaultLanguage
(
string
$default_language): void
77
{
78
$this->default_language =
$default_language
;
79
}
80
84
public
function
supportsTranslations
(): bool
85
{
86
return
strlen($this->
getDefaultLanguage
()) > 0;
87
}
88
}
ilADTLocalizedTextDefinition\$default_language
string $default_language
Definition:
class.ilADTLocalizedTextDefinition.php:31
ilADTLocalizedTextDefinition\setActiveLanguages
setActiveLanguages(array $active)
Definition:
class.ilADTLocalizedTextDefinition.php:52
ilADTLocalizedTextDefinition\$active_languages
array $active_languages
Definition:
class.ilADTLocalizedTextDefinition.php:30
ilADTLocalizedTextDefinition\getDefaultLanguage
getDefaultLanguage()
Definition:
class.ilADTLocalizedTextDefinition.php:68
ilADTLocalizedTextDefinition\supportsTranslations
supportsTranslations()
Definition:
class.ilADTLocalizedTextDefinition.php:84
ilADTLocalizedTextDefinition\getMaxLength
getMaxLength()
Definition:
class.ilADTLocalizedTextDefinition.php:34
ilADT
ADT base class.
Definition:
class.ilADT.php:11
ilADTLocalizedText
Class ilADTLocalizedText.
Definition:
class.ilADTLocalizedText.php:25
ilADTLocalizedTextDefinition\isComparableTo
isComparableTo(ilADT $a_adt)
Definition:
class.ilADTLocalizedTextDefinition.php:60
ilADTLocalizedTextDefinition\setMaxLength
setMaxLength(?int $max_length)
Definition:
class.ilADTLocalizedTextDefinition.php:39
ilADTLocalizedTextDefinition\getActiveLanguages
getActiveLanguages()
Definition:
class.ilADTLocalizedTextDefinition.php:47
ilADTDefinition
ADT definition base class.
Definition:
class.ilADTDefinition.php:11
ilADTLocalizedTextDefinition\$max_length
int $max_length
Definition:
class.ilADTLocalizedTextDefinition.php:32
ilADTLocalizedTextDefinition
Class ilADTLocalizedText.
Definition:
class.ilADTLocalizedTextDefinition.php:25
ILIAS\Repository\int
int(string $key)
Definition:
trait.BaseGUIRequest.php:61
ilADTLocalizedTextDefinition\setDefaultLanguage
setDefaultLanguage(string $default_language)
Definition:
class.ilADTLocalizedTextDefinition.php:76
Services
ADT
classes
Types
LocalizedText
class.ilADTLocalizedTextDefinition.php
Generated on Thu Apr 3 2025 22:01:44 for ILIAS by
1.8.13 (using
Doxyfile
)