]> Raphaël G. Git Repositories - userbundle/commitdiff
Remove unused form types
authorRaphaël Gertz <git@rapsys.eu>
Thu, 12 Aug 2021 12:40:27 +0000 (14:40 +0200)
committerRaphaël Gertz <git@rapsys.eu>
Thu, 12 Aug 2021 12:40:27 +0000 (14:40 +0200)
Form/RecoverMailType.php [deleted file]
Form/RecoverType.php [deleted file]

diff --git a/Form/RecoverMailType.php b/Form/RecoverMailType.php
deleted file mode 100644 (file)
index e0ae50c..0000000
+++ /dev/null
@@ -1,36 +0,0 @@
-<?php
-
-namespace Rapsys\UserBundle\Form;
-
-use Symfony\Component\Form\AbstractType;
-use Symfony\Component\Form\FormBuilderInterface;
-use Symfony\Component\OptionsResolver\OptionsResolver;
-use Symfony\Component\Form\Extension\Core\Type\RepeatedType;
-use Symfony\Component\Form\Extension\Core\Type\PasswordType;
-use Symfony\Component\Form\Extension\Core\Type\SubmitType;
-use Symfony\Component\Validator\Constraints\NotBlank;
-
-class RecoverMailType extends AbstractType {
-       /**
-        * {@inheritdoc}
-        */
-       public function buildForm(FormBuilderInterface $builder, array $options) {
-               return $builder
-                       ->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('submit', SubmitType::class, ['label' => 'Send', 'attr' => ['class' => 'submit']]);
-       }
-
-       /**
-        * {@inheritdoc}
-        */
-       public function configureOptions(OptionsResolver $resolver) {
-               $resolver->setDefaults(['error_bubbling' => true]);
-       }
-
-       /**
-        * {@inheritdoc}
-        */
-       public function getName() {
-               return 'rapsys_user_recover_mail';
-       }
-}
diff --git a/Form/RecoverType.php b/Form/RecoverType.php
deleted file mode 100644 (file)
index b1785dd..0000000
+++ /dev/null
@@ -1,59 +0,0 @@
-<?php
-
-namespace Rapsys\UserBundle\Form;
-
-use Symfony\Component\Form\AbstractType;
-use Symfony\Component\Form\FormBuilderInterface;
-use Symfony\Component\OptionsResolver\OptionsResolver;
-use Symfony\Component\Form\Extension\Core\Type\EmailType;
-use Symfony\Component\Form\Extension\Core\Type\SubmitType;
-use Symfony\Component\Form\Extension\Core\Type\RepeatedType;
-use Symfony\Component\Form\Extension\Core\Type\PasswordType;
-use Symfony\Component\Validator\Constraints\Email;
-use Symfony\Component\Validator\Constraints\NotBlank;
-
-class RecoverType extends AbstractType {
-       /**
-        * {@inheritdoc}
-        */
-       public function buildForm(FormBuilderInterface $builder, array $options) {
-               $form = $builder;
-
-               //Add extra mail field
-               if (!empty($options['mail'])) {
-                       $form->add('mail', EmailType::class, ['attr' => ['placeholder' => 'Your mail'], 'constraints' => [new NotBlank(['message' => 'Please provide your mail']), new Email(['message' => 'Your mail doesn\'t seems to be valid'])]]);
-               }
-
-               //Add extra password field
-               if (!empty($options['password'])) {
-                       $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 submit
-               $form->add('submit', SubmitType::class, ['label' => 'Send', 'attr' => ['class' => 'submit']]);
-
-               //Return form
-               return $form;
-       }
-
-       /**
-        * {@inheritdoc}
-        */
-       public function configureOptions(OptionsResolver $resolver) {
-               //Set defaults
-               $resolver->setDefaults(['error_bubbling' => true, 'mail' => true, 'password' => true]);
-
-               //Add extra mail option
-               $resolver->setAllowedTypes('mail', 'boolean');
-
-               //Add extra password option
-               $resolver->setAllowedTypes('password', 'boolean');
-       }
-
-       /**
-        * {@inheritdoc}
-        */
-       public function getName() {
-               return 'rapsys_user_recover';
-       }
-}