You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

22 lines
636B

  1. <?php
  2. namespace Lc\CaracoleBundle\Controller\Site;
  3. use Lc\CaracoleBundle\Controller\AdminControllerTrait;
  4. use Lc\CaracoleBundle\Resolver\SectionResolver;
  5. use Lc\SovBundle\Container\Site\NewsContainer;
  6. use Lc\SovBundle\Controller\Site\NewsAdminController as SovNewsAdminController;
  7. abstract class NewsAdminController extends SovNewsAdminController
  8. {
  9. use AdminControllerTrait;
  10. public function createEntity(string $entityFqcn)
  11. {
  12. return $this->get(NewsContainer::class)
  13. ->getFactory()
  14. ->setSection($this->get(SectionResolver::class)->getCurrent())
  15. ->create();
  16. }
  17. }