ontraport-fields.php
1.31 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
57
58
59
60
61
62
63
64
65
66
67
68
<?php
$ontraport_fields = array();
$ontraport_fields['first_name'] = array(
'crm_label' => 'First Name',
'crm_field' => 'firstname'
);
$ontraport_fields['last_name'] = array(
'crm_label' => 'Last Name',
'crm_field' => 'lastname'
);
$ontraport_fields['user_email'] = array(
'crm_label' => 'Email',
'crm_field' => 'email'
);
$ontraport_fields['phone_number'] = array(
'crm_label' => 'Phone',
'crm_field' => 'office_phone'
);
$ontraport_fields['billing_address_1'] = array(
'crm_label' => 'Address 1',
'crm_field' => 'address'
);
$ontraport_fields['billing_address_2'] = array(
'crm_label' => 'Address 2',
'crm_field' => 'address2'
);
$ontraport_fields['billing_city'] = array(
'crm_label' => 'City',
'crm_field' => 'city'
);
$ontraport_fields['billing_state'] = array(
'crm_label' => 'City',
'crm_field' => 'city'
);
$ontraport_fields['billing_postcode'] = array(
'crm_label' => 'Zip',
'crm_field' => 'zip'
);
$ontraport_fields['company'] = array(
'crm_label' => 'Company',
'crm_field' => 'company'
);
$ontraport_fields['website'] = array(
'crm_label' => 'Website',
'crm_field' => 'website'
);
$ontraport_fields['user_url'] = array(
'crm_label' => 'Website',
'crm_field' => 'website'
);
$ontraport_fields['billing_country'] = array(
'crm_label' => 'Country',
'crm_field' => 'country'
);