Slide 233
Slide 233 text
Creating two Admins for the same Entity
# app/config/services.yml
services:
admin.gift:
class: AppBundle\Admin\GiftAdmin
arguments: [~, AppBundle\Entity\Gift, AppBundle:GiftAdmin]
tags:
- { name: sonata.admin, manager_type: orm, label: Gifts }
calls:
- [ setTemplate, [edit, :Admin:edit_gift.html.twig]]
admin.processed_gift:
class: AppBundle\Admin\ProcessedGiftAdmin
arguments: [~, AppBundle\Entity\Gift, ~]
tags:
- { name: sonata.admin, manager_type: orm, label: Processed }
...and register the new service.