Attention
TYPO3 v11 has reached end-of-life as of October 31th 2024 and is no longer being maintained. Use the version switcher on the top left of this page to select documentation for a supported version of TYPO3.
Need more time before upgrading? You can purchase Extended Long Term Support (ELTS) for TYPO3 v11 here: TYPO3 ELTS.
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.