TYPO3 v15 dev-main snapshot ()

This commit is contained in:
2026-08-10 22:31:09 +02:00
commit af8cc155b5
6818 changed files with 642608 additions and 0 deletions
@@ -0,0 +1,51 @@
.. include:: /Includes.rst.txt
.. _feature-99234-1669840449:
=========================================================
Feature: #99234 - Dynamic URL parts in TYPO3 backend URLs
=========================================================
See :issue:`99234`
Description
===========
TYPO3's backend URL routing now uses Symfony's routing component for resolving
and generating URLs.
This way, it is possible for extension authors to register backend routes with
path segments that contain dynamic parts, which are then resolved into a request
attribute called "routing".
These routes are defined within the route path as named placeholders.
Impact
======
It is possible to define routes with placeholders in an extension's :file:`Routes.php`:
.. code-block:: php
return [
'my_route' => [
'path' => '/rollback-item/{identifier}',
'target' => \MyVendor\MyPackage\Controller\RollbackController::class . '::handle',
],
];
Within the controller:
.. code-block:: php
public function handle(ServerRequestInterface $request): ResponseInterface
{
$routing = $request->getAttribute('routing');
$myIdentifier = $routing['identifier'];
$route = $routing->getRoute();
// ...
}
.. index:: Backend, PHP-API, ext:backend