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
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
| <?php
|
| function altr_nlp():array
| {
| return [
| 'title' => 'New Legacy Program',
| // 'description' => '',
| 'submit' => 'Apply Now',
| 'success_title' => 'Success!',
| 'success_description' => [
| 'We got it.',
| 'We\'ll get back to you as soon as we can - usually pretty quick (unless it\'s a Monday or a Tuesday)'
| ],
| 'email_subject' => '[NLP] Application',
| 'fields' => [
| 'first_name' => [
| 'type' => 'text',
| 'label' => 'First Name',
| 'required' => true,
| 'section' => 'about_you',
| ],
| 'last_name' => [
| 'type' => 'text',
| 'label' => 'Last Name',
| 'required' => true,
| 'section' => 'about_you',
| ],
| 'email' => [
| 'type' => 'email',
| 'label' => 'Email',
| 'required' => true,
| 'section' => 'about_you',
| ],
| 'phone' => [
| 'type' => 'tel',
| 'label' => 'Phone',
| 'required' => true,
| 'section' => 'about_you',
| ],
| 'contact' => [
| 'type' => 'checkbox',
| 'label' => 'Preferred Contact',
| 'options' => [
| 'text' => 'Text',
| 'email' => 'Email',
| 'call' => 'Call',
| ],
| 'section' => 'about_you',
| ],
| 'type' => [
| 'type' => 'checkbox',
| 'label' => 'Type of Tattoo',
| 'options' => [
| 'gang' => 'Gang Affiliated',
| 'hate' => 'Hateful Symbolism',
| 'dv' => 'Domestic Violence',
| 'trafficking' => 'Human Trafficking',
| 'prison' => 'Prison or Jail',
| 'other'
| ],
| 'section' => 'tattoo',
| ],
| 'referred' => [
| 'type' => 'checkbox',
| 'label' => 'Referred By',
| 'options' => [
| 'po' => 'Parole Officer',
| 'sw' => 'Social Worker',
| 'cow' => 'Community Outreach Worker',
| 'doctor' => 'Doctor',
| 'mental_health' => 'Mental Health Worker',
| 'sponsor' => 'Sponsor',
| 'other'
| ],
| 'section' => 'tattoo',
| ],
| 'age' => [
| 'type' => 'text',
| 'subtype' => 'number',
| 'label' => 'How old is your tattoo?',
| 'section' => 'tattoo',
| ],
| 'location' => [
| 'type' => 'radio',
| 'label' => 'Location on Body',
| 'options' => [
| 'face' => 'Face',
| 'neck' => 'Neck',
| 'scalp' => 'Scalp',
| 'chest' => 'Chest',
| 'back' => 'Back',
| 'arm' => 'Arm',
| 'hand' => 'Hand',
| 'finger' => 'Finger',
| 'butt' => 'Butt',
| 'genitals' => 'Genitals',
| 'leg' => 'Leg',
| 'foot' => 'Foot'
| ],
| 'section' => 'tattoo',
| ],
| 'photos' => [
| 'type' => 'gallery',
| 'label' => 'Photo(s) of Tattoo',
| 'section' => 'tattoo',
| 'hint' => 'Make sure we can get a sense of scale.'
| ],
| 'docs' => [
| 'type' => 'files',
| 'subtype' => '.doc,.pdf,.txt,.jpg',
| 'label' => 'Letter of Support',
| 'section' => 'tattoo',
| 'hint' => 'Please provide a letter written by one of the above mentioned people that referred you who are working alongside you building your New Legacy.'
| ],
| 'notes' => [
| 'type' => 'textarea',
| 'label' => 'Anything else to add?',
| 'quill' => true,
| 'section' => 'tattoo',
| ]
| ]
| ];
| }
|
|