ILIAS
trunk Revision v11.0_alpha-2645-g16283d3b3f8
◀ ilDoc Overview
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:144
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 Mon Sep 1 2025 23:03:32 for ILIAS by
1.8.13 (using
Doxyfile
)