TYPO3 v15 dev-main snapshot ()

This commit is contained in:
2026-08-10 22:31:18 +02:00
commit 1da5e665e7
73 changed files with 8040 additions and 0 deletions
+32
View File
@@ -0,0 +1,32 @@
<?php
/**
* Definitions for routes provided by EXT:backend
* Contains all "regular" routes for entry points
*
* Please note that this setup is preliminary until all core use-cases are set up here.
* Especially some more properties regarding modules will be added until TYPO3 CMS 7 LTS, and might change.
*
* Currently the "access" property is only used so no token creation + validation is made,
* but will be extended further.
*/
return [
// Editing the contents of a file
'file_edit' => [
'path' => '/file/editcontent',
'target' => \TYPO3\CMS\Filelist\Controller\File\EditFileController::class . '::mainAction',
],
'file_download' => [
'path' => '/file/download',
'methods' => ['POST'],
'target' => \TYPO3\CMS\Filelist\Controller\FileDownloadController::class . '::handleRequest',
],
'file_update_online_media' => [
'path' => '/file/update-online-media',
'methods' => ['POST'],
'target' => \TYPO3\CMS\Filelist\Controller\FileUpdateOnlineMediaController::class . '::handleRequest',
],
];