TYPO3 CMS  TYPO3_7-6
Routes.php
Go to the documentation of this file.
1 <?php
2 
6 return [
7  // Register RTE browse links wizard
8  'rtehtmlarea_wizard_browse_links' => [
9  'path' => '/rte/wizard/link',
10  'target' => \TYPO3\CMS\Rtehtmlarea\Controller\BrowseLinksController::class . '::mainAction'
11  ],
12  // Register RTE select image wizard
13  'rtehtmlarea_wizard_select_image' => [
14  'path' => '/rte/wizard/image',
15  'target' => \TYPO3\CMS\Rtehtmlarea\Controller\SelectImageController::class . '::mainAction'
16  ],
17  // Register RTE user elements wizard
18  'rtehtmlarea_wizard_user_elements' => [
19  'path' => '/rte/wizard/userelements',
20  'target' => \TYPO3\CMS\Rtehtmlarea\Controller\UserElementsController::class . '::mainAction'
21  ],
22  // Register RTE parse html wizard
23  'rtehtmlarea_wizard_parse_html' => [
24  'path' => '/rte/wizard/parsehtml',
25  'target' => \TYPO3\CMS\Rtehtmlarea\Controller\ParseHtmlController::class . '::mainAction'
26  ],
27 ];