TYPO3 v15 dev-main snapshot ()

This commit is contained in:
2026-08-10 22:31:28 +02:00
commit 3a4ca58ca1
90 changed files with 9646 additions and 0 deletions
+16
View File
@@ -0,0 +1,16 @@
<?php
/**
* Definitions for routes provided by EXT:impexp
*/
return [
// Register click menu entry point
'tx_impexp_export' => [
'path' => '/record/importexport/export',
'target' => \TYPO3\CMS\Impexp\Controller\ExportController::class . '::handleRequest',
],
'tx_impexp_import' => [
'path' => '/record/importexport/import',
'target' => \TYPO3\CMS\Impexp\Controller\ImportController::class . '::handleRequest',
],
];