Code Coverage |
||||||||||
Lines |
Functions and Methods |
Classes and Traits |
||||||||
Total | |
0.00% |
0 / 43 |
|
0.00% |
0 / 2 |
CRAP | |
0.00% |
0 / 1 |
ModeleReferentielRightsType | |
0.00% |
0 / 43 |
|
0.00% |
0 / 2 |
12 | |
0.00% |
0 / 1 |
buildForm | |
0.00% |
0 / 37 |
|
0.00% |
0 / 1 |
6 | |||
configureOptions | |
0.00% |
0 / 6 |
|
0.00% |
0 / 1 |
2 |
1 | <?php |
2 | |
3 | /** |
4 | * This file is part of the MADIS - RGPD Management application. |
5 | * |
6 | * @copyright Copyright (c) 2018-2021 Soluris - Solutions Numériques Territoriales Innovantes |
7 | * |
8 | * This program is free software: you can redistribute it and/or modify |
9 | * it under the terms of the GNU Affero General Public License as published by |
10 | * the Free Software Foundation, either version 3 of the License, or |
11 | * (at your option) any later version. |
12 | * |
13 | * This program is distributed in the hope that it will be useful, |
14 | * but WITHOUT ANY WARRANTY; without even the implied warranty of |
15 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
16 | * GNU Affero General Public License for more details. |
17 | * |
18 | * You should have received a copy of the GNU Affero General Public License |
19 | * along with this program. If not, see <https://www.gnu.org/licenses/>. |
20 | */ |
21 | |
22 | declare(strict_types=1); |
23 | |
24 | namespace App\Domain\Maturity\Form\Type; |
25 | |
26 | use App\Domain\Admin\Dictionary\DuplicationTargetOptionDictionary; |
27 | use App\Domain\User\Model\Collectivity; |
28 | use Doctrine\ORM\EntityRepository; |
29 | use Knp\DictionaryBundle\Form\Type\DictionaryType; |
30 | use Symfony\Bridge\Doctrine\Form\Type\EntityType; |
31 | use Symfony\Component\Form\AbstractType; |
32 | use Symfony\Component\Form\FormBuilderInterface; |
33 | use Symfony\Component\OptionsResolver\OptionsResolver; |
34 | |
35 | class ModeleReferentielRightsType extends AbstractType |
36 | { |
37 | public function buildForm(FormBuilderInterface $builder, array $options) |
38 | { |
39 | if ($options['data']->getAuthorizedCollectivities()) { |
40 | $dataOptionRightSelectionValue = DuplicationTargetOptionDictionary::KEY_PER_COLLECTIVITY; |
41 | } else { |
42 | $dataOptionRightSelectionValue = DuplicationTargetOptionDictionary::KEY_PER_TYPE; |
43 | } |
44 | |
45 | $builder |
46 | ->add('optionRightSelection', DictionaryType::class, [ |
47 | 'name' => DuplicationTargetOptionDictionary::NAME, |
48 | 'label' => false, |
49 | 'mapped' => false, |
50 | 'required' => true, |
51 | 'multiple' => false, |
52 | 'expanded' => true, |
53 | 'data' => $dataOptionRightSelectionValue, |
54 | ]) |
55 | ->add('authorizedCollectivityTypes', DictionaryType::class, [ |
56 | 'name' => 'user_collectivity_type', |
57 | 'label' => 'global.label.organization_type', |
58 | 'required' => false, |
59 | 'multiple' => true, |
60 | 'expanded' => false, |
61 | 'attr' => [ |
62 | 'size' => 6, |
63 | ], |
64 | ]) |
65 | ->add('authorizedCollectivities', EntityType::class, [ |
66 | 'class' => Collectivity::class, |
67 | 'label' => 'global.label.organization_list', |
68 | 'query_builder' => function (EntityRepository $er) { |
69 | return $er->createQueryBuilder('c') |
70 | ->orderBy('c.name', 'ASC'); |
71 | }, |
72 | 'required' => false, |
73 | 'multiple' => true, |
74 | 'expanded' => false, |
75 | 'attr' => [ |
76 | 'size' => 18, |
77 | ], |
78 | ]); |
79 | } |
80 | |
81 | public function configureOptions(OptionsResolver $resolver) |
82 | { |
83 | $resolver |
84 | ->setDefaults([ |
85 | 'validation_groups' => [ |
86 | 'default', |
87 | ], |
88 | ]); |
89 | } |
90 | } |