mirror of
https://github.com/werkraum-media/events.git
synced 2024-11-13 03:36:10 +01:00
15 lines
338 B
PHP
15 lines
338 B
PHP
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
use TYPO3\CMS\Core\Utility\ExtensionManagementUtility;
|
|
|
|
defined('TYPO3') or die();
|
|
|
|
(static function (string $extensionKey, string $tableName) {
|
|
ExtensionManagementUtility::addStaticFile(
|
|
$extensionKey,
|
|
'Configuration/TypoScript',
|
|
'Events'
|
|
);
|
|
})('events', 'sys_template');
|