TYPO3 v15 dev-main snapshot ()

This commit is contained in:
2026-08-10 22:31:31 +02:00
commit 3e43c11539
407 changed files with 51272 additions and 0 deletions
+26
View File
@@ -0,0 +1,26 @@
<?php
use TYPO3\CMS\Install\Controller\EntryPointRedirectController;
use TYPO3\CMS\Install\Controller\ServerResponseCheckController;
/**
* Defines routes for Install Tool being called from backend context.
*/
return [
'install.server-response-check.host' => [
'access' => 'public',
'path' => '/install/server-response-check/host',
'target' => ServerResponseCheckController::class . '::checkHostAction',
],
'install.redirect' => [
'access' => 'public',
'path' => '/install',
'target' => EntryPointRedirectController::class . '::redirectAction',
],
'install.php.redirect' => [
'access' => 'public',
'path' => '/install.php',
'target' => EntryPointRedirectController::class . '::redirectAction',
],
];