mirror of
https://github.com/werkraum-media/calendar.git
synced 2024-11-22 18:06:09 +01:00
19 lines
466 B
PHP
19 lines
466 B
PHP
|
<?php
|
||
|
|
||
|
(function () {
|
||
|
\TYPO3\CMS\Extbase\Utility\ExtensionUtility::configurePlugin(
|
||
|
'Calendar',
|
||
|
'Example',
|
||
|
[
|
||
|
\WerkraumMedia\Calendar\Controller\Frontend\CalendarController::class => implode(',', [
|
||
|
'day',
|
||
|
'week',
|
||
|
'month',
|
||
|
'year',
|
||
|
]),
|
||
|
],
|
||
|
[],
|
||
|
\TYPO3\CMS\Extbase\Utility\ExtensionUtility::PLUGIN_TYPE_CONTENT_ELEMENT
|
||
|
);
|
||
|
})();
|