ILIAS
release_10 Revision v10.1-43-ga1241a92c2f
◀ 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
}
ILIAS\MetaData\Repository\Dictionary\LOMDictionaryInitiator\TABLES
const TABLES
Definition:
LOMDictionaryInitiator.php:31
TableNamesHandler
LOMDictionaryInitiator
ILIAS\MetaData\Repository\Dictionary\LOMDictionaryInitiator\ID_NAME
const const ID_NAME
Definition:
LOMDictionaryInitiator.php:62
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 Wed Sep 10 2025 15:16:01 for ILIAS by
1.8.13 (using
Doxyfile
)