ILIAS
trunk Revision v11.0_alpha-1702-gfd3ecb7f852
◀ 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.ilADTExternalLinkDBBridge.php
Go to the documentation of this file.
1
<?php
2
19
declare(strict_types=1);
20
26
class
ilADTExternalLinkDBBridge
extends
ilADTDBBridge
27
{
33
protected
function
isValidADT
(
ilADT
$a_adt): bool
34
{
35
return
$a_adt instanceof
ilADTExternalLink
;
36
}
37
42
public
function
readRecord
(array $a_row): void
43
{
44
$this->
getADT
()->setUrl($a_row[$this->
getElementId
() .
'_value'
]);
45
$this->
getADT
()->setTitle($a_row[$this->
getElementId
() .
'_title'
]);
46
}
47
52
public
function
prepareInsert
(array &$a_fields): void
53
{
54
$a_fields[$this->
getElementId
() .
'_value'
] = [
"text"
, $this->
getADT
()->getUrl()];
55
$a_fields[$this->
getElementId
() .
'_title'
] = [
'text'
, $this->
getADT
()->getTitle()];
56
}
57
61
public
function
supportsDefaultValueColumn
(): bool
62
{
63
return
false
;
64
}
65
}
ilADTExternalLinkDBBridge\prepareInsert
prepareInsert(array &$a_fields)
prepare insert
Definition:
class.ilADTExternalLinkDBBridge.php:52
ilADTDBBridge\getElementId
getElementId()
Get element id.
Definition:
class.ilADTDBBridge.php:84
ilADT
ADT base class.
Definition:
class.ilADT.php:25
ilADTExternalLinkDBBridge\supportsDefaultValueColumn
supportsDefaultValueColumn()
Definition:
class.ilADTExternalLinkDBBridge.php:61
ilADTDBBridge
ADT DB bridge base class.
Definition:
class.ilADTDBBridge.php:25
ilADTExternalLinkDBBridge\readRecord
readRecord(array $a_row)
read record
Definition:
class.ilADTExternalLinkDBBridge.php:42
ilADTExternalLinkDBBridge
Abstract external link db bridge.
Definition:
class.ilADTExternalLinkDBBridge.php:26
ilADTExternalLinkDBBridge\isValidADT
isValidADT(ilADT $a_adt)
check valid type
Definition:
class.ilADTExternalLinkDBBridge.php:33
ilADTDBBridge\getADT
getADT()
Definition:
class.ilADTDBBridge.php:56
ilADTExternalLink
Definition:
class.ilADTExternalLink.php:21
components
ILIAS
ADT
classes
Types
ExternalLink
class.ilADTExternalLinkDBBridge.php
Generated on Thu Apr 3 2025 23:01:51 for ILIAS by
1.8.13 (using
Doxyfile
)