Du kan inte välja fler än 25 ämnen
Ämnen måste starta med en bokstav eller siffra, kan innehålla bindestreck ('-') och vara max 35 tecken långa.
|
- <?php
-
- namespace Lc\PietroBundle\Controller\Subthematic;
-
- use Lc\PietroBundle\Container\Subthematic\SubthematicContainer;
- use EasyCorp\Bundle\EasyAdminBundle\Field\AssociationField;
- use EasyCorp\Bundle\EasyAdminBundle\Field\TextField;
- use Lc\PietroBundle\Controller\AbstractAdminController;
-
- abstract class SubthematicAdminController extends AbstractAdminController
- {
- public function createEntity(string $entityFqcn)
- {
- return $this->getSubthematicContainer()->getFactory()->create();
- }
-
- public function configureFields(string $pageName): iterable
- {
- return [
- TextField::new('name'),
- AssociationField::new('thematic')
- ->setTemplatePath('crud/field/association.html.twig')
- ];
- }
-
- }
|