<?php
/*
* This file is part of the Sylius package.
*
* (c) Paweł Jędrzejewski
*
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
*/
declare(strict_types=1);
namespace Sylius\Bundle\CustomerBundle\Form\Type;
use Sylius\Component\Customer\Model\CustomerInterface;
use Symfony\Component\Form\AbstractType;
use Symfony\Component\Form\Extension\Core\Type\ChoiceType;
use Symfony\Component\OptionsResolver\OptionsResolver;
final class GenderType extends AbstractType
{
public function configureOptions(OptionsResolver $resolver): void
{
$resolver->setDefaults([
'choices' => [
'sylius.gender.unknown' => CustomerInterface::UNKNOWN_GENDER,
'sylius.gender.male' => CustomerInterface::MALE_GENDER,
'sylius.gender.female' => CustomerInterface::FEMALE_GENDER,
],
'empty_data' => CustomerInterface::UNKNOWN_GENDER,
]);
}
public function getParent(): string
{
return ChoiceType::class;
}
public function getBlockPrefix(): string
{
return 'sylius_gender';
}
}