FormDisplaySettings.php
8.56 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
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
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
<?php if ( ! defined( 'ABSPATH' ) ) exit;
return apply_filters( 'ninja_forms_form_display_settings', array(
/*
* FORM TITLE
*/
'title' => array(
'name' => 'title',
'type' => 'textbox',
'label' => esc_html__( 'Form Title', 'ninja-forms' ),
'width' => 'full',
'group' => 'primary',
'value' => '',
),
/*
* SHOW FORM TITLE
*/
'show_title' => array(
'name' => 'show_title',
'type' => 'toggle',
'label' => esc_html__( 'Display Form Title', 'ninja-forms' ),
'width' => 'full',
'group' => 'primary',
'value' => 1,
),
/*
* ALLOW PUBLIC LINK
*/
'allow_public_link' => array(
'name' => 'allow_public_link',
'type' => 'toggle',
'label' => esc_html__( 'Allow a public link?', 'ninja-forms' ),
'width' => 'full',
'group' => '',
'value' => 0,
'help' => esc_html__( 'If this box is checked, Ninja Forms will create a public link to access the form.', 'ninja-forms' ),
),
'public_link' => array(
'name' => 'public_link',
'type' => 'copyresettext',
'label' => esc_html__( 'Link To Your Form', 'ninja-forms' ),
'width' => 'full',
'group' => '',
'help' => esc_html__( 'A public link to access the form.', 'ninja-forms' ),
'deps' => array(
'allow_public_link' => 1
),
),
'embed_form' => array(
'name' => 'embed_form',
'type' => 'copytext',
'label' => esc_html__( 'Embed Your Form', 'ninja-forms' ),
'width' => 'full',
'group' => '',
'value' => '',
'help' => esc_html__( 'The shortcode you can use to embed this form on a page or post.', 'ninja-forms' ),
),
/*
* CLEAR SUCCESSFULLY COMPLETED FORM
*/
'clear_complete' => array(
'name' => 'clear_complete',
'type' => 'toggle',
'label' => esc_html__( 'Clear successfully completed form?', 'ninja-forms' ),
'width' => 'full',
'group' => 'primary',
'value' => 1,
'help' => esc_html__( 'If this box is checked, Ninja Forms will clear the form values after it has been successfully submitted.', 'ninja-forms' ),
),
/*
* HIDE SUCCESSFULLY COMPLETED FORMS
*/
'hide_complete' => array(
'name' => 'hide_complete',
'type' => 'toggle',
'label' => esc_html__( 'Hide successfully completed form?', 'ninja-forms' ),
'width' => 'full',
'group' => 'primary',
'value' => 1,
'help' => esc_html__( 'If this box is checked, Ninja Forms will hide the form after it has been successfully submitted.', 'ninja-forms' ),
),
/*
* Default Label Position
*/
'default_label_pos' => array(
'name' => 'default_label_pos',
'type' => 'select',
'label' => esc_html__( 'Default Label Position', 'ninja-forms' ),
'width' => 'full',
'group' => 'advanced',
'options' => array(
array(
'label' => esc_html__( 'Above Element', 'ninja-forms' ),
'value' => 'above'
),
array(
'label' => esc_html__( 'Below Element', 'ninja-forms' ),
'value' => 'below'
),
array(
'label' => esc_html__( 'Left of Element', 'ninja-forms' ),
'value' => 'left'
),
array(
'label' => esc_html__( 'Right of Element', 'ninja-forms' ),
'value' => 'right'
),
array(
'label' => esc_html__( 'Hidden', 'ninja-forms' ),
'value' => 'hidden'
),
),
'value' => 'above',
),
/*
* Classes
*/
'classes' => array(
'name' => 'classes',
'type' => 'fieldset',
'label' => esc_html__( 'Custom Class Names', 'ninja-forms' ),
'width' => 'full',
'group' => 'advanced',
'settings' => array(
array(
'name' => 'wrapper_class',
'type' => 'textbox',
'placeholder' => '',
'label' => esc_html__( 'Wrapper', 'ninja-forms' ),
'width' => 'one-half',
'value' => '',
'use_merge_tags' => FALSE,
),
array(
'name' => 'element_class',
'type' => 'textbox',
'label' => esc_html__( 'Element', 'ninja-forms' ),
'placeholder' => '',
'width' => 'one-half',
'value' => '',
'use_merge_tags' => FALSE,
),
),
),
/*
* KEY
*/
'key' => array(
'name' => 'key',
'type' => 'textbox',
'label' => esc_html__( 'Form Key', 'ninja-forms'),
'width' => 'full',
'group' => 'administration',
'value' => '',
'help' => esc_html__( 'Programmatic name that can be used to reference this form.', 'ninja-forms' ),
),
/*
* ADD SUBMIT CHECKBOX
*/
'add_submit' => array(
'name' => 'add_submit',
'type' => 'toggle',
'label' => esc_html__( 'Add Submit Button', 'ninja-forms'),
'width' => 'full',
'group' => '',
'value' => 1,
'help' => esc_html__( 'We have noticed that you do not have a submit button on your form. We can add one for you automatically.', 'ninja-forms' ),
),
/*
* Form Labels
*/
'custom_messages' => array(
'name' => 'custom_messages',
'type' => 'fieldset',
'label' => esc_html__( 'Custom Labels', 'ninja-forms' ),
'width' => 'full',
'group' => 'advanced',
'settings' => array(
array(
'name' => 'changeEmailErrorMsg',
'type' => 'textbox',
'label' => esc_html__( 'Please enter a valid email address!', 'ninja-forms' ),
'width' => 'full'
),
array(
'name' => 'changeDateErrorMsg',
'type' => 'textbox',
'label' => esc_html__( 'Please enter a valid date!', 'ninja-forms' ),
'width' => 'full'
),
array(
'name' => 'confirmFieldErrorMsg',
'type' => 'textbox',
'label' => esc_html__( 'These fields must match!', 'ninja-forms' ),
'width' => 'full'
),
array(
'name' => 'fieldNumberNumMinError',
'type' => 'textbox',
'label' => esc_html__( 'Number Min Error', 'ninja-forms' ),
'width' => 'full'
),
array(
'name' => 'fieldNumberNumMaxError',
'type' => 'textbox',
'label' => esc_html__( 'Number Max Error', 'ninja-forms' ),
'width' => 'full'
),
array(
'name' => 'fieldNumberIncrementBy',
'type' => 'textbox',
'label' => esc_html__( 'Please increment by ', 'ninja-forms' ),
'width' => 'full'
),
array(
'name' => 'formErrorsCorrectErrors',
'type' => 'textbox',
'label' => esc_html__( 'Please correct errors before submitting this form.', 'ninja-forms' ),
'width' => 'full'
),
array(
'name' => 'validateRequiredField',
'type' => 'textbox',
'label' => esc_html__( 'This is a required field.', 'ninja-forms' ),
'width' => 'full'
),
array(
'name' => 'honeypotHoneypotError',
'type' => 'textbox',
'label' => esc_html__( 'Honeypot Error', 'ninja-forms' ),
'width' => 'full'
),
array(
'name' => 'fieldsMarkedRequired',
'type' => 'textbox',
'label' => sprintf( esc_html__( 'Fields marked with an %s*%s are required', 'ninja-forms' ), '<span class="ninja-forms-req-symbol">', '</span>' ),
'width' => 'full'
),
)
),
/*
* CURRENCY
*/
'currency' => array(
'name' => 'currency',
'type' => 'select',
'options' => array_merge( array( array( 'label' => esc_html__( 'Plugin Default', 'ninja-forms' ), 'value' => '' ) ), Ninja_Forms::config( 'Currency' ) ),
'label' => esc_html__( 'Currency', 'ninja-forms' ),
'width' => 'full',
'group' => 'advanced',
'value' => ''
)
));