X-Git-Url: https://git.rapsys.eu/userbundle/blobdiff_plain/778597e00e9b7786f7c94b45a18f20014e992b26..0929c559670ac8d386a047789712e6164a640326:/Form/RegisterType.php diff --git a/Form/RegisterType.php b/Form/RegisterType.php index bfedcf7..a2a7379 100644 --- a/Form/RegisterType.php +++ b/Form/RegisterType.php @@ -1,4 +1,13 @@ - + * + * For the full copyright and license information, please view the LICENSE + * file that was distributed with this source code. + */ namespace Rapsys\UserBundle\Form; @@ -20,7 +29,8 @@ class RegisterType extends AbstractType { /** * {@inheritdoc} */ - public function buildForm(FormBuilderInterface $builder, array $options) { + public function buildForm(FormBuilderInterface $builder, array $options): FormBuilderInterface { + //Create form $form = $builder; //Add extra mail field @@ -30,7 +40,7 @@ class RegisterType extends AbstractType { //Add extra civility field if (!empty($options['civility'])) { - $form->add('civility', EntityType::class, ['class' => $options['civility_class'], 'attr' => ['placeholder' => 'Your civility'], 'constraints' => [new NotBlank(['message' => 'Please provide your civility'])], 'choice_translation_domain' => true, 'data' => $options['civility_default']]); + $form->add('civility', EntityType::class, ['class' => $options['civility_class'], 'attr' => ['placeholder' => 'Your civility'], 'constraints' => [new NotBlank(['message' => 'Please provide your civility'])], 'choice_translation_domain' => true, 'empty_data' => $options['civility_default']]); } //Add extra pseudonym field @@ -53,6 +63,11 @@ class RegisterType extends AbstractType { $form->add('password', RepeatedType::class, ['type' => PasswordType::class, 'invalid_message' => 'The password and confirmation must match', 'first_options' => ['attr' => ['placeholder' => 'Your password'], 'label' => 'Password'], 'second_options' => ['attr' => ['placeholder' => 'Your password confirmation'], 'label' => 'Confirm password'], 'options' => ['constraints' => [new NotBlank(['message' => 'Please provide your password'])]]]); } + //Add extra slug field + if (!empty($options['slug'])) { + $form->add('slug', TextType::class, ['attr' => ['placeholder' => 'Your slug'], 'required' => false]); + } + //Add submit $form->add('submit', SubmitType::class, ['label' => 'Send', 'attr' => ['class' => 'submit']]); @@ -63,9 +78,9 @@ class RegisterType extends AbstractType { /** * {@inheritdoc} */ - public function configureOptions(OptionsResolver $resolver) { + public function configureOptions(OptionsResolver $resolver): void { //Set defaults - $resolver->setDefaults(['error_bubbling' => true, 'civility_class' => 'RapsysUserBundle:Civility', 'civility_default' => null, 'mail' => true, 'civility' => true, 'pseudonym' => true, 'forename' => true, 'surname' => true, 'password' => true]); + $resolver->setDefaults(['error_bubbling' => true, 'civility_class' => 'RapsysUserBundle:Civility', 'civility_default' => null, 'mail' => true, 'civility' => true, 'pseudonym' => true, 'forename' => true, 'surname' => true, 'password' => true, 'slug' => true]); //Add civility class $resolver->setAllowedTypes('civility_class', 'string'); @@ -92,14 +107,14 @@ class RegisterType extends AbstractType { //Add extra password option $resolver->setAllowedTypes('password', 'boolean'); - //Return resolver - return $resolver; + //Add extra slug option + $resolver->setAllowedTypes('slug', 'boolean'); } /** * {@inheritdoc} */ - public function getName() { + public function getName(): string { return 'rapsys_user_register'; } }