symfonysonata-adminsymfony-sonatasonata

Child Admin route is not being generated - Sonata Admin Bundle


I'm trying to set up an Admin as a child of an other Admin in Sonata Admin Bundle.

I have 2 Admin classes:

I added the following lines to my service configuration for CategoryAdmin

calls:
    - [ addChild, ["@sonata.admin.project"]]

The routes for the child Admin are not being generated with this configuration. The link in the SideMenu (top menu) points to /admin/project/list?childId=1&id=1

Here is the output of the children of CategoryAdmin with dump()

array:1 [▼
    "sonata.admin.project" => ProjectAdmin {#406 ▶}
]

This means that the configuration for my child admin seems to be correct. I have no idea, why the routes for the child admin are not being generated.

I hope somebody can give me a hint, what the problem could be.


Solution

  • Do you have the $baseRouteName and $baseRoutePattern overriden in your admin class ?

    If you do, Sonata will generate both child and parent routes with the same name resulting in the parent routes overriding the child ones.