ILIAS
trunk Revision v11.0_alpha-1689-g66c127b4ae8
◀ 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.ilADTLocalizedTextDBBridge.php
Go to the documentation of this file.
1
<?php
2
19
declare(strict_types=1);
20
25
class
ilADTLocalizedTextDBBridge
extends
ilADTDBBridge
26
{
27
public
function
getTable
(): ?string
28
{
29
return
'adv_md_values_ltext'
;
30
}
31
32
protected
function
isValidADT
(
ilADT
$adt
): bool
33
{
34
return
$adt instanceof
ilADTLocalizedText
;
35
}
36
37
public
function
readRecord
(array $a_row): void
38
{
39
$active_languages = $this->
getADT
()->getCopyOfDefinition()->getActiveLanguages();
40
$default_language = $this->
getADT
()->getCopyOfDefinition()->getDefaultLanguage();
41
$language = $a_row[$this->
getElementId
() .
'_language'
];
42
43
if
(!$this->
getADT
()->getCopyOfDefinition()->getMultilingualValueSupport()) {
44
$this->
getADT
()->setText($a_row[$this->
getElementId
() .
'_translation'
]);
45
} elseif (strcmp($language, $default_language) === 0) {
46
$this->
getADT
()->setText($a_row[$this->
getElementId
() .
'_translation'
]);
47
} elseif (!strlen($default_language)) {
48
$this->
getADT
()->setText($a_row[$this->
getElementId
() .
'_translation'
]);
49
}
50
if
(in_array($language, $active_languages)) {
51
$this->
getADT
()->setTranslation(
52
$language,
53
(
string
) $a_row[$this->
getElementId
() .
'_translation'
]
54
);
55
}
56
}
57
58
public
function
prepareInsert
(array &$a_fields): void
59
{
60
$a_fields[$this->
getElementId
()] = [
ilDBConstants::T_TEXT
, $this->
getADT
()->getText()];
61
}
62
66
public
function
afterInsert
(): void
67
{
68
$this->
afterUpdate
();
69
}
70
71
public
function
getAdditionalPrimaryFields
(): array
72
{
73
return
[
74
'value_index'
=> [
ilDBConstants::T_TEXT
,
''
]
75
];
76
}
77
78
public
function
afterUpdate
(): void
79
{
80
if
(!$this->
getADT
()->getCopyOfDefinition()->supportsTranslations()) {
81
return
;
82
}
83
$this->
deleteTranslations
();
84
$this->
insertTranslations
();
85
}
86
87
protected
function
deleteTranslations
(): void
88
{
89
$this->db->manipulate(
90
$q
=
91
'delete from '
. $this->
getTable
() .
' '
.
92
'where '
. $this->
buildPrimaryWhere
() .
' '
.
93
'and value_index != '
. $this->db->quote(
''
,
ilDBConstants::T_TEXT
)
94
);
95
}
96
102
protected
function
insertTranslations
(): void
103
{
104
foreach
($this->
getADT
()->getTranslations() as $language => $value) {
105
$fields = $this->
getPrimary
();
106
$fields[
'value_index'
] = [
ilDBConstants::T_TEXT
, $language];
107
$fields[
'value'
] = [
ilDBConstants::T_TEXT
, $value];
108
$this->db->insert($this->
getTable
(), $fields);
109
}
110
}
111
}
ilADTLocalizedTextDBBridge\getAdditionalPrimaryFields
getAdditionalPrimaryFields()
Definition:
class.ilADTLocalizedTextDBBridge.php:71
ilADTDBBridge\buildPrimaryWhere
buildPrimaryWhere()
Convert primary keys array to sql string.
Definition:
class.ilADTDBBridge.php:117
ilADTLocalizedTextDBBridge\afterInsert
afterInsert()
Definition:
class.ilADTLocalizedTextDBBridge.php:66
ilADTLocalizedTextDBBridge\isValidADT
isValidADT(ilADT $adt)
Definition:
class.ilADTLocalizedTextDBBridge.php:32
ilADTLocalizedTextDBBridge\readRecord
readRecord(array $a_row)
Definition:
class.ilADTLocalizedTextDBBridge.php:37
ilADTLocalizedTextDBBridge\deleteTranslations
deleteTranslations()
Definition:
class.ilADTLocalizedTextDBBridge.php:87
ilADTDBBridge\getPrimary
getPrimary()
Get primary fields.
Definition:
class.ilADTDBBridge.php:107
ilADTLocalizedTextDBBridge\getTable
getTable()
Definition:
class.ilADTLocalizedTextDBBridge.php:27
ilADTDBBridge\getElementId
getElementId()
Get element id.
Definition:
class.ilADTDBBridge.php:84
ilADT
ADT base class.
Definition:
class.ilADT.php:25
ilADTLocalizedText
Class ilADTLocalizedText.
Definition:
class.ilADTLocalizedText.php:25
ilADTLocalizedTextDBBridge
Class ilADTLocalizedTextDBBridge.
Definition:
class.ilADTLocalizedTextDBBridge.php:25
ilADTDBBridge\$adt
ilADT $adt
Definition:
class.ilADTDBBridge.php:27
ilDBConstants\T_TEXT
const T_TEXT
Definition:
class.ilDBConstants.php:56
ilADTDBBridge
ADT DB bridge base class.
Definition:
class.ilADTDBBridge.php:25
ilADTLocalizedTextDBBridge\insertTranslations
insertTranslations()
Save all translations TODO: Translations are always persisted for all active languages, even if the translation is an empty string.
Definition:
class.ilADTLocalizedTextDBBridge.php:102
ilADTLocalizedTextDBBridge\prepareInsert
prepareInsert(array &$a_fields)
Definition:
class.ilADTLocalizedTextDBBridge.php:58
$q
$q
Definition:
shib_logout.php:21
ilADTLocalizedTextDBBridge\afterUpdate
afterUpdate()
Definition:
class.ilADTLocalizedTextDBBridge.php:78
ilADTDBBridge\getADT
getADT()
Definition:
class.ilADTDBBridge.php:56
components
ILIAS
ADT
classes
Types
LocalizedText
class.ilADTLocalizedTextDBBridge.php
Generated on Wed Apr 2 2025 23:01:48 for ILIAS by
1.8.13 (using
Doxyfile
)