mirror of
https://github.com/werkraum-media/thuecat.git
synced 2024-11-05 04:46:12 +01:00
Daniel Siepmann
775db67efa
Allows to select a single tourist attraction. Provides static TypoScript to resolve reference for Fluid based rendering.
19 lines
543 B
PHP
19 lines
543 B
PHP
<?php
|
|
|
|
defined('TYPO3') or die();
|
|
|
|
(static function (string $extensionKey, string $tableName) {
|
|
\TYPO3\CMS\Core\Utility\ExtensionManagementUtility::addStaticFile(
|
|
$extensionKey,
|
|
'Configuration/TypoScript/ContentElements',
|
|
'ThüCAT - Content Elements'
|
|
);
|
|
\TYPO3\CMS\Core\Utility\ExtensionManagementUtility::addStaticFile(
|
|
$extensionKey,
|
|
'Configuration/TypoScript/PageTypes',
|
|
'ThüCAT - Page Types'
|
|
);
|
|
})(
|
|
\WerkraumMedia\ThueCat\Extension::EXTENSION_KEY,
|
|
'sys_template'
|
|
);
|