]> git.immae.eu Git - github/wallabag/wallabag.git/commitdiff
Cleanup & add link on baggy menu
authorJeremy Benoist <jeremy.benoist@gmail.com>
Sat, 1 Oct 2016 15:46:44 +0000 (17:46 +0200)
committerJeremy Benoist <jeremy.benoist@gmail.com>
Sun, 2 Oct 2016 09:08:53 +0000 (11:08 +0200)
src/Wallabag/CoreBundle/Controller/ConfigController.php
src/Wallabag/CoreBundle/Form/Type/NewUserType.php [deleted file]
src/Wallabag/CoreBundle/Resources/views/themes/baggy/layout.html.twig

index 51d8bdd1fabfd70495d27418a016ae9a01d96a9e..91cdcae506fe75f2176f84fbe3c31911c29d3a66 100644 (file)
@@ -2,8 +2,6 @@
 
 namespace Wallabag\CoreBundle\Controller;
 
-use FOS\UserBundle\Event\UserEvent;
-use FOS\UserBundle\FOSUserEvents;
 use Sensio\Bundle\FrameworkExtraBundle\Configuration\Route;
 use Symfony\Bundle\FrameworkBundle\Controller\Controller;
 use Symfony\Component\HttpFoundation\JsonResponse;
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';
-    }
-}
index 4fd4d317afb183558f37674bf21d39ef29b5957f..30fd0d85a3cd302d6fe11233a0151d940aaef8a7 100644 (file)
@@ -42,6 +42,7 @@
         </li>-->
         <li><a href="{{ path('config') }}">{{ 'menu.left.config'|trans }}</a></li>
         {% if is_granted('ROLE_SUPER_ADMIN') %}
+            <li><a href="{{ path('user_index') }}">{{ 'menu.left.users_management'|trans }}</a></li>
             <li><a href="{{ path('craue_config_settings_modify') }}">{{ 'menu.left.internal_settings'|trans }}</a></li>
         {% endif %}
         <li><a href="{{ path('import') }}">{{ 'menu.left.import'|trans }}</a></li>