Backend
The folder EXT:
may contain
configuration that is important within the TYPO3 Backend.
All files in this directory are automatically included during the TYPO3 bootstrap.
AjaxRoutes.php
Complete path: EXT:
In this file routes for Ajax requests that should be used in the backend can be defined.
Read more about Using Ajax in the backend.
<?php
return [
'example_dosomething' => [
'path' => '/example/do-something',
'target' => \Vendor\MyExtension\Controller\ExampleController::class . '::doSomethingAction',
],
];
Routes.php
Complete path: EXT:
This file maps from paths used in the backend to the controller that should be used.
Most backend routes defined in the TYPO3 core can be found in the following file, which you can use as example:
EXT:backend/Configuration/Backend/Routes.php (GitHub)
Read more about Backend routing.
Modules.php
Complete path: EXT:
.
This file is used for the Backend module configuration. See that chapter for details.