event-types/constants.php

29 lines
917 B
PHP
Raw Normal View History

2021-02-26 01:01:01 +01:00
<?PHP
/**
* Constants for the environment of the museum-digital URL shortener.
*
* @author Joshua Ramon Enslin <joshua@museum-digital.de>
*/
declare(strict_types = 1);
const TL_FILE_DIRS = [
__DIR__ . "/l10n/translation-musdb/",
__DIR__ . "/classes/MDAllowedValueSets/l18n/",
];
const AUTOLOAD_DIRS = [
__DIR__ . "/src",
2021-12-12 13:18:24 +01:00
__DIR__ . "/classes/MD_STD/src",
2021-02-26 01:01:01 +01:00
__DIR__ . "/classes/MDAllowedValueSets/src",
__DIR__ . "/classes/MDTlLoader/src",
__DIR__ . "/classes/MDTlLoader/exceptions",
__DIR__ . "/classes/MDErrorReporter",
__DIR__ . "/classes/MDMailer/src",
__DIR__ . "/classes/MDMysqli/exceptions",
# __DIR__ . "/classes/MDTlLoader/src",
# __DIR__ . "/classes/MDTlLoader/exceptions",
__DIR__ . "/classes/MDErrorReporter/exceptions/generic",
__DIR__ . "/classes/MDErrorReporter/exceptions/page",
__DIR__ . "/classes/MDErrorReporter/exceptions/updates",
];