mirror of
https://github.com/werkraum-media/thuecat.git
synced 2024-11-05 21:06:11 +01:00
Daniel Siepmann
9176ba0cec
Allows to import entity of type TouristAttraction. Right now only in German, as this is most important. Add output of tourist attraction via custom content element.
14 lines
331 B
PHP
14 lines
331 B
PHP
<?php
|
|
|
|
defined('TYPO3') or die();
|
|
|
|
(static function (string $extensionKey, string $tableName) {
|
|
\TYPO3\CMS\Core\Utility\ExtensionManagementUtility::addStaticFile(
|
|
$extensionKey,
|
|
'Configuration/TypoScript/',
|
|
'ThüCAT'
|
|
);
|
|
})(
|
|
\WerkraumMedia\ThueCat\Extension::EXTENSION_KEY,
|
|
'sys_template'
|
|
);
|