UserAdmin.php 2.95 KB
Newer Older
Julien Jorry committed
1 2 3 4 5 6 7 8 9
<?php

namespace App\Admin;

use Sonata\AdminBundle\Datagrid\DatagridMapper;
use Sonata\AdminBundle\Datagrid\ListMapper;
use Sonata\AdminBundle\Form\FormMapper;
use Sonata\AdminBundle\Route\RouteCollection;
use Sonata\AdminBundle\Show\ShowMapper;
10
use App\Application\Sonata\UserBundle\Admin\UserAdmin as SonataUserAdmin;
Julien Jorry committed
11 12 13 14 15
use Symfony\Bridge\Doctrine\Form\Type\EntityType;
use Symfony\Component\Form\Extension\Core\Type\TextType;
use Symfony\Component\Form\FormEvent;
use Symfony\Component\Form\FormEvents;

16 17 18 19 20 21
/**
 * Administration des utilisateurs
 *
 * LOCO : Outil de gestion de Monnaie Locale Complémentaire
 * @author Julien Jorry <julien.jorry@gmail.com>
 */
Julien Jorry committed
22 23
class UserAdmin extends SonataUserAdmin
{
Julien Jorry committed
24 25 26
    protected $baseRouteName = 'user';
    protected $baseRoutePattern = 'user';

Julien Jorry committed
27 28 29 30 31
    protected $datagridValues = [
        // reverse order (default = 'ASC')
        '_sort_order' => 'DESC',
        // name of the ordered field (default = the model's id field, if any)
        '_sort_by' => 'updatedAt',
32 33
        // '_page' => 1,
        // '_per_page' => 32
Julien Jorry committed
34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57
    ];

    public function configure()
    {
        parent::configure();
        // $this->classnameLabel = "Utilisateurs";
    }

    /**
    * {@inheritdoc}
    */
    protected function configureFormFields(FormMapper $formMapper): void
    {
        parent::configureFormFields($formMapper);

        $user = $this->getSubject();
    }

    /**
    * {@inheritdoc}
    */
    protected function configureListFields(ListMapper $listMapper): void
    {
        parent::configureListFields($listMapper);
Julien Jorry committed
58
        unset($this->listModes['mosaic']);
59 60 61 62 63 64
        
        if ($this->isGranted('ROLE_ALLOWED_TO_SWITCH')) {
            $listMapper
                ->addIdentifier('impersonating', 'string', ['template' => '@SonataUser/Admin/Field/impersonating.html.twig'])
            ;
        }
Julien Jorry committed
65 66 67 68 69 70 71
        // $listMapper
            // ->addIdentifier('username', null, array('label' => 'Username'))
            // ->addIdentifier('email', null, array('label' => 'Email'));
    }

    protected function configureRoutes(RouteCollection $collection)
    {
72 73 74 75 76 77 78
        if ($this->isChild()) {
            $collection->remove('delete');
            return;
        }

        // This is the route configuration as a parent
        $collection->clear();
Julien Jorry committed
79 80 81 82 83
    }

    /**
    * {@inheritdoc}
    */
84 85
    protected function configureDatagridFilters(DatagridMapper $datagridMapper): void
    {
86
        parent::configureDatagridFilters($datagridMapper);
87 88 89 90
        $datagridMapper
            ->add('enabled')
        ;
    }
Julien Jorry committed
91 92 93 94

    /**
    * {@inheritdoc}
    */
Julien Jorry committed
95 96 97 98 99 100 101 102 103 104 105 106 107
    // protected function configureRoutes(RouteCollection $collection)
    // {
    //     // $collection->remove('create');
    //     // if (!$this->isGranted('ROLE_SUPER_ADMIN')) {
    //     //     $collection->clearExcept([]);
    //     // }
    //     if ($this->isChild()) {
    //         return;
    //     }

    //     // This is the route configuration as a parent
    //     // $collection->clear();
    // }
Julien Jorry committed
108
}