This repository was archived by the owner on Jan 22, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathSubscriptionType.php
More file actions
56 lines (48 loc) · 1.6 KB
/
SubscriptionType.php
File metadata and controls
56 lines (48 loc) · 1.6 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
<?php
namespace Problematic\AuthNetBundle\Form;
use Symfony\Component\Form\AbstractType;
use Symfony\Component\Form\FormBuilder;
use Problematic\AuthNetBundle\Form\AddressType;
class SubscriptionType extends AbstractType
{
public function buildForm(FormBuilder $builder, array $options)
{
$builder->add('creditCardCardNumber');
$builder->add('creditCardExpirationDate', 'date');
$builder->add('creditCardCardCode', 'text', array(
'required' => false,
));
$builder->add('customerEmail', 'email', array(
'required' => false,
));
$builder->add('customerPhoneNumber', 'text', array(
'required' => false,
));
$builder->add('billToFirstName');
$builder->add('billToLastName');
$builder->add('billToCompany', 'text', array(
'required' => false,
));
$builder->add('billToAddress', 'text', array(
'required' => false,
));
$builder->add('billToCity', 'text', array(
'required' => false,
));
$builder->add('billToState', 'text', array(
'required' => false,
));
$builder->add('billToZip', 'text', array(
'required' => false,
));
$builder->add('billToCountry', 'text', array(
'required' => false,
));
}
public function getDefaultOptions(array $options)
{
return array(
'data_class' => 'Problematic\AuthNetBundle\AuthorizeNet\API\ARB\AuthorizeNetSubscription',
);
}
}