mirror of
https://github.com/werkraum-media/calendar.git
synced 2024-11-22 18:06:09 +01:00
Daniel Siepmann
77dd56ad43
This replaces the existing unit tests for the controller. Functional tests are way better suited for testing the controller.
18 lines
466 B
PHP
18 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
|
|
);
|
|
})();
|