You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Implement routing system with Symfony Routing component. But not the regular way. The route mapping begins on module level at the second path segment (/foo/>...<, or at the moment /?p=foo/>...<).
It should be possible to set all of the configuration options of the Symfony component in the module configuration files (module.yml under routes entry, see example).
Then the raw routes will be connected with the corresponding mountpoint names and compiled in the Router class. Kernel::handle() then queries the Router.
module.yml
of each moduleWork to be done
Implement routing system with Symfony Routing component. But not the regular way. The route mapping begins on module level at the second path segment (
/foo/>...<
, or at the moment/?p=foo/>...<
).It should be possible to set all of the configuration options of the Symfony component in the module configuration files (
module.yml
underroutes
entry, see example).Then the raw routes will be connected with the corresponding mountpoint names and compiled in the Router class. Kernel::handle() then queries the Router.
Example
module.yml with new
routes
entry:The text was updated successfully, but these errors were encountered: