Feature #97096
closedAllow extbase backend modules to function without namespaced parameters
100%
Description
Extbase modules traditionally use the plugin or module namespace to prefix get parameters and map arguments to plugins. In the frontend context, this makes sense, as multiple plugins may reside on a page. In the backend, however, an extbase module is responsible for rendering a complete view. Therefore the namespacing of arguments can be disabled, making URLs easier to read, more in line with non-extbase modules and allowing extbase modules to directly access outside information like the "id" parameter handed over by the page tree for example.
To allow extbase modules to configure this behaviour, a feature flag can be set in the module configuration turning the namespacing off or on.
This feature can be seen as a precursor of further refactorings (like skipDefaultArguments for the backend) to bring extbase module handling closer to the general route handling, and ultimately be able to fully use Symfony routing in the backend.