C:\xampp\htdocs\landing\wp-content\plugins\wpforms-lite\includes\admin\builder\functions.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
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
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
<?php

/**
 * Output fields to be used on panels (settings etc).
 *
 * @since 1.0.0
 *
 * @param string $option
 * @param string $panel
 * @param string $field
 * @param array  $form_data
 * @param string $label
 * @param array  $args
 * @param bool   $echo
 *
 * @return string
 */
function wpforms_panel_field$option$panel$field$form_data$label$args = array(), $echo true ) {

    
// Required params.
    
if ( empty( $option ) || empty( $panel ) || empty( $field ) ) {
        return 
'';
    }

    
// Setup basic vars.
    
$panel       esc_attr$panel );
    
$field       esc_attr$field );
    
$panel_id    sanitize_html_class$panel );
    
$parent      = ! empty( $args['parent'] ) ? esc_attr$args['parent'] ) : '';
    
$subsection  = ! empty( $args['subsection'] ) ? esc_attr$args['subsection'] ) : '';
    
$label       = ! empty( $label ) ? esc_html$label ) : '';
    
$class       = ! empty( $args['class'] ) ? esc_attr$args['class'] ) : '';
    
$input_class = ! empty( $args['input_class'] ) ? esc_attr$args['input_class'] ) : '';
    
$default     = isset( $args['default'] ) ? $args['default'] : '';
    
$placeholder = ! empty( $args['placeholder'] ) ? esc_attr$args['placeholder'] ) : '';
    
$data_attr   '';
    
$output      '';
    
$input_id    sprintf'wpforms-panel-field-%s-%s'sanitize_html_class$panel_id ), sanitize_html_class$field ) );

    if ( ! empty( 
$args['input_id'] ) ) {
        
$input_id esc_attr$args['input_id'] );
    }

    
// Check if we should store values in a parent array.
    
if ( ! empty( $parent ) ) {
        if ( ! empty( 
$subsection ) ) {
            
$field_name sprintf'%s[%s][%s][%s]'$parent$panel$subsection$field );
            
$value      = isset( $form_data$parent ][ $panel ][ $subsection ][ $field ] ) ? $form_data$parent ][ $panel ][ $subsection ][ $field ] : $default;
            
$input_id   sprintf'wpforms-panel-field-%s-%s-%s'sanitize_html_class$panel_id ), sanitize_html_class$subsection ), sanitize_html_class$field ) );
            
$panel_id   sanitize_html_class$panel '-' $subsection );
        } else {
            
$field_name sprintf'%s[%s][%s]'$parent$panel$field );
            
$value      = isset( $form_data$parent ][ $panel ][ $field ] ) ? $form_data$parent ][ $panel ][ $field ] : $default;
        }
    } else {
        
$field_name sprintf'%s[%s]'$panel$field );
        
$value      = isset( $form_data$panel ][ $field ] ) ? $form_data$panel ][ $field ] : $default;
    }

    if ( isset( 
$args['field_name'] ) ) {
        
$field_name $args['field_name'];
    }

    if ( isset( 
$args['value'] ) ) {
        
$value $args['value'];
    }

    
// Check for data attributes.
    
if ( ! empty( $args['data'] ) ) {
        foreach ( 
$args['data'] as $key => $val ) {
            if ( 
is_array$val ) ) {
                
$val wp_json_encode$val );
            }
            
$data_attr .= ' data-' $key '=\'' $val '\'';
        }
    }

    
// Check for readonly inputs.
    
if ( ! empty( $args['readonly' ] ) ) {
        
$data_attr .= 'readonly';
    }

    
// Determine what field type to output.
    
switch ( $option ) {

        
// Text input.
        
case 'text':
            
$output sprintf(
                
'<input type="%s" id="%s" name="%s" value="%s" placeholder="%s" class="%s" %s>',
                ! empty( 
$args['type'] ) ? esc_attr$args['type'] ) : 'text',
                
$input_id,
                
$field_name,
                
esc_attr$value ),
                
$placeholder,
                
$input_class,
                
$data_attr
            
);
            break;

        
// Textarea.
        
case 'textarea':
            
$output sprintf(
                
'<textarea id="%s" name="%s" rows="%d" placeholder="%s" class="%s" %s>%s</textarea>',
                
$input_id,
                
$field_name,
                ! empty( 
$args['rows'] ) ? (int) $args['rows'] : '3',
                
$placeholder,
                
$input_class,
                
$data_attr,
                
esc_textarea$value )
            );
            break;

        
// TinyMCE.
        
case 'tinymce':
            
$id                               str_replace'-''_'$input_id );
            
$args['tinymce']['textarea_name'] = $field_name;
            
$args['tinymce']['teeny']         = true;
            
$args['tinymce']                  = wp_parse_args$args['tinymce'], array(
                
'media_buttons' => false,
                
'teeny'         => true,
            ) );
            
ob_start();
            
wp_editor$value$id$args['tinymce'] );
            
$output ob_get_clean();
            break;

        
// Checkbox.
        
case 'checkbox':
            
$output  sprintf(
                
'<input type="checkbox" id="%s" name="%s" value="1" class="%s" %s %s>',
                
$input_id,
                
$field_name,
                
$input_class,
                
checked'1'$valuefalse ),
                
$data_attr
            
);
            
$output .= sprintf(
                
'<label for="%s" class="inline">%s',
                
$input_id,
                
$label
            
);
            if ( ! empty( 
$args['tooltip'] ) ) {
                
$output .= sprintf' <i class="fa fa-question-circle wpforms-help-tooltip" title="%s"></i>'esc_attr$args['tooltip'] ) );
            }
            
$output .= '</label>';
            break;

        
// Radio.
        
case 'radio':
            
$options       $args['options'];
            
$radio_counter 1;
            
$output        '';

            foreach ( 
$options as $key => $item ) {
                if ( empty( 
$item['label'] ) ) {
                    continue;
                }

                
$item_value = ! empty( $item['value'] ) ? $item['value'] : $key;

                
$output .= '<span class="row">';

                if ( ! empty( 
$item['pre_label'] ) ) {
                    
$output .= '<label>' $item['pre_label'];
                }

                
$output .= sprintf(
                    
'<input type="radio" id="%s-%d" name="%s" value="%s" class="%s" %s %s>',
                    
$input_id,
                    
$radio_counter,
                    
$field_name,
                    
$item_value,
                    
$input_class,
                    
checked$item_value$valuefalse ),
                    
$data_attr
                
);

                if ( empty( 
$item['pre_label'] ) ) {
                    
$output .= sprintf(
                        
'<label for="%s-%d" class="inline">%s',
                        
$input_id,
                        
$radio_counter,
                        
$item['label']
                    );
                } else {
                    
$output .= '<span class="wpforms-panel-field-radio-label">' $item['label'] . '</span>';
                }

                if ( ! empty( 
$item['tooltip'] ) ) {
                    
$output .= sprintf' <i class="fa fa-question-circle wpforms-help-tooltip" title="%s"></i>'esc_attr$item['tooltip'] ) );
                }
                
$output .= '</label></span>';
                
$radio_counter ++;
            }

            if ( ! empty( 
$output ) ) {
                
$output '<div class="wpforms-panel-field-radio-container">' $output '</div>';
            }
            break;

        
// Select.
        
case 'select':
            if ( empty( 
$args['options'] ) && empty( $args['field_map'] ) ) {
                return 
'';
            }

            if ( ! empty( 
$args['field_map'] ) ) {
                
$options          = array();
                
$available_fields wpforms_get_form_fields$form_data$args['field_map'] );
                if ( ! empty( 
$available_fields ) ) {
                    foreach ( 
$available_fields as $id => $available_field ) {
                        
$options$id ] = ! empty( $available_field['label'] )
                            ? 
esc_attr$available_field['label'] )
                            : 
sprintf/* translators: %d - field ID. */
                                
esc_html__'Field #%d''wpforms-lite' ),
                                
absint$id )
                            );
                    }
                }
                
$input_class .= ' wpforms-field-map-select';
                
$data_attr   .= ' data-field-map-allowed="' implode' '$args['field_map'] ) . '"';
                if ( ! empty( 
$placeholder ) ) {
                    
$data_attr .= ' data-field-map-placeholder="' esc_attr$placeholder ) . '"';
                }
            } else {
                
$options $args['options'];
            }

            
$output sprintf(
                
'<select id="%s" name="%s" class="%s" %s>',
                
$input_id,
                
$field_name,
                
$input_class,
                
$data_attr
            
);

            if ( ! empty( 
$placeholder ) ) {
                
$output .= '<option value="">' $placeholder '</option>';
            }

            foreach ( 
$options as $key => $item ) {
                
$output .= sprintf'<option value="%s" %s>%s</option>'esc_attr$key ), selected$key$valuefalse ), $item );
            }

            
$output .= '</select>';
            break;
    }

    
// Put the pieces together.
    
$field_open  sprintf(
        
'<div id="%s-wrap" class="wpforms-panel-field %s %s">',
        
$input_id,
        
$class,
        
'wpforms-panel-field-' sanitize_html_class$option )
    );
    
$field_open .= ! empty( $args['before'] ) ? $args['before'] : '';
    if ( 
'checkbox' !== $option && ! empty( $label ) ) {
        
$field_label sprintf(
            
'<label for="%s">%s',
            
$input_id,
            
$label
        
);
        if ( ! empty( 
$args['tooltip'] ) ) {
            
$field_label .= sprintf' <i class="fa fa-question-circle wpforms-help-tooltip" title="%s"></i>'esc_attr$args['tooltip'] ) );
        }
        if ( ! empty( 
$args['after_tooltip'] ) ) {
            
$field_label .= $args['after_tooltip'];
        }
        if ( ! empty( 
$args['smarttags'] ) ) {

            
$type   = ! empty( $args['smarttags']['type'] ) ? esc_attr$args['smarttags']['type'] ) : 'fields';
            
$fields = ! empty( $args['smarttags']['fields'] ) ? esc_attr$args['smarttags']['fields'] ) : '';

            
$field_label .= '<a href="#" class="toggle-smart-tag-display" data-type="' $type '" data-fields="' $fields '"><i class="fa fa-tags"></i> <span>' esc_html__'Show Smart Tags''wpforms-lite' ) . '</span></a>';
        }
        
$field_label .= '</label>';
        if ( ! empty( 
$args['after_label'] ) ) {
            
$field_label .= $args['after_label'];
        }
    } else {
        
$field_label '';
    }
    
$field_close  = ! empty( $args['after'] ) ? $args['after'] : '';
    
$field_close .= '</div>';
    
$output       $field_open $field_label $output $field_close;

    
// Wash our hands.
    
if ( $echo ) {
        echo 
$output;
    } else {
        return 
$output;
    }
}

/**
 * Get settings block state, whether it's opened or closed.
 *
 * @since 1.4.8
 *
 * @param int $form_id
 * @param int $block_id
 * @param string $block_type
 *
 * @return string
 */
function wpforms_builder_settings_block_get_state$form_id$block_id$block_type ) {

    
$form_id    absint$form_id );
    
$block_id   absint$block_id );
    
$block_type sanitize_key$block_type );
    
$state      'opened';

    
$all_states get_user_metaget_current_user_id(), 'wpforms_builder_settings_collapsable_block_states'true );

    if ( empty( 
$all_states ) ) {
        return 
$state;
    }

    if (
        
is_array$all_states ) &&
        ! empty( 
$all_states$form_id ][ $block_type ][ $block_id ] ) &&
        
'closed' === $all_states$form_id ][ $block_type ][ $block_id ]
    ) {
        
$state 'closed';
    }

    
// Backward compatibility for notifications.
    
if ( 'notification' === $block_type && 'closed' !== $state ) {
        
$notification_states get_user_metaget_current_user_id(), 'wpforms_builder_notification_states'true );
    }

    if (
        ! empty( 
$notification_states$form_id ][ $block_id ] ) &&
        
'closed' === $notification_states$form_id ][ $block_id ]
    ) {
        
$state 'closed';
    }

    if ( 
'notification' === $block_type ) {
        
// Backward compatibility for notifications.
        
return apply_filters'wpforms_builder_notification_get_state'$state$form_id$block_id );
    }

    return 
apply_filters'wpforms_builder_settings_block_get_state'$state$form_id$block_id$block_type );
}

/**
 * Get the list of allowed tags, used in pair with wp_kses() function.
 * This allows getting rid of all potentially harmful HTML tags and attributes.
 *
 * @since 1.5.9
 *
 * @return array Allowed Tags.
 */
function wpforms_builder_preview_get_allowed_tags() {

    static 
$allowed_tags;

    if ( ! empty( 
$allowed_tags ) ) {
        return 
$allowed_tags;
    }

    
$atts = [ 'align''class''type''id''for''style''src''rel''href''target''value''width''height' ];
    
$tags = [ 'label''iframe''style''button''strong''small''table''span''abbr''code''pre''div''img''h1''h2''h3''h4''h5''h6''ol''ul''li''em''hr''br''th''tr''td''p''a''b''i' ];

    
$allowed_atts array_fill_keys$atts, [] );
    
$allowed_tags array_fill_keys$tags$allowed_atts );

    return 
$allowed_tags;
}
x

Windows NT KPTV 6.2 build 9200 (Windows Server 2012 Datacenter Edition) i586