forked from AfterShip/aftership-apps-woocommerce
-
Notifications
You must be signed in to change notification settings - Fork 0
/
aftership-fields.php
86 lines (78 loc) · 2.3 KB
/
aftership-fields.php
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
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
<?php
/**
* Created by PhpStorm.
* User: Sunny Chow
* Date: 4/2/15
* Time: 6:08 PM
*/
$aftership_fields = array(
'aftership_tracking_provider_name' => array(
'id' => 'aftership_tracking_provider_name',
'type' => 'text',
'label' => '',
'placeholder' => '',
'description' => '',
'class' => 'hidden'
),
'aftership_tracking_required_fields' => array(
'id' => 'aftership_tracking_required_fields',
'type' => 'text',
'label' => '',
'placeholder' => '',
'description' => '',
'class' => 'hidden'
),
'aftership_tracking_number' => array(
'id' => 'aftership_tracking_number',
'type' => 'text',
'label' => 'Tracking number',
'placeholder' => '',
'description' => '',
'class' => ''
),
'aftership_tracking_shipdate' => array(
'key' => 'tracking_ship_date',
'id' => 'aftership_tracking_shipdate',
'type' => 'date',
'label' => 'Date shipped',
'placeholder' => 'YYYY-MM-DD',
'description' => '',
'class' => 'date-picker-field hidden-field'
),
'aftership_tracking_postal' => array(
'key' => 'tracking_postal_code',
'id' => 'aftership_tracking_postal',
'type' => 'text',
'label' => 'Postal Code',
'placeholder' => '',
'description' => '',
'class' => 'hidden-field'
),
'aftership_tracking_account' => array(
'key' => 'tracking_account_number',
'id' => 'aftership_tracking_account',
'type' => 'text',
'label' => 'Account name',
'placeholder' => '',
'description' => '',
'class' => 'hidden-field'
),
'aftership_tracking_key' => array(
'key' => 'tracking_key',
'id' => 'aftership_tracking_key',
'type' => 'text',
'label' => 'Tracking key',
'placeholder' => '',
'description' => '',
'class' => 'hidden-field'
),
'aftership_tracking_destination_country' => array(
'key' => 'tracking_destination_country',
'id' => 'aftership_tracking_destination_country',
'type' => 'text',
'label' => 'Destination Country',
'placeholder' => '',
'description' => '',
'class' => 'hidden-field'
)
);