ILIAS
trunk Revision v11.0_alpha-3011-gc6b235a2e85
◀ 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
Definition:
LOMDictionaryInitiator.php:30
ILIAS\MetaData\Repository\Dictionary\LOMDictionaryInitiator\ID_NAME
const array ID_NAME
Definition:
LOMDictionaryInitiator.php:62
ILIAS\MetaData\Repository\Dictionary\LOMDictionaryInitiator\TABLES
const array TABLES
Definition:
LOMDictionaryInitiator.php:31
ILIAS\MetaData\Elements\RessourceID\RessourceIDInterface
Definition:
RessourceIDInterface.php:24
ILIAS\MetaData\Repository\Dictionary\TagInterface
Definition:
TagInterface.php:26
ILIAS\MetaData\Repository\Utilities\Queries\Assignments\ActionAssignmentInterface
Definition:
ActionAssignmentInterface.php:26
ILIAS\MetaData\Repository\Utilities\Queries\Assignments\AssignmentRowInterface
Definition:
AssignmentRowInterface.php:24
ILIAS\MetaData\Repository\Utilities\Queries\Results\ResultFactoryInterface
Definition:
ResultFactoryInterface.php:24
ILIAS\MetaData\Repository\Utilities\Queries\Results\RowInterface
Definition:
RowInterface.php:24
ILIAS\MetaData\Repository\Utilities\Queries\Assignments\Action
Action
Definition:
Action.php:24
ILIAS\MetaData\Repository\Utilities\Queries
components
ILIAS
MetaData
classes
Repository
Utilities
Queries
TableNamesHandler.php
Generated on Sat Oct 18 2025 23:03:27 for ILIAS by
1.9.4 (using
Doxyfile
)