PluginProbe
Formidable Forms – WordPress Form Builder for Contact Forms, Calculators, Quizzes & More / 5.0.08
Formidable Forms – WordPress Form Builder for Contact Forms, Calculators, Quizzes & More v5.0.08
6.35 6.34 6.33.1 6.33 6.32.1 6.32 6.31 6.25 6.25.1 6.26 6.26.1 6.27 6.28 6.29 6.3 6.3.1 6.3.2 6.30 6.4 6.4.1 6.4.2 6.5 6.5.1 6.5.2 6.5.3 All 141 releases
← All changes | classes/controllers/FrmFieldsController.php +275 -567 6.325.0.08 View file →
@@ -4,15 +4,8 @@
4 4 }
5 5
6 6 class FrmFieldsController {
7 7
8 - /**
9 - * This is stored statically so we can re-use this data for every field.
10 - *
11 - * @var FrmFieldSelectionData|null
12 - */
13 - private static $field_selection_data;
14 -
15 8 public static function load_field() {
16 9 FrmAppHelper::permission_check( 'frm_edit_forms' );
17 10 check_ajax_referer( 'frm_ajax', 'nonce' );
18 11
@@ -18,10 +11,9 @@
18 11
19 12 // Javascript may be included in some field settings.
20 13 // phpcs:ignore WordPress.Security.ValidatedSanitizedInput.InputNotSanitized
21 14 $fields = isset( $_POST['field'] ) ? wp_unslash( $_POST['field'] ) : array();
22 -
23 - if ( ! $fields ) {
15 + if ( empty( $fields ) ) {
24 16 wp_die();
25 17 }
26 18
27 19 $_GET['page'] = 'formidable';
@@ -34,11 +26,10 @@
34 26
35 27 foreach ( $fields as $field ) {
36 28 $field = htmlspecialchars_decode( nl2br( $field ) );
37 29 $field = json_decode( $field );
38 -
39 30 if ( ! isset( $field->id ) || ! is_numeric( $field->id ) ) {
40 - // This field may have already been loaded
31 + // this field may have already been loaded
41 32 continue;
42 33 }
43 34
44 35 if ( ! isset( $field->value ) ) {
@@ -49,10 +40,11 @@
49 40 $field->default_value = json_decode( json_encode( $field->default_value ), true );
50 41
51 42 ob_start();
52 43 self::load_single_field( $field, $values );
53 - $field_html[ absint( $field->id ) ] = ob_get_clean();
54 - }//end foreach
44 + $field_html[ absint( $field->id ) ] = ob_get_contents();
45 + ob_end_clean();
46 + }
55 47
56 48 echo json_encode( $field_html );
57 49
58 50 wp_die();
@@ -64,17 +56,16 @@
64 56 public static function create() {
65 57 FrmAppHelper::permission_check( 'frm_edit_forms' );
66 58 check_ajax_referer( 'frm_ajax', 'nonce' );
67 59
68 - $field_type = FrmAppHelper::get_post_param( 'field_type', '', 'sanitize_text_field' );
69 - $form_id = FrmAppHelper::get_post_param( 'form_id', 0, 'absint' );
70 - $field_options = FrmAppHelper::get_post_param( 'field_options', array(), 'wp_kses_post' );
60 + $field_type = FrmAppHelper::get_post_param( 'field_type', '', 'sanitize_text_field' );
61 + $form_id = FrmAppHelper::get_post_param( 'form_id', 0, 'absint' );
71 62
72 63 do_action( 'frm_before_create_field', $field_type, $form_id );
73 64
74 - $field = self::include_new_field( $field_type, $form_id, $field_options );
65 + $field = self::include_new_field( $field_type, $form_id );
75 66
76 - // This hook will allow for multiple fields to be added at once
67 + // this hook will allow for multiple fields to be added at once
77 68 do_action( 'frm_after_field_created', $field, $form_id );
78 69
79 70 wp_die();
80 71 }
@@ -82,40 +73,29 @@
82 73 /**
83 74 * Set up and create a new field
84 75 *
85 76 * @param string $field_type
86 - * @param int $form_id
87 - * @param array $field_options
77 + * @param integer $form_id
88 78 *
89 - * @return array|false
79 + * @return array|bool
90 80 */
91 - public static function include_new_field( $field_type, $form_id, $field_options = array() ) {
81 + public static function include_new_field( $field_type, $form_id ) {
92 82 $field_values = FrmFieldsHelper::setup_new_vars( $field_type, $form_id );
83 + $field_values = apply_filters( 'frm_before_field_created', $field_values );
93 84
94 - if ( $field_options ) {
95 - $field_values['field_options'] = array_merge( $field_values['field_options'], $field_options );
96 - }
85 + $field_id = FrmField::create( $field_values );
97 86
98 - // When a new field is added to the form, flag it as draft and hide it from the front-end.
99 - $field_values['field_options']['draft'] = 1;
100 -
101 - /**
102 - * @param array $field_values
103 - */
104 - $field_values = apply_filters( 'frm_before_field_created', $field_values );
105 - $field_id = FrmField::create( $field_values );
106 -
107 87 if ( ! $field_id ) {
108 88 return false;
109 89 }
110 90
111 - $field = self::get_field_array_from_id( $field_id );
91 + $field = self::get_field_array_from_id( $field_id );
92 +
112 93 $values = array();
113 -
114 94 if ( FrmAppHelper::pro_is_installed() ) {
115 95 $values['post_type'] = FrmProFormsHelper::post_type( $form_id );
116 - $parent_form_id = FrmDb::get_var( 'frm_forms', array( 'id' => $form_id ), 'parent_form_id' );
117 96
97 + $parent_form_id = FrmDb::get_var( 'frm_forms', array( 'id' => $form_id ), 'parent_form_id' );
118 98 if ( $parent_form_id ) {
119 99 $field['parent_form_id'] = $parent_form_id;
120 100 }
121 101 }
@@ -128,10 +108,11 @@
128 108 public static function duplicate() {
129 109 FrmAppHelper::permission_check( 'frm_edit_forms' );
130 110 check_ajax_referer( 'frm_ajax', 'nonce' );
131 111
132 - $field_id = FrmAppHelper::get_post_param( 'field_id', 0, 'absint' );
133 - $form_id = FrmAppHelper::get_post_param( 'form_id', 0, 'absint' );
112 + $field_id = FrmAppHelper::get_post_param( 'field_id', 0, 'absint' );
113 + $form_id = FrmAppHelper::get_post_param( 'form_id', 0, 'absint' );
114 +
134 115 $new_field = FrmField::duplicate_single_field( $field_id, $form_id );
135 116
136 117 if ( is_array( $new_field ) && ! empty( $new_field['field_id'] ) ) {
137 118 self::load_single_field( $new_field['field_id'], $new_field['values'] );
@@ -148,8 +129,9 @@
148 129 * @return array
149 130 */
150 131 public static function get_field_array_from_id( $field_id ) {
151 132 $field = FrmField::getOne( $field_id );
133 +
152 134 return FrmFieldsHelper::setup_edit_vars( $field );
153 135 }
154 136
155 137 /**
@@ -154,13 +136,11 @@
154 136
155 137 /**
156 138 * @since 3.0
157 139 *
158 - * @param array|int|object|string $field_object
159 - * @param array $values
160 - * @param int $form_id
161 - *
162 - * @return void
140 + * @param int|array|object $field_object
141 + * @param array $values
142 + * @param int $form_id
163 143 */
164 144 public static function load_single_field( $field_object, $values, $form_id = 0 ) {
165 145 global $frm_vars;
166 146 $frm_vars['is_admin'] = true;
@@ -171,104 +151,61 @@
171 151 $field = $field_object;
172 152 $field_object = FrmField::getOne( $field['id'] );
173 153 }
174 154
175 - $field_obj = FrmFieldFactory::get_field_factory( $field_object );
176 - $display = self::display_field_options( array(), $field_obj );
177 - $ajax_loading = ! empty( $values['ajax_load'] );
178 - $ajax_this_field = isset( $values['count'] ) && $values['count'] > 10 && ! in_array( $field_object->type, array( 'divider', 'end_divider' ), true );
155 + $field_obj = FrmFieldFactory::get_field_factory( $field_object );
156 + $display = self::display_field_options( array(), $field_obj );
179 157
158 + $ajax_loading = isset( $values['ajax_load'] ) && $values['ajax_load'];
159 + $ajax_this_field = isset( $values['count'] ) && $values['count'] > 10 && ! in_array( $field_object->type, array( 'divider', 'end_divider' ) );
160 +
180 161 if ( $ajax_loading && $ajax_this_field ) {
181 162 $li_classes = self::get_classes_for_builder_field( array(), $display, $field_obj );
182 - include FrmAppHelper::plugin_path() . '/classes/views/frm-fields/back-end/ajax-field-placeholder.php';
183 - return;
184 - }
163 + include( FrmAppHelper::plugin_path() . '/classes/views/frm-fields/back-end/ajax-field-placeholder.php' );
164 + } else {
165 + if ( ! isset( $field ) && is_object( $field_object ) ) {
166 + $field_object->parent_form_id = isset( $values['id'] ) ? $values['id'] : $field_object->form_id;
185 167
186 - if ( ! isset( $field ) && is_object( $field_object ) ) {
187 - $field_object->parent_form_id = $values['id'] ?? $field_object->form_id;
188 - $field = FrmFieldsHelper::setup_edit_vars( $field_object );
189 - }
168 + $field = FrmFieldsHelper::setup_edit_vars( $field_object );
169 + }
190 170
191 - /**
192 - * Filter for adding extra attributes to the field container.
193 - *
194 - * @since 6.23
195 - *
196 - * @param array $extra_field_attributes
197 - * @param array $field
198 - * @param array $display
199 - */
200 - $extra_field_attributes = apply_filters( 'frm_field_container_extra_attributes', array(), $field, $display );
171 + $li_classes = self::get_classes_for_builder_field( $field, $display, $field_obj );
172 + $li_classes .= ' ui-state-default widgets-holder-wrap';
201 173
202 - $li_classes = self::get_classes_for_builder_field( $field, $display, $field_obj );
203 - $li_classes .= ' ui-state-default widgets-holder-wrap';
204 -
205 - require FrmAppHelper::plugin_path() . '/classes/views/frm-forms/add_field.php';
174 + require( FrmAppHelper::plugin_path() . '/classes/views/frm-forms/add_field.php' );
175 + }
206 176 }
207 177
208 178 /**
209 179 * @since 3.0
210 - *
211 - * @param array $field
212 - * @param array $display
213 - * @param FrmFieldType $field_info
214 - *
215 - * @return string
216 180 */
217 181 private static function get_classes_for_builder_field( $field, $display, $field_info ) {
218 - $li_classes = $field_info->form_builder_classes( $display['type'] );
219 - $li_classes .= ' frm_form_field frmstart ';
182 + $li_classes = $field_info->form_builder_classes( $display['type'] );
183 + $classes = isset( $field['classes'] ) ? $field['classes'] : '';
220 184
221 - $style_align_class = self::get_builder_field_style_align_class( $field, $field_info );
185 + // Exclude alignright for now since we aren't using widths.
186 + $classes = str_replace( ' frm_alignright ', ' ', $classes );
187 + $classes = trim( $classes );
222 188
223 - if ( $style_align_class ) {
224 - $li_classes .= $style_align_class . ' ';
189 + if ( 'frm_alignright' === $classes ) {
190 + $classes = '';
225 191 }
226 192
227 - if ( isset( $field['classes'] ) ) {
228 - $li_classes .= trim( $field['classes'] ) . ' ';
193 + $li_classes .= ' frm_form_field frmstart ';
194 +
195 + if ( $classes ) {
196 + $li_classes .= $classes . ' ';
229 197 }
230 198
231 199 $li_classes .= 'frmend';
232 200
233 201 if ( $field ) {
234 - return apply_filters( 'frm_build_field_class', $li_classes, $field );
202 + $li_classes = apply_filters( 'frm_build_field_class', $li_classes, $field );
235 203 }
236 204
237 205 return $li_classes;
238 206 }
239 207
240 - /**
241 - * Apply the active style alignment to a radio or checkbox builder preview on load.
242 - *
243 - * The per-field alignment setting only exists in Pro, so on load the style setting is
244 - * used. When the field has an explicit alignment (Pro), the frm_build_field_class filter
245 - * applies it instead. When Pro is not installed, any saved alignment is treated as empty.
246 - *
247 - * @since 6.32
248 - *
249 - * @param array $field
250 - * @param FrmFieldType $field_info
251 - *
252 - * @return string
253 - */
254 - private static function get_builder_field_style_align_class( $field, $field_info ) {
255 - if ( ! $field || ! is_array( $field ) || ( ! FrmField::is_radio( $field ) && ! FrmField::is_checkbox( $field ) ) ) {
256 - return '';
257 - }
258 -
259 - $align = FrmAppHelper::pro_is_installed() ? FrmField::get_option( $field, 'align' ) : '';
260 -
261 - if ( $align ) {
262 - return '';
263 - }
264 -
265 - $align = FrmStylesHelper::get_align_from_active_style( $field );
266 - $field_info->prepare_align_class( $align );
267 -
268 - return $align;
269 - }
270 -
271 208 public static function destroy() {
272 209 FrmAppHelper::permission_check( 'frm_edit_forms' );
273 210 check_ajax_referer( 'frm_ajax', 'nonce' );
274 211
@@ -276,11 +213,10 @@
276 213 FrmField::destroy( $field_id );
277 214 wp_die();
278 215 }
279 216
280 - /**
281 - * Field Options.
282 - */
217 + /* Field Options */
218 +
283 219 public static function import_options() {
284 220 FrmAppHelper::permission_check( 'frm_edit_forms' );
285 221 check_ajax_referer( 'frm_ajax', 'nonce' );
286 222
@@ -287,40 +223,27 @@
287 223 if ( ! is_admin() || ! current_user_can( 'frm_edit_forms' ) ) {
288 224 return;
289 225 }
290 226
291 - $field_id = FrmAppHelper::get_param( 'field_id', '', 'post', 'absint' );
292 - $field = FrmField::getOne( $field_id );
293 - $bulk_edit_types = array( 'radio', 'checkbox', 'select' );
227 + $field_id = FrmAppHelper::get_param( 'field_id', '', 'post', 'absint' );
228 + $field = FrmField::getOne( $field_id );
294 229
295 - /**
296 - * Filter to add new fields that will support import_options/Bulk Edit Options.
297 - *
298 - * @since 6.8.4
299 - *
300 - * @param array $bulk_edit_types
301 - *
302 - * @return array
303 - */
304 - $bulk_edit_types = apply_filters( 'frm_bulk_edit_field_types', $bulk_edit_types );
305 -
306 - if ( ! in_array( $field->type, $bulk_edit_types, true ) ) {
230 + if ( ! in_array( $field->type, array( 'radio', 'checkbox', 'select' ) ) ) {
307 231 return;
308 232 }
309 233
310 234 $field = FrmFieldsHelper::setup_edit_vars( $field );
235 + $opts = FrmAppHelper::get_param( 'opts', '', 'post', 'wp_kses_post' );
236 + $opts = explode( "\n", rtrim( $opts, "\n" ) );
237 + $opts = array_map( 'trim', $opts );
311 238
312 - $opts = FrmAppHelper::get_param( 'opts', '', 'post', 'wp_kses_post' );
313 - $opts = explode( "\n", rtrim( $opts, "\n" ) );
314 - $opts = array_map( 'trim', $opts );
239 + $separate = FrmAppHelper::get_param( 'separate', '', 'post', 'sanitize_text_field' );
240 + $field['separate_value'] = ( $separate === 'true' );
315 241
316 - $separate = FrmAppHelper::get_param( 'separate', '', 'post', 'sanitize_text_field' );
317 - $field['separate_value'] = $separate === 'true';
318 -
319 242 if ( $field['separate_value'] ) {
320 243 foreach ( $opts as $opt_key => $opt ) {
321 - if ( str_contains( $opt, '|' ) ) {
322 - $vals = explode( '|', $opt );
244 + if ( strpos( $opt, '|' ) !== false ) {
245 + $vals = explode( '|', $opt );
323 246 $opts[ $opt_key ] = array(
324 247 'label' => trim( $vals[0] ),
325 248 'value' => trim( $vals[1] ),
326 249 );
@@ -330,11 +253,10 @@
330 253 }
331 254 }
332 255
333 256 // Keep other options after bulk update.
334 - if ( ! empty( $field['field_options']['other'] ) ) {
257 + if ( isset( $field['field_options']['other'] ) && $field['field_options']['other'] == true ) {
335 258 $other_array = array();
336 -
337 259 foreach ( $field['options'] as $opt_key => $opt ) {
338 260 if ( FrmFieldsHelper::is_other_opt( $opt_key ) ) {
339 261 $other_array[ $opt_key ] = $opt;
340 262 }
@@ -339,10 +261,9 @@
339 261 $other_array[ $opt_key ] = $opt;
340 262 }
341 263 unset( $opt_key, $opt );
342 264 }
343 -
344 - if ( $other_array ) {
265 + if ( ! empty( $other_array ) ) {
345 266 $opts = array_merge( $opts, $other_array );
346 267 }
347 268 }
348 269
@@ -356,10 +277,8 @@
356 277 /**
357 278 * @since 4.0
358 279 *
359 280 * @param array $atts - Includes field array, field_obj, display array, values array.
360 - *
361 - * @return void
362 281 */
363 282 public static function load_single_field_settings( $atts ) {
364 283 $field = $atts['field'];
365 284 $field_obj = $atts['field_obj'];
@@ -374,19 +293,19 @@
374 293 if ( ! isset( $field['read_only'] ) ) {
375 294 $field['read_only'] = false;
376 295 }
377 296
378 - $field_selection_data = self::maybe_define_field_selection_data();
379 - $all_field_types = $field_selection_data->all_field_types;
380 - $disabled_fields = $field_selection_data->disabled_fields;
381 - $frm_settings = FrmAppHelper::get_settings();
382 - $field_types = FrmFieldTypeOptionData::get_field_types( $field['type'] );
297 + $field_types = FrmFieldsHelper::get_field_types( $field['type'] );
298 + $pro_field_selection = FrmField::pro_field_selection();
299 + $all_field_types = array_merge( $pro_field_selection, FrmField::field_selection() );
300 + $disabled_fields = FrmAppHelper::pro_is_installed() ? array() : $pro_field_selection;
301 + $frm_settings = FrmAppHelper::get_settings();
383 302
384 303 if ( ! isset( $all_field_types[ $field['type'] ] ) ) {
385 304 // Add fallback for an add-on field type that has been deactivated.
386 305 $all_field_types[ $field['type'] ] = array(
387 306 'name' => ucfirst( $field['type'] ),
388 - 'icon' => 'frmfont frm_pencil_icon',
307 + 'icon' => 'frm_icon_font frm_pencil_icon',
389 308 );
390 309 } elseif ( ! is_array( $all_field_types[ $field['type'] ] ) ) {
391 310 // Fallback for fields added in a more basic way.
392 311 FrmFormsHelper::prepare_field_type( $all_field_types[ $field['type'] ] );
@@ -392,9 +311,8 @@
392 311 FrmFormsHelper::prepare_field_type( $all_field_types[ $field['type'] ] );
393 312 }
394 313
395 314 $type_name = $all_field_types[ $field['type'] ]['name'];
396 -
397 315 if ( $field['type'] === 'divider' && FrmField::is_option_true( $field, 'repeat' ) ) {
398 316 $type_name = $all_field_types['divider|repeat']['name'];
399 317 }
400 318
@@ -404,148 +322,61 @@
404 322
405 323 if ( $display['clear_on_focus'] && is_array( $field['placeholder'] ) ) {
406 324 $field['placeholder'] = implode( ', ', $field['placeholder'] );
407 325 }
408 -
409 - $pro_is_installed = FrmAppHelper::pro_is_installed();
410 -
411 - $unique_values_label_atts = array(
412 - 'for' => 'frm_uniq_field_' . $field['id'],
413 - 'class' => 'frm_help frm-mb-0',
414 - 'title' => __(
415 - 'Unique: Do not allow the same response multiple times. For example, if one user enters \'Joe\', then no one else will be allowed to enter the same name.',
416 - 'formidable'
417 - ),
418 - 'data-trigger' => 'hover',
419 - );
420 -
421 - $read_only_label_atts = array(
422 - 'for' => 'frm_read_only_field_' . $field['id'],
423 - 'class' => 'frm_help frm-mb-0',
424 - 'title' => __( 'Read Only: Show this field but do not allow the field value to be edited from the front-end.', 'formidable' ),
425 - 'data-trigger' => 'hover',
426 - );
427 -
428 - if ( ! $pro_is_installed ) {
429 - $visibility_upsell_atts = FrmSettingsUpsellHelper::add_upgrade_modal_atts(
430 - array(
431 - 'id' => 'field_options_admin_only_' . $field['id'],
432 - 'readonly' => '1',
433 - ),
434 - 'field_visibility',
435 - __( 'Visibility options', 'formidable' ),
436 - '/field-options/#kb-visibility'
437 - );
438 -
439 - $autocomplete_upsell_atts = FrmSettingsUpsellHelper::add_upgrade_modal_atts(
440 - array( 'id' => 'field_options_autocomplete_' . $field['id'] ),
441 - 'autocomplete',
442 - __( 'Autocomplete options', 'formidable' ),
443 - '/email-address/#kb-autocomplete-attribute'
444 - );
445 -
446 - $before_after_content_upsell_atts = FrmSettingsUpsellHelper::add_upgrade_modal_atts(
447 - array(
448 - 'type' => 'text',
449 - 'readonly' => '1',
450 - ),
451 - 'before_after_contents',
452 - __( 'Before and after field contents', 'formidable' ),
453 - '/field-options/#kb-before-after-input'
454 - );
455 -
456 - $show_upsell_for_unique_value = in_array(
457 - $field['type'],
458 - array( 'address', 'checkbox', 'email', 'name', 'number', 'phone', 'radio', 'text', 'textarea', 'url' ),
459 - true
460 - );
461 - $show_upsell_for_read_only = in_array( $field['type'], array( 'email', 'hidden', 'number', 'phone', 'radio', 'text', 'textarea', 'url' ), true );
462 - $show_upsell_for_before_after_contents = in_array( $field['type'], array( 'email', 'number', 'phone', 'quantity', 'select', 'tag', 'text', 'total', 'url' ), true );
463 - $show_upsell_for_autocomplete = in_array( $field['type'], array( 'text', 'email', 'number' ), true );
464 - $show_upsell_for_visibility = $field['type'] !== 'hidden';
465 -
466 - $unique_values_label_atts = FrmSettingsUpsellHelper::add_upgrade_modal_atts(
467 - $unique_values_label_atts,
468 - 'unique_values',
469 - __( 'Unique Values', 'formidable' ),
470 - '/field-options/#kb-unique'
471 - );
472 - $read_only_label_atts = FrmSettingsUpsellHelper::add_upgrade_modal_atts(
473 - $read_only_label_atts,
474 - 'read_only',
475 - __( 'Read Only Values', 'formidable' ),
476 - '/field-options/#kb-read-only'
477 - );
478 - }//end if
479 -
480 - include FrmAppHelper::plugin_path() . '/classes/views/frm-fields/back-end/settings.php';
326 + include( FrmAppHelper::plugin_path() . '/classes/views/frm-fields/back-end/settings.php' );
481 327 }
482 328
483 329 /**
484 - * @since 6.9.1
485 - *
486 - * @return FrmFieldSelectionData
487 - */
488 - private static function maybe_define_field_selection_data() {
489 - if ( ! isset( self::$field_selection_data ) ) {
490 - self::$field_selection_data = new FrmFieldSelectionData();
491 - }
492 - return self::$field_selection_data;
493 - }
494 -
495 - /**
496 330 * Get the list of default value types that can be toggled in the builder.
497 331 *
498 332 * @since 4.0
499 - *
500 - * @param array $field
501 - * @param array $atts
502 - *
503 333 * @return array
504 334 */
505 335 private static function default_value_types( $field, $atts ) {
506 336 $types = array(
507 - 'default_value' => array(
337 + 'default_value' => array(
508 338 'class' => '',
509 - 'icon' => 'frmfont frm_text2_icon',
510 - 'title' => __( 'Default Value', 'formidable' ),
339 + 'icon' => 'frm_icon_font frm_text2_icon',
340 + 'title' => __( 'Default Value (Text)', 'formidable' ),
511 341 'data' => array(
512 342 'frmshow' => '#default-value-for-',
513 343 ),
514 344 ),
515 - 'calc' => array(
516 - 'class' => 'frm_show_upgrade frm_noallow',
517 - 'title' => __( 'Calculate Value', 'formidable' ),
518 - 'icon' => 'frmfont frm_calculator_icon',
519 - 'data' => array(
345 + 'calc' => array(
346 + 'class' => 'frm_show_upgrade frm_noallow',
347 + 'title' => __( 'Default Value (Calculation)', 'formidable' ),
348 + 'icon' => 'frm_icon_font frm_calculator_icon',
349 + 'data' => array(
520 350 'medium' => 'calculations',
521 351 'upgrade' => __( 'Calculator forms', 'formidable' ),
522 352 ),
523 - 'tooltip' => __( 'Automatically calculate the value of this field based on values from other fields.', 'formidable' ),
524 353 ),
525 354 'get_values_field' => array(
526 - 'class' => 'frm_show_upgrade frm_noallow',
527 - 'title' => __( 'Lookup', 'formidable' ),
528 - 'icon' => 'frmfont frm_search_icon',
529 - 'data' => array(
355 + 'class' => 'frm_show_upgrade frm_noallow',
356 + 'title' => __( 'Default Value (Lookup)', 'formidable' ),
357 + 'icon' => 'frm_icon_font frm_search_icon',
358 + 'data' => array(
530 359 'medium' => 'lookup',
531 360 'upgrade' => __( 'Lookup fields', 'formidable' ),
532 361 ),
533 - 'tooltip' => __( 'Dynamically retrieve the value of this field from a lookup field.', 'formidable' ),
534 362 ),
535 363 );
536 364
537 365 $types = apply_filters( 'frm_default_value_types', $types, $atts );
538 366
367 + if ( FrmAppHelper::pro_is_installed() && ! FrmAppHelper::meets_min_pro_version( '4.0' ) ) {
368 + // Prevent settings from showing in 2 spots.
369 + unset( $types['calc'], $types['get_values_field'] );
370 + }
371 +
539 372 // Set active class.
540 373 $settings = array_keys( $types );
541 374 $active = 'default_value';
542 375
543 - if ( FrmAppHelper::pro_is_connected() ) {
544 - foreach ( $settings as $type ) {
545 - if ( ! empty( $field[ $type ] ) ) {
546 - $active = $type;
547 - }
376 + foreach ( $settings as $type ) {
377 + if ( ! empty( $field[ $type ] ) ) {
378 + $active = $type;
548 379 }
549 380 }
550 381
551 382 $types[ $active ]['class'] .= ' current';
@@ -553,13 +384,8 @@
553 384
554 385 return $types;
555 386 }
556 387
557 - /**
558 - * @param string $type
559 - *
560 - * @return string
561 - */
562 388 public static function change_type( $type ) {
563 389 $type_switch = array(
564 390 'scale' => 'radio',
565 391 'star' => 'radio',
@@ -567,32 +393,30 @@
567 393 'rte' => 'textarea',
568 394 'website' => 'url',
569 395 'image' => 'url',
570 396 );
571 -
572 397 if ( isset( $type_switch[ $type ] ) ) {
573 398 $type = $type_switch[ $type ];
574 399 }
575 400
576 401 $pro_fields = FrmField::pro_field_selection();
577 - // We want to keep credit_card types as credit card types for Stripe Lite.
578 - // The credit_card key is set for backward compatibility.
579 - FrmField::remove_moved_field_types_from_pro( $pro_fields );
402 + $types = array_keys( $pro_fields );
403 + if ( in_array( $type, $types ) ) {
404 + $type = 'text';
405 + }
580 406
581 - return array_key_exists( $type, $pro_fields ) ? 'text' : $type;
407 + return $type;
582 408 }
583 409
584 410 /**
585 - * @param array $settings
586 - * @param FrmFieldType|null $field_info
411 + * @param array $settings
412 + * @param object $field_info
587 413 *
588 414 * @return array
589 415 */
590 416 public static function display_field_options( $settings, $field_info = null ) {
591 417 if ( $field_info ) {
592 - $settings = $field_info->display_field_settings();
593 -
594 - // Field appears to be protected but there is a __get function in FrmFieldType that makes this public.
418 + $settings = $field_info->display_field_settings();
595 419 $settings['field_data'] = $field_info->field;
596 420 }
597 421
598 422 return apply_filters( 'frm_display_field_options', $settings );
@@ -602,32 +426,14 @@
602 426 * Display the format option
603 427 *
604 428 * @since 3.0
605 429 *
606 - * @param array $field Field data.
607 - * @param bool $is_hidden Whether the format option should be hidden.
608 - *
609 - * @return void
430 + * @param array $field
610 431 */
611 - public static function show_format_option( $field, $is_hidden = false ) {
612 - $attributes = array(
613 - 'class' => 'frm-has-modal',
614 - 'id' => 'frm-field-format-custom-' . $field['id'],
615 - );
616 -
617 - if ( $is_hidden ) {
618 - $attributes['class'] .= ' frm_hidden';
619 - }
620 -
621 - include FrmAppHelper::plugin_path() . '/classes/views/frm-fields/back-end/value-format.php';
432 + public static function show_format_option( $field ) {
433 + include( FrmAppHelper::plugin_path() . '/classes/views/frm-fields/back-end/value-format.php' );
622 434 }
623 435
624 - /**
625 - * @param array $field
626 - * @param bool $echo
627 - *
628 - * @return string
629 - */
630 436 public static function input_html( $field, $echo = true ) {
631 437 $class = array();
632 438 self::add_input_classes( $field, $class );
633 439
@@ -642,32 +448,25 @@
642 448 FrmFormsHelper::add_html_attr( $class, 'class', $add_html );
643 449
644 450 self::add_shortcodes_to_html( $field, $add_html );
645 451 self::add_pattern_attribute( $field, $add_html );
646 - self::add_currency_field_attributes( $field, $add_html );
647 452
648 453 $add_html = apply_filters( 'frm_field_extra_html', $add_html, $field );
649 454 $add_html = ' ' . implode( ' ', $add_html ) . ' ';
650 455
651 456 if ( $echo ) {
652 - echo $add_html; // phpcs:ignore WordPress.Security.EscapeOutput.OutputNotEscaped
457 + echo $add_html; // WPCS: XSS ok.
653 458 }
654 459
655 460 return $add_html;
656 461 }
657 462
658 - /**
659 - * @param array $field
660 - * @param array $class
661 - *
662 - * @return void
663 - */
664 463 private static function add_input_classes( $field, array &$class ) {
665 - if ( ! empty( $field['input_class'] ) ) {
464 + if ( isset( $field['input_class'] ) && ! empty( $field['input_class'] ) ) {
666 465 $class[] = $field['input_class'];
667 466 }
668 467
669 - if ( $field['type'] === 'hidden' || $field['type'] === 'user_id' ) {
468 + if ( $field['type'] == 'hidden' || $field['type'] == 'user_id' ) {
670 469 return;
671 470 }
672 471
673 472 if ( isset( $field['size'] ) && $field['size'] > 0 ) {
@@ -674,14 +473,8 @@
674 473 $class[] = 'auto_width';
675 474 }
676 475 }
677 476
678 - /**
679 - * @param array $field
680 - * @param array $add_html
681 - *
682 - * @return void
683 - */
684 477 private static function add_html_size( $field, array &$add_html ) {
685 478 $size_fields = array(
686 479 'select',
687 480 'data',
@@ -690,9 +483,9 @@
690 483 'file',
691 484 'lookup',
692 485 );
693 486
694 - if ( ! isset( $field['size'] ) || $field['size'] <= 0 || in_array( $field['type'], $size_fields, true ) ) {
487 + if ( ! isset( $field['size'] ) || $field['size'] <= 0 || in_array( $field['type'], $size_fields ) ) {
695 488 return;
696 489 }
697 490
698 491 if ( FrmAppHelper::is_admin_page( 'formidable' ) ) {
@@ -709,16 +502,10 @@
709 502
710 503 self::add_html_cols( $field, $add_html );
711 504 }
712 505
713 - /**
714 - * @param array $field
715 - * @param array $add_html
716 - *
717 - * @return void
718 - */
719 506 private static function add_html_cols( $field, array &$add_html ) {
720 - if ( ! in_array( $field['type'], array( 'textarea', 'rte' ), true ) ) {
507 + if ( ! in_array( $field['type'], array( 'textarea', 'rte' ) ) ) {
721 508 return;
722 509 }
723 510
724 511 // Convert to cols for textareas.
@@ -728,9 +515,9 @@
728 515 'rem' => 0.444,
729 516 'em' => 0.544,
730 517 );
731 518
732 - // Include "col" for valid html
519 + // include "col" for valid html
733 520 $unit = trim( preg_replace( '/[0-9]+/', '', $field['size'] ) );
734 521
735 522 if ( ! isset( $calc[ $unit ] ) ) {
736 523 return;
@@ -735,18 +522,13 @@
735 522 if ( ! isset( $calc[ $unit ] ) ) {
736 523 return;
737 524 }
738 525
739 - $size = (float) str_replace( $unit, '', $field['size'] ) / $calc[ $unit ];
526 + $size = (float) str_replace( $unit, '', $field['size'] ) / $calc[ $unit ];
527 +
740 528 $add_html['cols'] = 'cols="' . absint( $size ) . '"';
741 529 }
742 530
743 - /**
744 - * @param array $field
745 - * @param array $add_html
746 - *
747 - * @return void
748 - */
749 531 private static function add_html_length( $field, array &$add_html ) {
750 532 // Check for max setting and if this field accepts maxlength.
751 533 $fields = array(
752 534 'textarea',
@@ -754,9 +536,9 @@
754 536 'hidden',
755 537 'file',
756 538 );
757 539
758 - if ( FrmField::is_option_empty( $field, 'max' ) || in_array( $field['type'], $fields, true ) ) {
540 + if ( FrmField::is_option_empty( $field, 'max' ) || in_array( $field['type'], $fields ) ) {
759 541 return;
760 542 }
761 543
762 544 if ( FrmAppHelper::is_admin_page( 'formidable' ) ) {
@@ -766,17 +548,9 @@
766 548
767 549 $add_html['maxlength'] = 'maxlength="' . esc_attr( $field['max'] ) . '"';
768 550 }
769 551
770 - /**
771 - * @param array $field
772 - * @param array $add_html
773 - * @param array $class
774 - *
775 - * @return void
776 - */
777 552 private static function add_html_placeholder( $field, array &$add_html, array &$class ) {
778 - // phpcs:ignore Universal.Operators.StrictComparisons
779 553 if ( $field['default_value'] != '' ) {
780 554 if ( is_array( $field['default_value'] ) ) {
781 555 $add_html['data-frmval'] = 'data-frmval="' . esc_attr( json_encode( $field['default_value'] ) ) . '"';
782 556 } else {
@@ -784,29 +558,43 @@
784 558 }
785 559 }
786 560
787 561 $field['placeholder'] = self::prepare_placeholder( $field );
788 -
789 - // phpcs:ignore Universal.Operators.StrictComparisons
790 562 if ( $field['placeholder'] == '' || is_array( $field['placeholder'] ) ) {
791 - // Don't include a json placeholder
563 + // don't include a json placeholder
792 564 return;
793 565 }
794 566
795 - self::add_placeholder_to_input( $field, $add_html );
567 + $frm_settings = FrmAppHelper::get_settings();
568 +
569 + if ( $frm_settings->use_html ) {
570 + self::add_placeholder_to_input( $field, $add_html );
571 + } else {
572 + self::add_frmval_to_input( $field, $add_html );
573 +
574 + $class[] = 'frm_toggle_default';
575 +
576 + if ( $field['value'] == $field['placeholder'] ) {
577 + $class[] = 'frm_default';
578 + }
579 + }
796 580 }
797 581
798 582 /**
799 - * Prepares field placeholder.
800 - *
801 - * @since 5.4 This doesn't call `FrmFieldsController::get_default_value_from_name()` anymore.
802 - *
803 - * @param array $field Field array.
804 - *
583 + * @param array $field
805 584 * @return string
806 585 */
807 586 private static function prepare_placeholder( $field ) {
808 - return $field['placeholder'] ?? '';
587 + $placeholder = isset( $field['placeholder'] ) ? $field['placeholder'] : '';
588 + $placeholder_is_blank = empty( $placeholder ) && '0' !== $placeholder;
589 + $is_placeholder_field = FrmFieldsHelper::is_placeholder_field_type( $field['type'] );
590 + $is_combo_field = in_array( $field['type'], array( 'address', 'credit_card' ), true );
591 +
592 + if ( $placeholder_is_blank && $is_placeholder_field && ! $is_combo_field ) {
593 + $placeholder = self::get_default_value_from_name( $field );
594 + }
595 +
596 + return $placeholder;
809 597 }
810 598
811 599 /**
812 600 * If the label position is "inside",
@@ -812,9 +600,8 @@
812 600 * If the label position is "inside",
813 601 * get the label to use as the placeholder
814 602 *
815 603 * @since 2.05
816 - * @since 5.4 Remove the logic code for "inside" label position.
817 604 *
818 605 * @param array $field
819 606 *
820 607 * @return string
@@ -819,9 +606,19 @@
819 606 *
820 607 * @return string
821 608 */
822 609 public static function get_default_value_from_name( $field ) {
823 - return '';
610 + $position = FrmField::get_option( $field, 'label' );
611 + if ( $position == 'inside' ) {
612 + $default_value = $field['name'];
613 + if ( FrmField::is_required( $field ) ) {
614 + $default_value .= ' ' . $field['required_indicator'];
615 + }
616 + } else {
617 + $default_value = '';
618 + }
619 +
620 + return $default_value;
824 621 }
825 622
826 623 /**
827 624 * Maybe add a blank placeholder option before any options
@@ -827,39 +624,22 @@
827 624 * Maybe add a blank placeholder option before any options
828 625 * in a dropdown.
829 626 *
830 627 * @since 4.04
831 - *
832 - * @param array|object $field
833 - *
834 628 * @return bool True if placeholder was added.
835 629 */
836 630 public static function add_placeholder_to_select( $field ) {
837 631 $placeholder = FrmField::get_option( $field, 'placeholder' );
838 -
839 - if ( ! $placeholder ) {
632 + if ( empty( $placeholder ) ) {
840 633 $placeholder = self::get_default_value_from_name( $field );
841 634 }
842 635
843 - $use_placeholder = $placeholder;
844 - $autocomplete = FrmField::get_option( $field, 'autocom' );
845 -
846 - if ( $autocomplete ) {
847 - $use_chosen = ! is_callable( 'FrmProAppHelper::use_chosen_js' ) || FrmProAppHelper::use_chosen_js();
848 -
849 - if ( $use_chosen ) {
850 - $use_placeholder = '';
851 - }
852 - }
853 -
854 636 if ( $placeholder !== '' ) {
855 - $placeholder_attributes = array(
856 - 'class' => 'frm-select-placeholder',
857 - 'value' => '',
858 - 'data-placeholder' => 'true',
859 - );
860 -
861 - FrmHtmlHelper::echo_dropdown_option( $use_placeholder, false, $placeholder_attributes );
637 + ?>
638 + <option value="">
639 + <?php echo esc_html( FrmField::get_option( $field, 'autocom' ) ? '' : $placeholder ); ?>
640 + </option>
641 + <?php
862 642 return true;
863 643 }
864 644
865 645 return false;
@@ -865,14 +645,12 @@
865 645 return false;
866 646 }
867 647
868 648 /**
869 - * Use HTML5 placeholder with js fallback.
649 + * Use HMTL5 placeholder with js fallback
870 650 *
871 651 * @param array $field
872 652 * @param array $add_html
873 - *
874 - * @return void
875 653 */
876 654 private static function add_placeholder_to_input( $field, &$add_html ) {
877 655 if ( FrmFieldsHelper::is_placeholder_field_type( $field['type'] ) ) {
878 656 $add_html['placeholder'] = 'placeholder="' . esc_attr( $field['placeholder'] ) . '"';
@@ -878,16 +656,9 @@
878 656 $add_html['placeholder'] = 'placeholder="' . esc_attr( $field['placeholder'] ) . '"';
879 657 }
880 658 }
881 659
882 - /**
883 - * @param array $field
884 - * @param array $add_html
885 - *
886 - * @return void
887 - */
888 660 private static function add_frmval_to_input( $field, &$add_html ) {
889 - // phpcs:ignore Universal.Operators.StrictComparisons
890 661 if ( $field['placeholder'] != '' ) {
891 662 $add_html['data-frmval'] = 'data-frmval="' . esc_attr( $field['placeholder'] ) . '"';
892 663
893 664 if ( 'select' === $field['type'] ) {
@@ -894,30 +665,21 @@
894 665 $add_html['data-frmplaceholder'] = 'data-frmplaceholder="' . esc_attr( $field['placeholder'] ) . '"';
895 666 }
896 667 }
897 668
898 - // phpcs:ignore Universal.Operators.StrictComparisons
899 669 if ( $field['default_value'] != '' ) {
900 670 $add_html['data-frmval'] = 'data-frmval="' . esc_attr( $field['default_value'] ) . '"';
901 671 }
902 672 }
903 673
904 - /**
905 - * @param array $field
906 - * @param array $add_html
907 - *
908 - * @return void
909 - */
910 674 private static function add_validation_messages( $field, array &$add_html ) {
911 - $field_validation_messages_status = self::get_validation_data_attribute_visibility_info( $field );
912 -
913 - if ( FrmField::is_required( $field ) && ! empty( $field_validation_messages_status['data-reqmsg'] ) ) {
675 + if ( FrmField::is_required( $field ) ) {
914 676 $required_message = FrmFieldsHelper::get_error_msg( $field, 'blank' );
915 677 $add_html['data-reqmsg'] = 'data-reqmsg="' . esc_attr( $required_message ) . '"';
916 678 self::maybe_add_html_required( $field, $add_html );
917 679 }
918 680
919 - if ( ! FrmField::is_option_empty( $field, 'invalid' ) && ! empty( $field_validation_messages_status['data-invmsg'] ) ) {
681 + if ( ! FrmField::is_option_empty( $field, 'invalid' ) ) {
920 682 $invalid_message = FrmFieldsHelper::get_error_msg( $field, 'invalid' );
921 683 $add_html['data-invmsg'] = 'data-invmsg="' . esc_attr( $invalid_message ) . '"';
922 684 }
923 685
@@ -926,63 +688,24 @@
926 688 }
927 689 }
928 690
929 691 /**
930 - * Returns an array that contains field validation messages status.
931 - *
932 - * @since 6.9
933 - *
934 - * @param array|object $field
935 - *
936 - * @return array
937 - */
938 - private static function get_validation_data_attribute_visibility_info( $field ) {
939 - if ( FrmField::get_field_type( $field ) === 'hidden' ) {
940 - $field_validation_data_attributes = array(
941 - 'data-invmsg' => false,
942 - 'data-reqmsg' => false,
943 - );
944 - } else {
945 - $field_validation_data_attributes = array(
946 - 'data-invmsg' => true,
947 - 'data-reqmsg' => true,
948 - );
949 - }
950 -
951 - /**
952 - * Allows controlling which field validation messages would be included in the field html.
953 - *
954 - * @since 6.9
955 - *
956 - * @param array $field_validation_messages_status
957 - * @param array|object $field
958 - */
959 - return apply_filters( 'frm_field_validation_include_data_attributes', $field_validation_data_attributes, $field );
960 - }
961 -
962 - /**
963 692 * @since 5.0.03
964 693 *
965 694 * @param array $field
966 695 * @param array $add_html
967 - *
968 - * @return void
969 696 */
970 697 private static function maybe_add_error_html_for_js_validation( $field, array &$add_html ) {
971 698 $form = self::get_form_for_js_validation( $field );
972 -
973 699 if ( false === $form ) {
974 700 return;
975 701 }
976 702
977 703 $error_body = self::pull_custom_error_body_from_custom_html( $form, $field );
978 -
979 - if ( false === $error_body ) {
980 - return;
704 + if ( false !== $error_body ) {
705 + $error_body = urlencode( $error_body );
706 + $add_html['data-error-html'] = 'data-error-html="' . esc_attr( $error_body ) . '"';
981 707 }
982 -
983 - $error_body = urlencode( $error_body );
984 - $add_html['data-error-html'] = 'data-error-html="' . esc_attr( $error_body ) . '"';
985 708 }
986 709
987 710 /**
988 711 * @since 5.0.03
@@ -987,24 +710,20 @@
987 710 /**
988 711 * @since 5.0.03
989 712 *
990 713 * @param array $field
991 - *
992 - * @return false|stdClass false if there is no form object found with JS validation active.
714 + * @return stdClass|false false if there is no form object found with JS validation active.
993 715 */
994 716 private static function get_form_for_js_validation( $field ) {
995 717 global $frm_vars;
996 -
997 718 if ( ! empty( $frm_vars['js_validate_forms'] ) ) {
998 719 if ( isset( $frm_vars['js_validate_forms'][ $field['form_id'] ] ) ) {
999 720 return $frm_vars['js_validate_forms'][ $field['form_id'] ];
1000 721 }
1001 -
1002 722 if ( ! empty( $field['parent_form_id'] ) && isset( $frm_vars['js_validate_forms'][ $field['parent_form_id'] ] ) ) {
1003 723 return $frm_vars['js_validate_forms'][ $field['parent_form_id'] ];
1004 724 }
1005 725 }
1006 -
1007 726 return false;
1008 727 }
1009 728
1010 729 /**
@@ -1010,10 +729,9 @@
1010 729 /**
1011 730 * @param stdClass $form
1012 731 * @param array $field
1013 732 * @param array $errors
1014 - *
1015 - * @return false|string
733 + * @return string|false
1016 734 */
1017 735 public static function pull_custom_error_body_from_custom_html( $form, $field, $errors = array() ) {
1018 736 if ( empty( $field['custom_html'] ) ) {
1019 737 return false;
@@ -1020,16 +738,15 @@
1020 738 }
1021 739
1022 740 $custom_html = $field['custom_html'];
1023 741 $custom_html = apply_filters( 'frm_before_replace_shortcodes', $custom_html, $field, $errors, $form );
1024 - $start = strpos( $custom_html, '[if error]' );
1025 742
743 + $start = strpos( $custom_html, '[if error]' );
1026 744 if ( false === $start ) {
1027 745 return false;
1028 746 }
1029 747
1030 748 $end = strpos( $custom_html, '[/if error]' );
1031 -
1032 749 if ( false === $end || $end < $start ) {
1033 750 return false;
1034 751 }
1035 752
@@ -1035,14 +752,16 @@
1035 752
1036 753 $error_body = substr( $custom_html, $start + 10, $end - $start - 10 );
1037 754 $default_html = array(
1038 755 '<div class="frm_error" id="frm_error_field_[key]">[error]</div>',
1039 - '<div class="frm_error" role="alert" id="frm_error_field_[key]">[error]</div>',
1040 756 '<div class="frm_error">[error]</div>',
1041 - '<div class="frm_error" role="alert">[error]</div>',
1042 757 );
1043 758
1044 - return in_array( $error_body, $default_html, true ) ? false : $error_body;
759 + if ( in_array( $error_body, $default_html, true ) ) {
760 + return false;
761 + }
762 +
763 + return $error_body;
1045 764 }
1046 765
1047 766 /**
1048 767 * If 'required' is added to a conditionally hidden field, the form won't
@@ -1049,64 +768,33 @@
1049 768 * submit in many browsers. Check to make sure the javascript to conditionally
1050 769 * remove it is present if needed.
1051 770 *
1052 771 * @since 3.06.01
1053 - *
1054 772 * @param array $field
1055 773 * @param array $add_html
1056 - *
1057 - * @return void
1058 774 */
1059 775 private static function maybe_add_html_required( $field, array &$add_html ) {
1060 - // phpcs:disable Generic.WhiteSpace.ScopeIndent
1061 - $excluded_field_types =
1062 - FrmField::is_radio( $field ) ||
1063 - FrmField::is_checkbox( $field ) ||
1064 - FrmField::is_field_type( $field, 'file' ) ||
1065 - FrmField::is_field_type( $field, 'nps' ) ||
1066 - FrmField::is_field_type( $field, 'scale' );
1067 - // phpcs:enable Generic.WhiteSpace.ScopeIndent
1068 -
1069 - if ( $excluded_field_types ) {
776 + if ( in_array( $field['type'], array( 'file', 'data', 'lookup' ), true ) ) {
1070 777 return;
1071 778 }
1072 779
1073 - $add_html['aria-required'] = 'aria-required="true"';
780 + $include_html = FrmAppHelper::meets_min_pro_version( '3.06.01' );
781 + if ( $include_html ) {
782 + $add_html['aria-required'] = 'aria-required="true"';
783 + }
1074 784 }
1075 785
1076 - /**
1077 - * @param array $field
1078 - * @param array $add_html
1079 - *
1080 - * @return void
1081 - */
1082 786 private static function add_shortcodes_to_html( $field, array &$add_html ) {
1083 787 if ( FrmField::is_option_empty( $field, 'shortcodes' ) ) {
1084 788 return;
1085 789 }
1086 790
1087 - if ( ! empty( $field['autocomplete'] ) ) {
1088 - unset( $field['shortcodes']['autocomplete'] );
1089 - }
1090 -
1091 791 foreach ( $field['shortcodes'] as $k => $v ) {
1092 - if ( isset( $field['subfield_name'] ) && str_starts_with( $k, 'aria-invalid' ) ) {
1093 - $subfield_name = $field['subfield_name'];
1094 -
1095 - if ( ! isset( $field['shortcodes'][ 'aria-invalid-' . $subfield_name ] ) ) {
1096 - continue;
1097 - }
1098 - // Change the key to the correct aria-invalid value so that $add_html is set correctly for the current subfield of a combo field.
1099 - $k = 'aria-invalid';
1100 - $v = $field['shortcodes'][ 'aria-invalid-' . $subfield_name ];
1101 - unset( $field['shortcodes'][ 'aria-invalid-' . $subfield_name ] );
1102 - }
1103 -
1104 - if ( 'opt' === $k || ! self::should_allow_input_attribute( $k ) ) {
792 + if ( 'opt' === $k ) {
1105 793 continue;
1106 794 }
1107 795
1108 - if ( is_numeric( $k ) && str_contains( $v, '=' ) ) {
796 + if ( is_numeric( $k ) && strpos( $v, '=' ) ) {
1109 797 $add_html[] = $v;
1110 798 } elseif ( ! empty( $k ) && isset( $add_html[ $k ] ) ) {
1111 799 $add_html[ $k ] = str_replace( $k . '="', $k . '="' . $v, $add_html[ $k ] );
1112 800 } else {
@@ -1113,128 +801,148 @@
1113 801 $add_html[ $k ] = $k . '="' . esc_attr( $v ) . '"';
1114 802 }
1115 803
1116 804 unset( $k, $v );
1117 - }//end foreach
1118 - }
1119 -
1120 - /**
1121 - * Disallow possibly unsafe attributees (that trigger JavaScript) when unasfe HTML is not allowed.
1122 - *
1123 - * @since 6.11.2
1124 - *
1125 - * @param string $key The option key.
1126 - *
1127 - * @return bool
1128 - */
1129 - private static function should_allow_input_attribute( $key ) {
1130 - if ( ! FrmAppHelper::should_never_allow_unfiltered_html() ) {
1131 - return true;
1132 805 }
1133 - return FrmAppHelper::input_key_is_safe( $key );
1134 806 }
1135 807
1136 808 /**
1137 - * Add pattern attribute.
809 + * Add pattern attribute
1138 810 *
1139 811 * @since 3.0
1140 812 *
1141 813 * @param array $field
1142 814 * @param array $add_html
1143 - *
1144 - * @return void
1145 815 */
1146 816 private static function add_pattern_attribute( $field, array &$add_html ) {
1147 - $format_value = FrmField::get_option( $field, 'format' );
1148 - $has_format = $format_value && ! FrmCurrencyHelper::is_currency_format( $format_value );
817 + $has_format = FrmField::is_option_true_in_array( $field, 'format' );
1149 818 $format_field = FrmField::is_field_type( $field, 'text' );
1150 819
1151 - if ( $field['type'] !== 'phone' && ( ! $has_format || ! $format_field ) ) {
1152 - return;
820 + if ( $field['type'] == 'phone' || ( $has_format && $format_field ) ) {
821 + $frm_settings = FrmAppHelper::get_settings();
822 +
823 + if ( $frm_settings->use_html ) {
824 + $format = FrmEntryValidate::phone_format( $field );
825 + $format = substr( $format, 2, - 1 );
826 +
827 + $add_html['pattern'] = 'pattern="' . esc_attr( $format ) . '"';
828 + }
1153 829 }
830 + }
1154 831
1155 - $format = FrmEntryValidate::phone_format( $field );
1156 - $format = substr( $format, 2, - 1 );
832 + public static function check_value( $opt, $opt_key, $field ) {
833 + if ( is_array( $opt ) ) {
834 + if ( FrmField::is_option_true( $field, 'separate_value' ) ) {
835 + $opt = isset( $opt['value'] ) ? $opt['value'] : ( isset( $opt['label'] ) ? $opt['label'] : reset( $opt ) );
836 + } else {
837 + $opt = isset( $opt['label'] ) ? $opt['label'] : reset( $opt );
838 + }
839 + }
1157 840
1158 - $add_html['pattern'] = 'pattern="' . esc_attr( $format ) . '"';
841 + return $opt;
1159 842 }
1160 843
844 + public static function check_label( $opt ) {
845 + if ( is_array( $opt ) ) {
846 + $opt = ( isset( $opt['label'] ) ? $opt['label'] : reset( $opt ) );
847 + }
848 +
849 + return $opt;
850 + }
851 +
1161 852 /**
1162 - * Add product attributes to fields in multi-paged forms.
1163 - *
1164 - * @param array $field
1165 - * @param array $add_html
1166 - *
1167 - * @return void
853 + * @deprecated 4.0
1168 854 */
1169 - private static function add_currency_field_attributes( $field, &$add_html ) {
1170 - $type = $field['original_type'] ?? $field['type'];
1171 - $is_product_field = in_array( $type, array( 'total', 'quantity', 'product' ), true );
855 + public static function update_ajax_option() {
856 + _deprecated_function( __METHOD__, '4.0' );
857 + FrmAppHelper::permission_check( 'frm_edit_forms' );
858 + check_ajax_referer( 'frm_ajax', 'nonce' );
1172 859
1173 - if ( ! $is_product_field ) {
1174 - return;
860 + $field_id = FrmAppHelper::get_post_param( 'field', 0, 'absint' );
861 + if ( ! $field_id ) {
862 + wp_die();
1175 863 }
1176 864
1177 - if ( $type === 'total' ) {
1178 - $add_html['data-frmtotal'] = 'data-frmtotal';
1179 - } elseif ( $type === 'quantity' ) {
1180 - $product_field = FrmField::get_option( $field, 'product_field' );
1181 - $add_html['data-frmproduct'] = 'data-frmproduct="' . esc_attr( json_encode( $product_field ) ) . '"';
1182 - } elseif ( $type === 'product' && 'hidden' === $field['type'] ) {
1183 - // We want to do this only for fields that are hidden because it's
1184 - // not their page, hence the check : 'hidden' === $field['type'].
1185 - $price = empty( $field['value'] ) ? 0 : self::get_product_price( $field );
865 + $field = FrmField::getOne( $field_id );
1186 866
1187 - $add_html['data-frmprice'] = 'data-frmprice="' . esc_attr( $price ) . '"';
867 + if ( isset( $_POST['separate_value'] ) ) {
868 + $new_val = FrmField::is_option_true( $field, 'separate_value' ) ? 0 : 1;
869 +
870 + $field->field_options['separate_value'] = $new_val;
871 + unset( $new_val );
1188 872 }
873 +
874 + FrmField::update(
875 + $field_id,
876 + array(
877 + 'field_options' => $field->field_options,
878 + 'form_id' => $field->form_id,
879 + )
880 + );
881 + wp_die();
1189 882 }
1190 883
1191 884 /**
1192 - * @param array $field
885 + * @deprecated 4.0
1193 886 */
1194 - private static function get_product_price( $field ) {
1195 - if ( is_array( $field['value'] ) ) {
1196 - // '' is unlikely though, let's just do it to prevent warnings
1197 - $value = isset( $field['opt_key'] ) && isset( $field['value'][ $field['opt_key'] ] )
1198 - ? $field['value'][ $field['opt_key'] ]
1199 - : '';
1200 - } else {
1201 - $value = $field['value'];
887 + public static function import_choices() {
888 + _deprecated_function( __METHOD__, '4.0' );
889 + wp_die();
890 + }
891 +
892 + /**
893 + * Add Single Option or Other Option.
894 + *
895 + * @deprecated 4.0 Moved to Pro for Other option only.
896 + */
897 + public static function add_option() {
898 + _deprecated_function( __METHOD__, '4.0', 'FrmProFormsController::add_other_option' );
899 + if ( is_callable( 'FrmProFormsController::add_other_option' ) ) {
900 + FrmProFormsController::add_other_option();
1202 901 }
902 + }
1203 903
1204 - $field_obj = FrmFieldFactory::get_field_object( $field['id'] );
904 + /**
905 + * @deprecated 4.0
906 + */
907 + public static function update_order() {
908 + FrmDeprecated::update_order();
909 + }
1205 910
1206 - if ( method_exists( $field_obj, 'get_posted_price' ) ) {
1207 - return $field_obj->get_posted_price( $value );
1208 - }
1209 -
1210 - return $value;
911 + /**
912 + * @deprecated 3.0
913 + * @codeCoverageIgnore
914 + */
915 + public static function edit_name( $field = 'name', $id = '' ) {
916 + FrmDeprecated::edit_name( $field, $id );
1211 917 }
1212 918
1213 919 /**
1214 - * @param mixed $opt
1215 - * @param mixed $opt_key
1216 - * @param array|object $field
920 + * @deprecated 3.0
921 + * @codeCoverageIgnore
1217 922 *
1218 - * @return mixed
923 + * @param int $field_id
924 + * @param array $values
925 + * @param int $form_id
926 + *
927 + * @return array
1219 928 */
1220 - public static function check_value( $opt, $opt_key, $field ) {
1221 - if ( is_array( $opt ) ) {
1222 - if ( FrmField::is_option_true( $field, 'separate_value' ) ) {
1223 - $opt = $opt['value'] ?? $opt['label'] ?? reset( $opt );
1224 - } else {
1225 - $opt = $opt['label'] ?? reset( $opt );
1226 - }
1227 - }
929 + public static function include_single_field( $field_id, $values, $form_id = 0 ) {
930 + return FrmDeprecated::include_single_field( $field_id, $values, $form_id );
931 + }
1228 932
1229 - return $opt;
933 + /**
934 + * @deprecated 2.3
935 + * @codeCoverageIgnore
936 + */
937 + public static function edit_option() {
938 + FrmDeprecated::deprecated( __METHOD__, '2.3' );
1230 939 }
1231 940
1232 941 /**
1233 - * @param mixed $opt
1234 - *
1235 - * @return mixed
942 + * @deprecated 2.3
943 + * @codeCoverageIgnore
1236 944 */
1237 - public static function check_label( $opt ) {
1238 - return is_array( $opt ) ? ( $opt['label'] ?? reset( $opt ) ) : $opt;
945 + public static function delete_option() {
946 + FrmDeprecated::deprecated( __METHOD__, '2.3' );
1239 947 }
1240 948 }