ILIAS
release_7 Revision v7.30-3-g800a261c036
◀ 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
p
r
s
t
w
+
Functions
_
a
b
c
f
g
h
i
r
s
t
w
+
Variables
$
c
d
e
f
g
h
j
l
m
p
s
t
+
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
q
r
s
t
u
v
w
x
z
+
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
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
z
Examples
•
All
Data Structures
Namespaces
Files
Functions
Variables
Modules
Pages
class.ilADTLocalizedTextDefinition.php
Go to the documentation of this file.
1
<?php
2
/* Copyright (c) 1998-2009 ILIAS open source, Extended GPL, see docs/LICENSE */
3
8
class
ilADTLocalizedTextDefinition
extends
ilADTDefinition
9
{
13
private
$active_languages
= [];
14
18
private
$default_language
=
''
;
19
23
private
$max_length
;
24
28
public
function
getMaxLength
() : ?int
29
{
30
return
$this->max_length
;
31
}
32
36
public
function
setMaxLength
(
int
$max_length
) : void
37
{
38
$this->max_length =
$max_length
;
39
}
40
44
public
function
getActiveLanguages
()
45
{
46
return
$this->active_languages
;
47
}
48
49
public
function
setActiveLanguages
(array $active)
50
{
51
$this->active_languages = $active;
52
}
53
57
public
function
isComparableTo
(
ilADT
$a_adt)
58
{
59
return
$a_adt instanceof
ilADTLocalizedText
;
60
}
61
65
public
function
getDefaultLanguage
() : string
66
{
67
return
$this->default_language
;
68
}
69
73
public
function
setDefaultLanguage
(
string
$default_language
) : void
74
{
75
$this->default_language =
$default_language
;
76
}
77
81
public
function
supportsTranslations
()
82
{
83
return
strlen($this->
getDefaultLanguage
()) > 0 ? true :
false
;
84
}
85
}
ilADTLocalizedTextDefinition\setMaxLength
setMaxLength(int $max_length)
Definition:
class.ilADTLocalizedTextDefinition.php:36
ilADTLocalizedTextDefinition\setActiveLanguages
setActiveLanguages(array $active)
Definition:
class.ilADTLocalizedTextDefinition.php:49
ilADTLocalizedTextDefinition\getDefaultLanguage
getDefaultLanguage()
Definition:
class.ilADTLocalizedTextDefinition.php:65
ilADTLocalizedTextDefinition\supportsTranslations
supportsTranslations()
Definition:
class.ilADTLocalizedTextDefinition.php:81
ilADTLocalizedTextDefinition\getMaxLength
getMaxLength()
Definition:
class.ilADTLocalizedTextDefinition.php:28
ilADT
ADT base class.
Definition:
class.ilADT.php:11
ilADTLocalizedText
Class ilADTLocalizedText.
Definition:
class.ilADTLocalizedText.php:8
ilADTLocalizedTextDefinition\$default_language
$default_language
Definition:
class.ilADTLocalizedTextDefinition.php:18
ilADTLocalizedTextDefinition\isComparableTo
isComparableTo(ilADT $a_adt)
Definition:
class.ilADTLocalizedTextDefinition.php:57
ilADTLocalizedTextDefinition\$active_languages
$active_languages
Definition:
class.ilADTLocalizedTextDefinition.php:13
ilADTLocalizedTextDefinition\getActiveLanguages
getActiveLanguages()
Definition:
class.ilADTLocalizedTextDefinition.php:44
ilADTDefinition
ADT definition base class.
Definition:
class.ilADTDefinition.php:11
ilADTLocalizedTextDefinition
Class ilADTLocalizedText.
Definition:
class.ilADTLocalizedTextDefinition.php:8
ilADTLocalizedTextDefinition\$max_length
$max_length
Definition:
class.ilADTLocalizedTextDefinition.php:23
ilADTLocalizedTextDefinition\setDefaultLanguage
setDefaultLanguage(string $default_language)
Definition:
class.ilADTLocalizedTextDefinition.php:73
Services
ADT
classes
Types
LocalizedText
class.ilADTLocalizedTextDefinition.php
Generated on Wed Apr 2 2025 21:01:13 for ILIAS by
1.8.13 (using
Doxyfile
)