‪TYPO3CMS  10.4
Routes.php
Go to the documentation of this file.
1 <?php
2 
6 return [
7  // Register click menu entry point
11  'xMOD_tximpexp' => [
12  'path' => '/record/importexport/',
13  'target' => \TYPO3\CMS\Impexp\Controller\ImportExportController::class . '::mainAction'
14  ],
15  'tx_impexp_export' => [
16  'path' => '/record/importexport/export',
17  'target' => \TYPO3\CMS\Impexp\Controller\ExportController::class . '::mainAction'
18  ],
19  'tx_impexp_import' => [
20  'path' => '/record/importexport/import',
21  'target' => \TYPO3\CMS\Impexp\Controller\ImportController::class . '::mainAction'
22  ],
23 ];