mirror of
https://github.com/werkraum-media/events.git
synced 2024-11-14 17:36:11 +01:00
12 lines
280 B
PHP
12 lines
280 B
PHP
|
<?php
|
||
|
|
||
|
defined('TYPO3') or die();
|
||
|
|
||
|
(static function (string $extensionKey, string $tableName) {
|
||
|
\TYPO3\CMS\Core\Utility\ExtensionManagementUtility::addStaticFile(
|
||
|
$extensionKey,
|
||
|
'Configuration/TypoScript',
|
||
|
'Events'
|
||
|
);
|
||
|
})('events', 'sys_template');
|