PluginProbe
Formidable Forms – WordPress Form Builder for Contact Forms, Calculators, Quizzes & More / 6.16.1
Formidable Forms – WordPress Form Builder for Contact Forms, Calculators, Quizzes & More v6.16.1
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
formidable / classes / views / frm-fields / back-end / settings.php

settings.php in Formidable Forms – WordPress Form Builder for Contact Forms, Calculators, Quizzes & More 6.16.1, at classes/views/frm-fields/back-end/settings.php

425 lines 19.6 KB
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 <?php
2 if ( ! defined( 'ABSPATH' ) ) {
3 die( 'You are not allowed to call this page directly.' );
4 }
5 ?>
6 <div class="frm-single-settings frm_hidden frm-fields frm-type-<?php echo esc_attr( $field['type'] ); ?>" id="frm-single-settings-<?php echo esc_attr( $field['id'] ); ?>" data-fid="<?php echo esc_attr( $field['id'] ); ?>">
7 <input type="hidden" name="frm_fields_submitted[]" value="<?php echo esc_attr( $field['id'] ); ?>" />
8 <input type="hidden" name="field_options[field_order_<?php echo esc_attr( $field['id'] ); ?>]" value="<?php echo esc_attr( $field['field_order'] ); ?>" />
9
10 <h3 aria-expanded="true">
11 <?php
12 printf(
13 /* translators: %s: Field type */
14 esc_html__( '%s Field', 'formidable' ),
15 esc_html( $type_name )
16 );
17 ?>
18 <span class="frm-sub-label frm-text-sm">
19 (ID <?php echo esc_html( $field['id'] ); ?>)
20 </span>
21 </h3>
22
23 <div class="frm_grid_container frm-collapse-me" role="group">
24 <?php
25 if ( $field['type'] === 'captcha' && ! FrmFieldCaptcha::should_show_captcha() ) {
26 ?>
27 <div class="frm_warning_style frm-with-icon">
28 <?php FrmAppHelper::icon_by_class( 'frm_icon_font frm_alert_icon', array( 'style' => 'width:24px' ) ); ?>
29 <span>
30 <?php
31 /* translators: %1$s: Link HTML, %2$s: End link */
32 printf( esc_html__( 'Captchas will not be used until the Site and Secret Keys are %1$sset up%2$s.', 'formidable' ), '<a href="?page=formidable-settings&t=captcha_settings" target="_blank">', '</a>' );
33 ?>
34 </span>
35 </div>
36 <?php
37 }
38 if ( $field['type'] === 'credit_card' && ! FrmAppHelper::pro_is_installed() ) {
39 if ( ! FrmStrpLiteConnectHelper::at_least_one_mode_is_setup() ) {
40 FrmStrpLiteAppHelper::not_connected_warning();
41 } elseif ( ! FrmTransLiteActionsController::get_actions_for_form( $field['form_id'] ) ) {
42 ?>
43 <div class="frm_warning_style frm-with-icon">
44 <?php FrmAppHelper::icon_by_class( 'frm_icon_font frm_alert_icon', array( 'style' => 'width:24px' ) ); ?>
45 <span>
46 <?php
47 /* translators: %1$s: Link HTML, %2$s: End link */
48 printf( esc_html__( 'Credit Cards will not work without %1$sadding a Collect Payment action%2$s.', 'formidable' ), '<a href="?page=formidable&frm_action=settings&id=' . absint( $field['form_id'] ) . '&t=email_settings" target="_blank">', '</a>' );
49 ?>
50 </span>
51 </div>
52 <?php
53 }
54 }
55 ?>
56 <?php if ( $display['label'] ) { ?>
57 <p>
58 <label for="frm_name_<?php echo esc_attr( $field['id'] ); ?>">
59 <?php echo esc_html( apply_filters( 'frm_builder_field_label', __( 'Field Label', 'formidable' ), $field ) ); ?>
60 </label>
61 <input type="text" name="field_options[name_<?php echo esc_attr( $field['id'] ); ?>]" value="<?php echo esc_attr( $field['name'] ); ?>" id="frm_name_<?php echo esc_attr( $field['id'] ); ?>" data-changeme="field_label_<?php echo esc_attr( $field['id'] ); ?>" />
62 </p>
63 <?php } else { ?>
64 <input type="hidden" name="field_options[name_<?php echo esc_attr( $field['id'] ); ?>]" value="<?php echo esc_attr( $field['name'] ); ?>" id="frm_name_<?php echo esc_attr( $field['id'] ); ?>" />
65 <?php } ?>
66
67 <p class="frm-hide-empty">
68 <?php if ( $display['required'] ) { ?>
69 <label for="frm_req_field_<?php echo esc_attr( $field['id'] ); ?>" class="frm_inline_label">
70 <input type="checkbox" id="frm_req_field_<?php echo esc_attr( $field['id'] ); ?>" class="frm_req_field" name="field_options[required_<?php echo esc_attr( $field['id'] ); ?>]" value="1" <?php checked( $field['required'], 1 ); ?> />
71 <?php esc_html_e( 'Required', 'formidable' ); ?>
72 </label>
73 <?php
74 }
75
76 if ( $display['unique'] ) {
77 ?>
78 <label for="frm_uniq_field_<?php echo esc_attr( $field['id'] ); ?>" class="frm_inline_label frm_help" title="<?php esc_attr_e( '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.', 'formidable' ); ?>"><input type="checkbox" name="field_options[unique_<?php echo esc_attr( $field['id'] ); ?>]" id="frm_uniq_field_<?php echo esc_attr( $field['id'] ); ?>" value="1" <?php checked( $field['unique'], 1 ); ?> class="frm_mark_unique" />
79 <?php esc_html_e( 'Unique', 'formidable' ); ?>
80 </label>
81 <?php
82 }
83
84 if ( $display['read_only'] ) {
85 ?>
86 <label for="frm_read_only_field_<?php echo esc_attr( $field['id'] ); ?>" class="frm_inline_label frm_help" title="<?php esc_attr_e( 'Read Only: Show this field but do not allow the field value to be edited from the front-end.', 'formidable' ); ?>" >
87 <input type="checkbox" id="frm_read_only_field_<?php echo esc_attr( $field['id'] ); ?>" name="field_options[read_only_<?php echo esc_attr( $field['id'] ); ?>]" value="1" <?php checked( $field['read_only'], 1 ); ?>/>
88 <?php esc_html_e( 'Read Only', 'formidable' ); ?>
89 </label>
90 <?php
91 }
92
93 do_action( 'frm_field_options_form_top', $field, $display, $values );
94 ?>
95 </p>
96
97 <?php
98 if ( $display['range'] ) {
99 include FrmAppHelper::plugin_path() . '/classes/views/frm-fields/back-end/number-range.php';
100 }
101
102 $field_obj->show_primary_options( compact( 'field', 'display', 'values' ) );
103
104 ?>
105
106 <?php if ( $display['css'] ) { ?>
107 <p class="frm-has-modal">
108 <label for="frm_classes_<?php echo esc_attr( $field['id'] ); ?>" class="frm_help" title="<?php esc_attr_e( 'Add a CSS class to the field container. Use our predefined classes to align multiple fields in single row.', 'formidable' ); ?>">
109 <?php esc_html_e( 'CSS Layout Classes', 'formidable' ); ?>
110 </label>
111 <span class="frm-with-right-icon">
112 <?php
113 FrmAppHelper::icon_by_class(
114 'frm_icon_font frm_more_horiz_solid_icon frm-show-inline-modal',
115 array(
116 'data-open' => 'frm-layout-classes-box',
117 'title' => esc_attr__( 'Toggle Options', 'formidable' ),
118 )
119 );
120 ?>
121 <input type="text" name="field_options[classes_<?php echo esc_attr( $field['id'] ); ?>]" value="<?php echo esc_attr( $field['classes'] ); ?>" class="frm_classes" id="frm_classes_<?php echo esc_attr( $field['id'] ); ?>" data-changeme="frm_field_id_<?php echo esc_attr( $field['id'] ); ?>" data-changeatt="class" data-sep=" " data-shortcode="0" />
122 </span>
123 </p>
124 <?php } ?>
125 </div>
126
127 <?php
128
129 $field_obj->show_field_choices( compact( 'field', 'display', 'values' ) );
130
131 if ( $display['clear_on_focus'] ) {
132 do_action( 'frm_extra_field_display_options', $field );
133 }
134
135 /**
136 * Fires after printing the primary options section of field.
137 *
138 * @since 5.0.04 Added `$display` and `$values`.
139 *
140 * @param array $field Field data.
141 * @param array{field_obj:FrmFieldType, display:array, values:array} $data
142 */
143 do_action( 'frm_before_field_options', $field, compact( 'field_obj', 'display', 'values' ) );
144
145 ?>
146 <h3 class="frm-collapsed" aria-expanded="false" tabindex="0" role="button" aria-label="<?php esc_attr_e( 'Collapsible Advanced Settings', 'formidable' ); ?>" aria-controls="collapsible-section">
147 <?php esc_html_e( 'Advanced', 'formidable' ); ?>
148 <?php FrmAppHelper::icon_by_class( 'frmfont frm_arrowdown6_icon', array( 'aria-hidden' => 'true' ) ); ?>
149 </h3>
150 <div class="frm_grid_container frm-collapse-me" role="group">
151
152 <?php if ( $display['default'] ) { ?>
153 <div class="frm-has-modal">
154 <?php if ( count( $default_value_types ) > 1 ) { ?>
155 <span class="frm-default-switcher">
156 <?php foreach ( $default_value_types as $link ) { ?>
157 <a href="#" title="<?php echo esc_attr( $link['title'] ); ?>" class="<?php echo esc_attr( $link['class'] ); ?>" data-toggleclass="frm_hidden frm-open"
158 <?php foreach ( $link['data'] as $data_key => $data_value ) { ?>
159 data-<?php echo esc_attr( $data_key ); ?>="<?php echo esc_attr( $data_value . ( substr( $data_value, -1 ) === '-' ? $field['id'] : '' ) ); ?>"
160 <?php } ?>
161 <?php if ( isset( $link['data']['frmshow'] ) ) { ?>
162 data-frmhide=".frm-inline-modal,.default-value-section-<?php echo esc_attr( $field['id'] ); ?>"
163 <?php } ?>
164 >
165 <?php FrmAppHelper::icon_by_class( $link['icon'] ); ?>
166 </a>
167 <?php } ?>
168 </span>
169 <?php } ?>
170 <?php $field_obj->show_default_value_setting( $field, $field_obj, $default_value_types, $display ); ?>
171 <?php do_action( 'frm_default_value_setting', compact( 'field', 'display', 'default_value_types' ) ); ?>
172 </div>
173 <?php
174 }//end if
175 ?>
176
177 <?php $field_obj->show_after_default( compact( 'field', 'display' ) ); ?>
178
179 <?php if ( $display['clear_on_focus'] ) { ?>
180 <p>
181 <label for="frm_placeholder_<?php echo esc_attr( $field['id'] ); ?>">
182 <?php esc_html_e( 'Placeholder Text', 'formidable' ); ?>
183 </label>
184 <?php
185 if ( $display['type'] === 'textarea' || $display['type'] === 'rte' ) {
186 ?>
187 <textarea name="field_options[placeholder_<?php echo esc_attr( $field['id'] ); ?>]" id="frm_placeholder_<?php echo esc_attr( $field['id'] ); ?>" rows="3" data-changeme="field_<?php echo esc_attr( $field['field_key'] ); ?>" data-changeatt="placeholder"><?php
188 echo FrmAppHelper::esc_textarea( $field['placeholder'] ); // phpcs:ignore WordPress.Security.EscapeOutput.OutputNotEscaped
189 ?></textarea>
190 <?php
191 } else {
192 ?>
193 <input type="text" name="field_options[placeholder_<?php echo esc_attr( $field['id'] ); ?>]" value="<?php echo esc_attr( $field['placeholder'] ); ?>" id="frm_placeholder_<?php echo esc_attr( $field['id'] ); ?>" data-changeme="field_<?php echo esc_attr( $field['field_key'] ); ?>" data-changeatt="placeholder" />
194 <?php
195 }
196 ?>
197 </p>
198 <?php } ?>
199
200 <?php
201 if ( $display['description'] ) {
202 include FrmAppHelper::plugin_path() . '/classes/views/frm-fields/back-end/field-description.php';
203 }
204
205 // Field Size
206 if ( $display['size'] && ! in_array( $field['type'], array( 'select', 'data', 'time' ), true ) ) {
207 $display_max = $display['max'];
208 include FrmAppHelper::plugin_path() . '/classes/views/frm-fields/back-end/pixels-wide.php';
209 }
210 ?>
211
212 <?php if ( $display['show_image'] ) { ?>
213 <p>
214 <label for="frm_show_image_<?php echo esc_attr( $field['id'] ); ?>">
215 <input type="checkbox" id="frm_show_image_<?php echo esc_attr( $field['id'] ); ?>" name="field_options[show_image_<?php echo esc_attr( $field['id'] ); ?>]" value="1" <?php checked( $field['show_image'], 1 ); ?> />
216 <?php esc_html_e( 'If this URL points to an image, show to image on the entries listing page.', 'formidable' ); ?>
217 </label>
218 </p>
219 <?php } ?>
220
221 <?php if ( $display['captcha_size'] ) { ?>
222 <p class="frm6 frm_first frm_form_field">
223 <label for="field_options_captcha_size_<?php echo esc_attr( $field['id'] ); ?>" class="frm_help" title="<?php esc_attr_e( 'Set the size of the captcha field. The compact option is best if your form is in a small area.', 'formidable' ); ?>">
224 <?php esc_html_e( 'Captcha Size', 'formidable' ); ?>
225 </label>
226 <select name="field_options[captcha_size_<?php echo esc_attr( $field['id'] ); ?>]" id="field_options_captcha_size_<?php echo esc_attr( $field['id'] ); ?>">
227 <option value="normal" <?php selected( $field['captcha_size'], 'normal' ); ?>>
228 <?php esc_html_e( 'Normal', 'formidable' ); ?>
229 </option>
230 <option value="compact" <?php selected( $field['captcha_size'], 'compact' ); ?>>
231 <?php esc_html_e( 'Compact', 'formidable' ); ?>
232 </option>
233 </select>
234 </p>
235 <?php } ?>
236 <?php if ( $display['captcha_theme'] ) { ?>
237 <p class="frm6 frm_form_field">
238 <label for="captcha_theme_<?php echo esc_attr( $field['field_key'] ); ?>">
239 <?php esc_html_e( 'Captcha Theme', 'formidable' ); ?>
240 </label>
241 <select name="field_options[captcha_theme_<?php echo esc_attr( $field['id'] ); ?>]" id="captcha_theme_<?php echo esc_attr( $field['field_key'] ); ?>">
242 <option value="light" <?php selected( $field['captcha_theme'], 'light' ); ?>>
243 <?php esc_html_e( 'Light', 'formidable' ); ?>
244 </option>
245 <option value="dark" <?php selected( $field['captcha_theme'], 'dark' ); ?>>
246 <?php esc_html_e( 'Dark', 'formidable' ); ?>
247 </option>
248 <?php if ( $display['captcha_theme_auto_option'] ) { ?>
249 <option value="auto" <?php selected( $field['captcha_theme'], 'auto' ); ?>>
250 <?php esc_html_e( 'Auto', 'formidable' ); ?>
251 </option>
252 <?php } ?>
253 </select>
254 </p>
255 <?php } ?>
256
257 <?php
258 if ( $display['format'] ) {
259 FrmFieldsController::show_format_option( $field );
260 }
261
262 do_action( 'frm_field_options', compact( 'field', 'display', 'values' ) );
263 ?>
264
265 <?php if ( $display['required'] ) { ?>
266 <p class="frm6 frm_form_field frm_required_details<?php echo esc_attr( $field['id'] . ( $field['required'] ? '' : ' frm_hidden' ) ); ?>">
267 <label for="field_options_required_indicator_<?php echo esc_attr( $field['id'] ); ?>">
268 <?php esc_html_e( 'Required Field Indicator', 'formidable' ); ?>
269 </label>
270 <input type="text" id="field_options_required_indicator_<?php echo esc_attr( $field['id'] ); ?>" name="field_options[required_indicator_<?php echo esc_attr( $field['id'] ); ?>]" value="<?php echo esc_attr( $field['required_indicator'] ); ?>" />
271 </p>
272 <?php } ?>
273
274 <?php if ( $display['label_position'] ) { ?>
275 <p class="frm6 frm_form_field">
276 <label for="field_options_label_<?php echo esc_attr( $field['id'] ); ?>"><?php esc_html_e( 'Label Position', 'formidable' ); ?></label>
277 <select id="field_options_label_<?php echo esc_attr( $field['id'] ); ?>" name="field_options[label_<?php echo esc_attr( $field['id'] ); ?>]">
278 <option value="" <?php selected( $field['label'], '' ); ?>>
279 <?php esc_html_e( 'Default', 'formidable' ); ?>
280 </option>
281 <?php
282 foreach ( FrmStylesHelper::get_single_label_positions( $field ) as $pos => $pos_label ) {
283 if ( ! $display['clear_on_focus'] && 'inside' === $pos ) {
284 // Don't allow inside labels for fields without placeholders.
285 continue;
286 }
287 FrmHtmlHelper::echo_dropdown_option(
288 $pos_label,
289 $pos === $field['label'],
290 array(
291 'value' => $pos,
292 )
293 );
294 }
295 if ( $field['type'] === 'divider' ) {
296 FrmHtmlHelper::echo_dropdown_option(
297 __( 'Center', 'formidable' ),
298 'center' === $field['label'],
299 array(
300 'value' => 'center',
301 )
302 );
303 }
304 ?>
305 </select>
306 </p>
307 <?php
308 }//end if
309 ?>
310
311 <p class="frm6 frm_form_field">
312 <label for="field_options_field_key_<?php echo esc_attr( $field['id'] ); ?>" class="frm_help" title="<?php esc_attr_e( 'The field key can be used as an alternative to the field ID in many cases.', 'formidable' ); ?>">
313 <?php esc_html_e( 'Field Key', 'formidable' ); ?>
314 </label>
315 <input type="text" name="field_options[field_key_<?php echo esc_attr( $field['id'] ); ?>]" value="<?php echo esc_attr( $field['field_key'] ); ?>" id="field_options_field_key_<?php echo esc_attr( $field['id'] ); ?>"/>
316 </p>
317
318 <?php if ( count( $field_types ) > 1 ) { ?>
319 <p class="frm6 frm_form_field">
320 <label for="field_options_type_<?php echo esc_attr( $field['id'] ); ?>">
321 <?php esc_html_e( 'Field Type', 'formidable' ); ?>
322 </label>
323 <select name="field_options[type_<?php echo esc_attr( $field['id'] ); ?>]" id="field_options_type_<?php echo esc_attr( $field['id'] ); ?>">
324 <?php
325 foreach ( $field_types as $fkey => $ftype ) {
326 // We need to avoid the word "select" in POST requests.
327 // When "dropdown" is sent as a type value, we'll map it back to "select" with PHP.
328 $type_option_value = 'select' === $fkey ? 'dropdown' : $fkey;
329 $type_option_params = array( 'value' => $type_option_value );
330 if ( array_key_exists( $fkey, $disabled_fields ) ) {
331 $type_option_params['disabled'] = 'disabled';
332 }
333
334 FrmHtmlHelper::echo_dropdown_option(
335 is_array( $ftype ) ? $ftype['name'] : $ftyp,
336 $fkey === $field['type'],
337 $type_option_params
338 );
339 unset( $fkey, $ftype, $type_option_value, $type_option_params );
340 }
341 ?>
342 </select>
343 </p>
344 <?php } else { ?>
345 <input type="hidden" id="field_options_type_<?php echo esc_attr( $field['id'] ); ?>" value="<?php echo esc_attr( $field['type'] ); ?>" />
346 <?php
347 }//end if
348 ?>
349
350 <table class="form-table frm-mt-0">
351 <?php
352 $field_obj->show_options( $field, $display, $values );
353 do_action( 'frm_field_options_form', $field, $display, $values );
354 ?>
355 </table>
356 </div>
357
358 <?php if ( $display['required'] || $display['invalid'] || $display['unique'] || $display['conf_field'] ) { ?>
359 <?php
360 $hidden_invalid = FrmField::is_field_type( $field, 'text' ) && ! FrmField::is_option_true( $field, 'format' ) && FrmField::is_option_empty( $field, 'max' );
361 $has_validation = ( ( $display['invalid'] && ! $hidden_invalid ) || $field['required'] || FrmField::is_option_true( $field, 'unique' ) || FrmField::is_option_true( $field, 'conf_field' ) );
362 ?>
363 <div class="frm_validation_msg <?php echo esc_attr( $has_validation ? '' : 'frm_hidden' ); ?>">
364 <h3 class="frm-collapsed" aria-expanded="false" tabindex="0" role="button" aria-label="<?php esc_attr_e( 'Collapsible Validation Messages Settings', 'formidable' ); ?>" aria-controls="collapsible-section">
365 <?php
366 esc_html_e( 'Validation Messages', 'formidable' );
367 FrmAppHelper::icon_by_class( 'frmfont frm_arrowdown6_icon', array( 'aria-hidden' => 'true' ) );
368 ?>
369 </h3>
370
371 <div class="frm_validation_box frm-collapse-me" role="group">
372 <?php if ( $display['required'] ) { ?>
373 <p class="frm_required_details<?php echo esc_attr( $field['id'] . ( $field['required'] ? '' : ' frm_hidden' ) ); ?>">
374 <label for="field_options_blank_<?php echo esc_attr( $field['id'] ); ?>">
375 <?php esc_html_e( 'Required', 'formidable' ); ?>
376 </label>
377 <input type="text" name="field_options[blank_<?php echo esc_attr( $field['id'] ); ?>]" value="<?php echo esc_attr( $field['blank'] ); ?>" id="field_options_blank_<?php echo esc_attr( $field['id'] ); ?>" />
378 </p>
379 <?php } ?>
380
381 <?php if ( $display['invalid'] ) { ?>
382 <p class="frm_invalid_msg<?php echo esc_attr( $field['id'] . ( $hidden_invalid ? ' frm_hidden' : '' ) ); ?>">
383 <label for="field_options_invalid_<?php echo esc_attr( $field['id'] ); ?>">
384 <?php esc_html_e( 'Invalid Format', 'formidable' ); ?>
385 </label>
386 <input type="text" name="field_options[invalid_<?php echo esc_attr( $field['id'] ); ?>]" value="<?php echo esc_attr( $field['invalid'] ); ?>" id="field_options_invalid_<?php echo esc_attr( $field['id'] ); ?>" />
387 </p>
388 <?php
389 }
390
391 if ( $display['unique'] ) {
392 ?>
393 <p class="frm_unique_details<?php echo esc_attr( $field['id'] . ( $field['unique'] ? '' : ' frm_hidden' ) ); ?>">
394 <label for="field_options_unique_msg_<?php echo esc_attr( $field['id'] ); ?>">
395 <?php esc_html_e( 'Unique', 'formidable' ); ?>
396 </label>
397 <input type="text" name="field_options[unique_msg_<?php echo esc_attr( $field['id'] ); ?>]" value="<?php echo esc_attr( $field['unique_msg'] ); ?>" id="field_options_unique_msg_<?php echo esc_attr( $field['id'] ); ?>" />
398 </p>
399 <?php
400 }
401
402 if ( $display['conf_field'] ) {
403 ?>
404 <p class="frm_conf_details<?php echo esc_attr( $field['id'] . ( $field['conf_field'] ? '' : ' frm_hidden' ) ); ?>">
405 <label for="field_options_conf_msg_<?php echo esc_attr( $field['id'] ); ?>">
406 <?php esc_html_e( 'Confirmation', 'formidable' ); ?>
407 </label>
408 <input type="text" name="field_options[conf_msg_<?php echo esc_attr( $field['id'] ); ?>]" value="<?php echo esc_attr( $field['conf_msg'] ); ?>" id="field_options_conf_msg_<?php echo esc_attr( $field['id'] ); ?>" />
409 </p>
410 <?php
411 }
412 ?>
413 </div>
414 </div>
415 <?php
416 }//end if
417 ?>
418
419 <?php do_action( 'frm_after_field_options', compact( 'field', 'display', 'values' ) ); ?>
420
421 <?php if ( $display['conf_field'] ) { ?>
422 <input type="hidden" name="field_options[conf_desc_<?php echo esc_attr( $field['id'] ); ?>]" value="<?php echo esc_attr( $field['conf_desc'] ); ?>" />
423 <?php } ?>
424 </div>
425