diff --git a/Classes/Controller/IframeController.php b/Classes/Controller/IframeController.php index e64fabd..c4781ae 100644 --- a/Classes/Controller/IframeController.php +++ b/Classes/Controller/IframeController.php @@ -7,7 +7,7 @@ class IframeController extends \TYPO3\CMS\Extbase\Mvc\Controller\ActionControlle { protected $iframeEmbedUrl = 'https://map.geo.admin.ch/embed.html'; - public function indexAction() + public function indexAction(): void { $tsfe = $this->getTsfe(); diff --git a/Configuration/TCA/Overrides/tt_content.php b/Configuration/TCA/Overrides/tt_content.php index e137f3f..9c23417 100644 --- a/Configuration/TCA/Overrides/tt_content.php +++ b/Configuration/TCA/Overrides/tt_content.php @@ -1,17 +1,16 @@ 'Map geo admin iframe integration', 'category' => 'misc', 'shy' => 0, - 'version' => '2.0.0', + 'version' => '2.0.1', 'state' => 'stable', 'clearCacheOnLoad' => 1, 'author' => '', @@ -17,7 +17,7 @@ ], 'constraints' => [ 'depends' => [ - 'typo3' => '8.7.13-9.5.99', + 'typo3' => '8.7.13-10.9.99', ], 'conflicts' => [ ], diff --git a/ext_localconf.php b/ext_localconf.php index 72f32bc..0f7f2f2 100644 --- a/ext_localconf.php +++ b/ext_localconf.php @@ -1,14 +1,14 @@ 'index', + \Saccas\Mapgeoadmin\Controller\IframeController::class => 'index', ], [ ] ); -})('mapgeoadmin'); \ No newline at end of file +})();