‪TYPO3CMS  ‪main
Routes.php
Go to the documentation of this file.
1 <?php
2 
6 return [
7  // Register click menu entry point
8  'tx_impexp_export' => [
9  'path' => '/record/importexport/export',
10  'target' => \TYPO3\CMS\Impexp\Controller\ExportController::class . '::handleRequest',
11  ],
12  'tx_impexp_import' => [
13  'path' => '/record/importexport/import',
14  'target' => \TYPO3\CMS\Impexp\Controller\ImportController::class . '::handleRequest',
15  ],
16 ];