]> git.immae.eu Git - github/wallabag/wallabag.git/blobdiff - src/Wallabag/CoreBundle/Form/Type/NewUserType.php
Cleanup & add link on baggy menu
[github/wallabag/wallabag.git] / src / Wallabag / CoreBundle / Form / Type / NewUserType.php
diff --git a/src/Wallabag/CoreBundle/Form/Type/NewUserType.php b/src/Wallabag/CoreBundle/Form/Type/NewUserType.php
deleted file mode 100644 (file)
index 6a6f63d..0000000
+++ /dev/null
@@ -1,58 +0,0 @@
-<?php
-
-namespace Wallabag\CoreBundle\Form\Type;
-
-use Symfony\Component\Form\AbstractType;
-use Symfony\Component\Form\Extension\Core\Type\EmailType;
-use Symfony\Component\Form\Extension\Core\Type\PasswordType;
-use Symfony\Component\Form\Extension\Core\Type\RepeatedType;
-use Symfony\Component\Form\Extension\Core\Type\SubmitType;
-use Symfony\Component\Form\Extension\Core\Type\TextType;
-use Symfony\Component\Form\FormBuilderInterface;
-use Symfony\Component\OptionsResolver\OptionsResolver;
-use Symfony\Component\Validator\Constraints;
-
-class NewUserType extends AbstractType
-{
-    public function buildForm(FormBuilderInterface $builder, array $options)
-    {
-        $builder
-            ->add('username', TextType::class, [
-                'required' => true,
-                'label' => 'config.form_new_user.username_label',
-            ])
-            ->add('plainPassword', RepeatedType::class, [
-                'type' => PasswordType::class,
-                'invalid_message' => 'validator.password_must_match',
-                'first_options' => ['label' => 'config.form_new_user.password_label'],
-                'second_options' => ['label' => 'config.form_new_user.repeat_new_password_label'],
-                'constraints' => [
-                    new Constraints\Length([
-                        'min' => 8,
-                        'minMessage' => 'validator.password_too_short',
-                    ]),
-                    new Constraints\NotBlank(),
-                ],
-                'label' => 'config.form_new_user.plain_password_label',
-            ])
-            ->add('email', EmailType::class, [
-                'label' => 'config.form_new_user.email_label',
-            ])
-            ->add('save', SubmitType::class, [
-                'label' => 'config.form.save',
-            ])
-        ;
-    }
-
-    public function configureOptions(OptionsResolver $resolver)
-    {
-        $resolver->setDefaults([
-            'data_class' => 'Wallabag\UserBundle\Entity\User',
-        ]);
-    }
-
-    public function getBlockPrefix()
-    {
-        return 'new_user';
-    }
-}