src/Form/Type/CountryType.php line 11

Open in your IDE?
  1. <?php
  2. namespace App\Form\Type;
  3. use App\Entity\Country;
  4. use Symfony\Component\Form\AbstractType;
  5. use Doctrine\ORM\EntityManagerInterface;
  6. use Symfony\Component\Form\Extension\Core\Type\ChoiceType;
  7. use Symfony\Component\OptionsResolver\OptionsResolver;
  8. class CountryType extends AbstractType
  9. {
  10.     /**
  11.      * @var EntityManagerInterface
  12.      */
  13.     private $em;
  14.     public function __construct(EntityManagerInterface $em)
  15.     {
  16.         $this->em $em;
  17.     }
  18.     public function configureOptions(OptionsResolver $resolver)
  19.     {
  20.         $typeNotification $this->em->getRepository(Country::class);
  21.         $choices = [];
  22.         foreach ($typeNotification->findAll() as $type) {
  23.             $label =  $type->getName();
  24.             $choices[$label] = $type->getId();
  25.         }
  26.         
  27.         $resolver->setDefaults([
  28.             'choices' => $choices,
  29.         ]);
  30.     }
  31.     
  32.     public function getParent()
  33.     {
  34.         return ChoiceType::class;
  35.     }
  36. }