1
|
|
|
<?php |
2
|
|
|
/* |
3
|
|
|
* Copyright (C) 2020 Jan Böhmer |
4
|
|
|
* |
5
|
|
|
* This program is free software: you can redistribute it and/or modify |
6
|
|
|
* it under the terms of the GNU Affero General Public License as published |
7
|
|
|
* by the Free Software Foundation, either version 3 of the License, or |
8
|
|
|
* (at your option) any later version. |
9
|
|
|
* |
10
|
|
|
* This program is distributed in the hope that it will be useful, |
11
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of |
12
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
13
|
|
|
* GNU Affero General Public License for more details. |
14
|
|
|
* |
15
|
|
|
* You should have received a copy of the GNU Affero General Public License |
16
|
|
|
* along with this program. If not, see <https://www.gnu.org/licenses/>. |
17
|
|
|
*/ |
18
|
|
|
|
19
|
|
|
namespace App\Form; |
20
|
|
|
|
21
|
|
|
use Symfony\Component\Form\AbstractType; |
22
|
|
|
use Symfony\Component\Form\Extension\Core\Type\CheckboxType; |
23
|
|
|
use Symfony\Component\Form\Extension\Core\Type\SubmitType; |
24
|
|
|
use Symfony\Component\Form\FormBuilderInterface; |
25
|
|
|
use Symfony\Component\OptionsResolver\OptionsResolver; |
26
|
|
|
|
27
|
|
|
class PaymentOrderConfirmationType extends AbstractType |
28
|
|
|
{ |
29
|
|
|
public function buildForm(FormBuilderInterface $builder, array $options) |
30
|
|
|
{ |
31
|
|
|
$builder->add('check_1', CheckboxType::class, [ |
32
|
|
|
'label' => 'payment_order.confirm.check1.label', |
33
|
|
|
]); |
34
|
|
|
$builder->add('check_2', CheckboxType::class, [ |
35
|
|
|
'label' => 'payment_order.confirm.check2.label', |
36
|
|
|
]); |
37
|
|
|
$builder->add('check_3', CheckboxType::class, [ |
38
|
|
|
'label' => 'payment_order.confirm.check3.label', |
39
|
|
|
]); |
40
|
|
|
|
41
|
|
|
$builder->add('submit', SubmitType::class, [ |
42
|
|
|
'label' => 'payment_order.confirm.submit.label', |
43
|
|
|
'attr' => [ |
44
|
|
|
'title' => 'payment_order.confirmation.already_confirmed_hint' |
45
|
|
|
] |
46
|
|
|
]); |
47
|
|
|
} |
48
|
|
|
|
49
|
|
|
public function configureOptions(OptionsResolver $resolver) |
50
|
|
|
{ |
51
|
|
|
$resolver->setDefault('data_class', null); |
52
|
|
|
} |
53
|
|
|
} |
54
|
|
|
|