mirror of
https://github.com/werkraum-media/thuecat.git
synced 2024-11-15 01:36:11 +01:00
24 lines
591 B
PHP
24 lines
591 B
PHP
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
use TYPO3\CMS\Core\Utility\ExtensionManagementUtility;
|
|
use WerkraumMedia\ThueCat\Extension;
|
|
|
|
defined('TYPO3') or die();
|
|
|
|
(static function (string $extensionKey, string $tableName) {
|
|
ExtensionManagementUtility::addStaticFile(
|
|
$extensionKey,
|
|
'Configuration/TypoScript/ContentElements',
|
|
'ThüCAT - Content Elements'
|
|
);
|
|
ExtensionManagementUtility::addStaticFile(
|
|
$extensionKey,
|
|
'Configuration/TypoScript/PageTypes',
|
|
'ThüCAT - Page Types'
|
|
);
|
|
})(
|
|
Extension::EXTENSION_KEY,
|
|
'sys_template'
|
|
);
|