C:\xampp\htdocs\landing\wp-content\plugins\wpforms-lite\includes\class-form.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
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
<?php

/**
 * All the form goodness and basics.
 *
 * Contains a bunch of helper methods as well.
 *
 * @since 1.0.0
 */
class WPForms_Form_Handler {

    
/**
     * Primary class constructor.
     *
     * @since 1.0.0
     */
    
public function __construct() {

        
// Register wpforms custom post type.
        
$this->register_cpt();

        
// Add wpforms to new-content admin bar menu.
        
add_action'admin_bar_menu', array( $this'admin_bar' ), 99 );

    }

    
/**
     * Register the custom post type to be used for forms.
     *
     * @since 1.0.0
     */
    
public function register_cpt() {

        
// Custom post type arguments, which can be filtered if needed.
        
$args apply_filters(
            
'wpforms_post_type_args',
            array(
                
'label'               => 'WPForms',
                
'public'              => false,
                
'exclude_from_search' => true,
                
'show_ui'             => false,
                
'show_in_admin_bar'   => false,
                
'rewrite'             => false,
                
'query_var'           => false,
                
'can_export'          => false,
                
'supports'            => array( 'title' ),
                
'capability_type'     => 'wpforms_form'// Not using 'capability_type' anywhere. It just has to be custom for security reasons.
                
'map_meta_cap'        => false// Don't let WP to map meta caps to have a granular control over this process via 'map_meta_cap' filter.
            
)
        );

        
// Register the post type.
        
register_post_type'wpforms'$args );
    }

    
/**
     * Add "WPForms" item to new-content admin bar menu item.
     *
     * @since 1.1.7.2
     *
     * @param WP_Admin_Bar $wp_admin_bar WP_Admin_Bar instance, passed by reference.
     */
    
public function admin_bar$wp_admin_bar ) {

        if ( ! 
is_admin_bar_showing() || ! wpforms_current_user_can'create_forms' ) ) {
            return;
        }

        
$args = array(
            
'id'     => 'wpforms',
            
'title'  => esc_html__'WPForms''wpforms-lite' ),
            
'href'   => admin_url'admin.php?page=wpforms-builder' ),
            
'parent' => 'new-content',
        );
        
$wp_admin_bar->add_node$args );
    }

    
/**
     * Fetch forms.
     *
     * @since 1.0.0
     *
     * @param mixed $id   Form ID.
     * @param array $args Additional arguments array.
     *
     * @return array|bool|null|WP_Post
     */
    
public function get$id ''$args = array() ) {

        
$args apply_filters'wpforms_get_form_args'$args$id );

        if ( 
false === $id ) {
            return 
false;
        }

        
$forms = empty( $id ) ? $this->get_multiple$args ) : $this->get_single$id$args );

        if ( empty( 
$forms ) ) {
            return 
false;
        }

        return 
$forms;
    }

    
/**
     * Fetch a single form.
     *
     * @since 1.5.8
     *
     * @param string|int $id   Form ID.
     * @param array      $args Additional arguments array.
     *
     * @return array|bool|null|WP_Post
     */
    
protected function get_single$id ''$args = array() ) {

        
$args apply_filters'wpforms_get_single_form_args'$args$id );

        if ( ! isset( 
$args['cap'] ) && wpforms()->get'access' )->init_allowed() ) {
            
$args['cap'] = 'view_form_single';
        }

         if ( ! empty( 
$args['cap'] ) && ! wpforms_current_user_can$args['cap'], $id ) ) {
             return 
false;
         }

        
// @todo add $id array support
        // If ID is provided, we get a single form
        
$form get_postabsint$id ) );

        if ( ! empty( 
$args['content_only'] ) ) {
            
$form = ! empty( $form ) && 'wpforms' === $form->post_type wpforms_decode$form->post_content ) : false;
        }

        return 
$form;
    }

    
/**
     * Fetch multiple forms.
     *
     * @since 1.5.8
     *
     * @param array $args Additional arguments array.
     *
     * @return array
     */
    
protected function get_multiple$args = array() ) {

        
$args apply_filters'wpforms_get_multiple_forms_args'$args );

        
// No ID provided, get multiple forms.
        
$defaults = array(
            
'orderby'       => 'id',
            
'order'         => 'ASC',
            
'no_found_rows' => true,
            
'nopaging'      => true,
        );

        
$args wp_parse_args$args$defaults );

        
$args['post_type'] = 'wpforms';

        return 
get_posts$args );
    }

    
/**
     * Delete forms.
     *
     * @since 1.0.0
     *
     * @param array $ids Form IDs.
     *
     * @return bool
     */
    
public function delete$ids = array() ) {

        if ( ! 
is_array$ids ) ) {
            
$ids = array( $ids );
        }

        
$ids array_map'absint'$ids );

        foreach ( 
$ids as $id ) {

            
// Check for permissions.
            
if ( ! wpforms_current_user_can'delete_form_single'$id ) ) {
                return 
false;
            }

            if ( 
class_exists'WPForms_Entry_Handler'false ) ) {
                
wpforms()->entry->delete_by'form_id'$id );
                
wpforms()->entry_meta->delete_by'form_id'$id );
                
wpforms()->entry_fields->delete_by'form_id'$id );
            }

            
$form wp_delete_post$idtrue );

            if ( ! 
$form ) {
                return 
false;
            }
        }

        
do_action'wpforms_delete_form'$ids );

        return 
true;
    }

    
/**
     * Add new form.
     *
     * @since 1.0.0
     *
     * @param string $title Form title.
     * @param array  $args  Additional arguments.
     * @param array  $data  Form data.
     *
     * @return mixed
     */
    
public function add$title ''$args = array(), $data = array() ) {

        
// Must have a title.
        
if ( empty( $title ) ) {
            return 
false;
        }

        
// Check for permissions.
        
if ( ! wpforms_current_user_can'create_forms' ) ) {
            return 
false;
        }

        
// This filter breaks forms if they contain HTML.
        
remove_filter'content_save_pre''balanceTags'50 );

        
// Add filter of the link rel attr to avoid JSON damage.
        
add_filter'wp_targeted_link_rel''__return_empty_string'50);

        
$args apply_filters'wpforms_create_form_args'$args$data );

        
$form_content = array(
            
'field_id' => '0',
            
'settings' => array(
                
'form_title' => sanitize_text_field$title ),
                
'form_desc'  => '',
            ),
        );

        
// Prevent $args['post_content'] from overwriting predefined $form_content.
        // Typically it happens if the form was created with a form template and a user was not redirected to a form editing screen afterwards.
        // This is only possible if a user has 'wpforms_create_forms' and no 'wpforms_edit_own_forms' capability.
        
if ( isset( $args['post_content'] ) && is_arraywpforms_decode$args['post_content'] ) ) ) {
            
$args['post_content'] = wpforms_encodearray_replace_recursive$form_contentwpforms_decode$args['post_content'] ) ) );
        }

        
// Merge args and create the form.
        
$form wp_parse_args(
            
$args,
            array(
                
'post_title'   => esc_html$title ),
                
'post_status'  => 'publish',
                
'post_type'    => 'wpforms',
                
'post_content' => wpforms_encode$form_content ),
            )
        );

        
$form_id wp_insert_post$form );

        
// If user has no editing permissions the form considered to be created out of the WPForms form builder's context.
        
if ( ! wpforms_current_user_can'edit_form_single'$form_id ) ) {
            
$data['builder'] = false;
        }

        
// If the form is created outside the context of the WPForms form
        // builder, then we define some additional default values.
        
if ( ! empty( $form_id ) && isset( $data['builder'] ) && $data['builder'] === false ) {
            
$form_data                                       json_decodewp_unslash$form['post_content'] ), true );
            
$form_data['id']                                 = $form_id;
            
$form_data['settings']['submit_text']            = esc_html__'Submit''wpforms-lite' );
            
$form_data['settings']['submit_text_processing'] = esc_html__'Sending...''wpforms-lite' );
            
$form_data['settings']['notification_enable']    = '1';
            
$form_data['settings']['notifications']          = array(
                
'1' => array(
                    
'email'          => '{admin_email}',
                    
'subject'        => sprintfesc_html__'New Entry: %s''wpforms-lite' ), esc_html$title ) ),
                    
'sender_name'    => get_bloginfo'name' ),
                    
'sender_address' => '{admin_email}',
                    
'replyto'        => '{field_id="1"}',
                    
'message'        => '{all_fields}',
                ),
            );
            
$form_data['settings']['confirmations']          = array(
                
'1' => array(
                    
'type'           => 'message',
                    
'message'        => esc_html__'Thanks for contacting us! We will be in touch with you shortly.''wpforms-lite' ),
                    
'message_scroll' => '1',
                ),
            );

            
$this->update$form_id$form_data, array( 'cap' => 'create_forms' ) );
        }

        
do_action'wpforms_create_form'$form_id$form$data );

        return 
$form_id;
    }

    
/**
     * Update form.
     *
     * @since    1.0.0
     *
     * @param string|int $form_id Form ID.
     * @param array      $data    Data retrieved from $_POST and processed.
     * @param array      $args    Empty by default, may have custom data not intended to be saved.
     *
     * @return mixed
     * @internal param string $title
     */
    
public function update$form_id ''$data = array(), $args = array() ) {

        if ( empty( 
$data ) ) {
            return 
false;
        }

        if ( empty( 
$form_id ) && isset( $data['id'] ) ) {
            
$form_id $data['id'];
        }

        if ( ! isset( 
$args['cap'] ) ) {
            
$args['cap'] = 'edit_form_single';
        }

        if ( ! empty( 
$args['cap'] ) && ! wpforms_current_user_can$args['cap'], $form_id ) ) {
            return 
false;
        }

        
// This filter breaks forms if they contain HTML.
        
remove_filter'content_save_pre''balanceTags'50 );

        
// Add filter of the link rel attr to avoid JSON damage.
        
add_filter'wp_targeted_link_rel''__return_empty_string'50);

        
$data wp_unslash$data );

        
$title = empty( $data['settings']['form_title'] ) ? get_the_title$form_id ) : $data['settings']['form_title'];
        
$desc  = empty( $data['settings']['form_desc'] ) ? '' $data['settings']['form_desc'];

        
$data['field_id'] = ! empty( $data['field_id'] ) ? absint$data['field_id'] ) : '0';

        
// Preserve form meta.
        
$meta $this->get_meta$form_id );
        if ( 
$meta ) {
            
$data['meta'] = $meta;
        }

        
// Preserve fields meta.
        
if ( isset( $data['fields'] ) ) {
            
$data['fields'] = $this->update__preserve_fields_meta$data['fields'], $form_id );
        }

        
// Sanitize - don't allow tags for users who do not have appropriate cap.
        // If we don't do this, forms for these users can get corrupt due to
        // conflicts with wp_kses().
        
if ( ! current_user_can'unfiltered_html' ) ) {
            
$data map_deep$data'wp_strip_all_tags' );
        }

        
// Sanitize notifications names.
        
if ( isset( $data['settings']['notifications'] ) ) {
            
$data['settings']['notifications'] = $this->update__sanitize_notifications_names$data['settings']['notifications'] );
        }
        unset( 
$notification );

        
$form apply_filters(
            
'wpforms_save_form_args',
            array(
                
'ID'           => $form_id,
                
'post_title'   => esc_html$title ),
                
'post_excerpt' => $desc,
                
'post_content' => wpforms_encode$data ),
            ),
            
$data,
            
$args
        
);

        
$_form_id wp_update_post$form );

        
do_action'wpforms_save_form'$_form_id$form );

        return 
$_form_id;
    }

    
/**
     * Preserve fields meta in 'update' method.
     *
     * @since 1.5.8
     *
     * @param array      $fields  Form fields.
     * @param string|int $form_id Form ID.
     *
     * @return array
     */
    
protected function update__preserve_fields_meta$fields$form_id ) {

        foreach ( 
$fields as $i => $field_data ) {
            if ( isset( 
$field_data['id'] ) ) {
                
$field_meta $this->get_field_meta$form_id$field_data['id'] );
                if ( 
$field_meta ) {
                    
$fields$i ]['meta'] = $field_meta;
                }
            }
        }

        return 
$fields;
    }

    
/**
     * Sanitize notifications names meta in 'update' method.
     *
     * @since 1.5.8
     *
     * @param array $notifications Form notifications.
     *
     * @return array
     */
    
protected function update__sanitize_notifications_names$notifications ) {

        foreach ( 
$notifications as $id => &$notification ) {
            if ( ! empty( 
$notification['notification_name'] ) ) {
                
$notification['notification_name'] = sanitize_text_field$notification['notification_name'] );
            }
        }

        return 
$notifications;
    }

    
/**
     * Duplicate forms.
     *
     * @since 1.1.4
     *
     * @param array $ids Form IDs to duplicate.
     *
     * @return bool
     */
    
public function duplicate$ids = array() ) {

        
// Check for permissions.
        
if ( ! wpforms_current_user_can'create_forms' ) ) {
            return 
false;
        }

        
// Add filter of the link rel attr to avoid JSON damage.
        
add_filter'wp_targeted_link_rel''__return_empty_string'50);

        
// This filter breaks forms if they contain HTML.
        
remove_filter'content_save_pre''balanceTags'50 );

        if ( ! 
is_array$ids ) ) {
            
$ids = array( $ids );
        }

        
$ids array_map'absint'$ids );

        foreach ( 
$ids as $id ) {

            
// Get original entry.
            
$form get_post$id );

            if ( ! 
wpforms_current_user_can'view_form_single'$id ) ) {
                return 
false;
            }

            
// Confirm form exists.
            
if ( ! $form || empty( $form ) ) {
                return 
false;
            }

            
// Get the form data.
            
$new_form_data wpforms_decode$form->post_content );

            
// Remove form ID from title if present.
            
$new_form_data['settings']['form_title'] = str_replace'(ID #' absint$id ) . ')'''$new_form_data['settings']['form_title'] );

            
// Create the duplicate form.
            
$new_form    = array(
                
'post_content' => wpforms_encode$new_form_data ),
                
'post_excerpt' => $form->post_excerpt,
                
'post_status'  => $form->post_status,
                
'post_title'   => $new_form_data['settings']['form_title'],
                
'post_type'    => $form->post_type,
            );
            
$new_form_id wp_insert_post$new_form );

            if ( ! 
$new_form_id || is_wp_error$new_form_id ) ) {
                return 
false;
            }

            
// Set new form name.
            
$new_form_data['settings']['form_title'] .= ' (ID #' absint$new_form_id ) . ')';

            
// Set new form ID.
            
$new_form_data['id'] = absint$new_form_id );

            
// Update new duplicate form.
            
$new_form_id $this->update$new_form_id$new_form_data, array( 'cap' => 'create_forms' ) );

            if ( ! 
$new_form_id || is_wp_error$new_form_id ) ) {
                return 
false;
            }
        }

        return 
true;
    }

    
/**
     * Get the next available field ID and increment by one.
     *
     * @since 1.0.0
     *
     * @param string|int $form_id Form ID.
     * @param array      $args    Additional arguments.
     *
     * @return mixed int or false
     */
    
public function next_field_id$form_id$args = array() ) {

        if ( empty( 
$form_id ) ) {
            return 
false;
        }

        
$defaults = array(
            
'content_only' => true,
        );

        if ( isset( 
$args['cap'] ) ) {
            
$defaults['cap'] = $args['cap'];
        }

        
$form $this->get$form_id$defaults );

        if ( empty( 
$form ) ) {
            return 
false;
        }

        if ( ! empty( 
$form['field_id'] ) ) {

            
$field_id absint$form['field_id'] );

            if ( ! empty( 
$form['fields'] ) && maxarray_keys$form['fields'] ) ) > $field_id ) {
                
$field_id maxarray_keys$form['fields'] ) ) + 1;
            }

            
$form['field_id'] = $field_id 1;

        } else {
            
$field_id         '0';
            
$form['field_id'] = '1';
        }

        
$this->update$form_id$form );

        return 
$field_id;
    }

    
/**
     * Get private meta information for a form.
     *
     * @since 1.0.0
     *
     * @param string|int $form_id Form ID.
     * @param string     $field   Field.
     * @param array      $args    Additional arguments.
     *
     * @return false|array
     */
    
public function get_meta$form_id$field ''$args = array() ) {

        if ( empty( 
$form_id ) ) {
            return 
false;
        }

        
$defaults = array(
            
'content_only' => true,
        );

        if ( isset( 
$args['cap'] ) ) {
            
$defaults['cap'] = $args['cap'];
        }

        
$data $this->get$form_id$defaults );

        if ( isset( 
$data['meta'] ) ) {
            if ( empty( 
$field ) ) {
                return 
$data['meta'];
            } elseif ( isset( 
$data['meta'][ $field ] ) ) {
                return 
$data['meta'][ $field ];
            }
        }

        return 
false;
    }

    
/**
     * Update or add form meta information to a form.
     *
     * @since 1.4.0
     *
     * @param string|int $form_id    Form ID.
     * @param string     $meta_key   Meta key.
     * @param mixed      $meta_value Meta value.
     * @param array      $args       Additional arguments.
     *
     * @return bool
     */
    
public function update_meta$form_id$meta_key$meta_value$args = array() ) {

        if ( empty( 
$form_id ) || empty( $meta_key ) ) {
            return 
false;
        }

        
// Add filter of the link rel attr to avoid JSON damage.
        
add_filter'wp_targeted_link_rel''__return_empty_string'50);

        
// This filter breaks forms if they contain HTML.
        
remove_filter'content_save_pre''balanceTags'50 );

        if ( ! isset( 
$args['cap'] ) ) {
            
$args['cap'] = 'edit_form_single';
        }

        
$form $this->get_singleabsint$form_id ), $args );

        if ( empty( 
$form ) ) {
            return 
false;
        }

        
$data     wpforms_decode$form->post_content );
        
$meta_key wpforms_sanitize_key$meta_key );

        
$data['meta'][ $meta_key ] = $meta_value;

        
$form    = array(
            
'ID'           => $form_id,
            
'post_content' => wpforms_encode$data ),
        );
        
$form    apply_filters'wpforms_update_form_meta_args'$form$data );
        
$form_id wp_update_post$form );

        
do_action'wpforms_update_form_meta'$form_id$form$meta_key$meta_value );

        return 
$form_id;
    }

    
/**
     * Delete form meta information from a form.
     *
     * @since 1.4.0
     *
     * @param string|int $form_id  Form ID.
     * @param string     $meta_key Meta key.
     * @param array      $args     Additional arguments.
     *
     * @return bool
     */
    
public function delete_meta$form_id$meta_key$args = array() ) {

        if ( empty( 
$form_id ) || empty( $meta_key ) ) {
            return 
false;
        }

        
// Add filter of the link rel attr to avoid JSON damage.
        
add_filter'wp_targeted_link_rel''__return_empty_string'50);

        
// This filter breaks forms if they contain HTML.
        
remove_filter'content_save_pre''balanceTags'50 );

        if ( ! isset( 
$args['cap'] ) ) {
            
$args['cap'] = 'edit_form_single';
        }

        
$form $this->get_singleabsint$form_id ), $args );

        if ( empty( 
$form ) ) {
            return 
false;
        }

        
$data     wpforms_decode$form->post_content );
        
$meta_key wpforms_sanitize_key$meta_key );

        unset( 
$data['meta'][ $meta_key ] );

        
$form    = array(
            
'ID'           => $form_id,
            
'post_content' => wpforms_encode$data ),
        );
        
$form    apply_filters'wpforms_delete_form_meta_args'$form$data );
        
$form_id wp_update_post$form );

        
do_action'wpforms_delete_form_meta'$form_id$form$meta_key );

        return 
$form_id;
    }

    
/**
     * Get private meta information for a form field.
     *
     * @since 1.0.0
     *
     * @param string|int $form_id  Form ID.
     * @param string     $field_id Field ID.
     * @param array      $args     Additional arguments.
     *
     * @return array|bool
     */
    
public function get_field$form_id$field_id ''$args = array() ) {

        if ( empty( 
$form_id ) ) {
            return 
false;
        }

        
$defaults = array(
            
'content_only' => true,
        );

        if ( isset( 
$args['cap'] ) ) {
            
$defaults['cap'] = $args['cap'];
        }

        
$data $this->get$form_id$defaults );

        return isset( 
$data['fields'][ $field_id ] ) ? $data['fields'][ $field_id ] : false;
    }

    
/**
     * Get private meta information for a form field.
     *
     * @since 1.0.0
     *
     * @param string|int $form_id  Form ID.
     * @param string     $field_id Field ID.
     * @param array      $args     Additional arguments.
     *
     * @return array|bool
     */
    
public function get_field_meta$form_id$field_id ''$args = array() ) {

        
$field $this->get_field$form_id$field_id$args );
        if ( ! 
$field ) {
            return 
false;
        }

        return isset( 
$field['meta'] ) ? $field['meta'] : false;
    }
}
x

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