ILIAS
trunk Revision v11.0_alpha-1723-g8e69f309bab
◀ 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
TableNamesHandler.php
Go to the documentation of this file.
1
<?php
2
19
declare(strict_types=1);
20
21
namespace
ILIAS\MetaData\Repository\Utilities\Queries
;
22
23
use
ILIAS\MetaData\Elements\RessourceID\RessourceIDInterface
;
24
use
ILIAS\MetaData\Repository\Dictionary\TagInterface
;
25
use
ILIAS\MetaData\Repository\Utilities\Queries\Results\RowInterface
;
26
use
ILIAS\MetaData\Repository\Dictionary\LOMDictionaryInitiator
;
27
use
ILIAS\MetaData\Repository\Utilities\Queries\Results\ResultFactoryInterface
;
28
use
ILIAS\MetaData\Repository\Utilities\Queries\Assignments\AssignmentRowInterface
;
29
use
ILIAS\MetaData\Repository\Utilities\Queries\Assignments\Action
;
30
use
ILIAS\MetaData\Repository\Utilities\Queries\Assignments\ActionAssignmentInterface
;
31
32
trait
TableNamesHandler
33
{
34
protected
function
checkTable(
string
$table): void
35
{
36
if
(
37
is_null($this->table($table)) ||
38
is_null($this->IDName($table))
39
) {
40
throw
new \ilMDRepositoryException(
'Invalid MD table: '
. $table);
41
}
42
}
43
44
protected
function
table(
string
$table): ?string
45
{
46
return
LOMDictionaryInitiator::TABLES
[$table] ??
null
;
47
}
48
49
protected
function
IDName(
string
$table): ?string
50
{
51
return
LOMDictionaryInitiator::ID_NAME
[$table] ??
null
;
52
}
53
}
TableNamesHandler
ILIAS\MetaData\Repository\Dictionary\LOMDictionaryInitiator\ID_NAME
const array const array ID_NAME
Definition:
LOMDictionaryInitiator.php:62
ILIAS\MetaData\Repository\Dictionary\LOMDictionaryInitiator\TABLES
const array TABLES
Definition:
LOMDictionaryInitiator.php:31
LOMDictionaryInitiator
null
while($session_entry=$r->fetchRow(ilDBConstants::FETCHMODE_ASSOC)) return null
Definition:
shib_logout.php:142
AssignmentRowInterface
RessourceIDInterface
ILIAS\MetaData\Repository\Utilities\Queries
RowInterface
ResultFactoryInterface
TagInterface
ActionAssignmentInterface
ILIAS\MetaData\Repository\Utilities\Queries\Assignments\Action
Action
Definition:
Action.php:23
components
ILIAS
MetaData
classes
Repository
Utilities
Queries
TableNamesHandler.php
Generated on Sun Apr 6 2025 23:03:44 for ILIAS by
1.8.13 (using
Doxyfile
)