C:\xampp\htdocs\landing\wp-content\plugins\wpforms-lite\includes\admin\builder\class-builder.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
<?php

/**
 * Form builder that contains magic.
 *
 * @since 1.0.0
 */
class WPForms_Builder {

    
/**
     * One is the loneliest number that you'll ever do.
     *
     * @since 1.4.4.1
     *
     * @var object
     */
    
private static $instance;

    
/**
     * Current view (panel).
     *
     * @since 1.0.0
     * @var string
     */
    
public $view;

    
/**
     * Available panels.
     *
     * @since 1.0.0
     * @var array
     */
    
public $panels;

    
/**
     * Current form.
     *
     * @since 1.0.0
     * @var object
     */
    
public $form;

    
/**
     * Form data and settings.
     *
     * @since 1.4.4.1
     * @var array
     */
    
public $form_data;

    
/**
     * Current template information.
     *
     * @since 1.0.0
     * @var array
     */
    
public $template;

    
/**
     * Main Instance.
     *
     * @since 1.4.4.1
     *
     * @return WPForms_Builder
     */
    
public static function instance() {

        if ( ! isset( 
self::$instance ) && ! ( self::$instance instanceof WPForms_Builder ) ) {

            
self::$instance = new WPForms_Builder();

            
add_action'admin_init', array( self::$instance'init' ), 10 );
        }
        return 
self::$instance;
    }

    
/**
     * Determine if the user is viewing the builder, if so, party on.
     *
     * @since 1.0.0
     */
    
public function init() {

        
// Check what page we are on.
        
$page = isset( $_GET['page'] ) ? $_GET['page'] : '';

        
// Only load if we are actually on the builder.
        
if ( 'wpforms-builder' === $page ) {

            
// Load form if found.
            
$form_id = isset( $_GET['form_id'] ) ? absint$_GET['form_id'] ) : false;

            if ( 
$form_id ) {
                
// Default view for with an existing form is fields panel.
                
$this->view = isset( $_GET['view'] ) ? $_GET['view'] : 'fields';
            } else {
                
// Default view for new field is the setup panel.
                
$this->view = isset( $_GET['view'] ) ? $_GET['view'] : 'setup';
            }

            if ( 
'setup' === $this->view && ! wpforms_current_user_can'create_forms' ) ) {
                
wp_dieesc_html__'Sorry, you are not allowed to create new forms.''wpforms-lite' ), 403 );
            }

            if ( 
'fields' === $this->view && ! wpforms_current_user_can'edit_form_single'$form_id ) ) {
                
wp_dieesc_html__'Sorry, you are not allowed to edit this form.''wpforms-lite' ), 403 );
            }

            
// Fetch form.
            
$this->form      wpforms()->form->get$form_id );
            
$this->form_data $this->form wpforms_decode$this->form->post_content ) : false;

            
// Fetch template information.
            
$this->template apply_filters'wpforms_builder_template_active', array(), $this->form );

            
// Load builder panels.
            
$this->load_panels();

            
add_action'admin_head', array( $this'admin_head' ) );
            
add_action'admin_enqueue_scripts', array( $this'enqueues' ) );
            
add_action'admin_print_footer_scripts', array( $this'footer_scripts' ) );
            
add_action'wpforms_admin_page', array( $this'output' ) );

            
// Provide hook for addons.
            
do_action'wpforms_builder_init'$this->view );

            
add_filter'teeny_mce_plugins', array( $this'tinymce_buttons' ) );
        }
    }

    
/**
     * Define TinyMCE buttons to use with our fancy editor instances.
     *
     * @since 1.0.3
     *
     * @param array $buttons List of default buttons.
     *
     * @return array
     */
    
public function tinymce_buttons$buttons ) {

        
$buttons = array( 'colorpicker''lists''wordpress''wpeditimage''wplink' );

        return 
$buttons;
    }

    
/**
     * Load panels.
     *
     * @since 1.0.0
     */
    
public function load_panels() {

        
// Base class and functions.
        
require_once WPFORMS_PLUGIN_DIR 'includes/admin/builder/panels/class-base.php';

        
$this->panels apply_filters'wpforms_builder_panels', array(
            
'setup',
            
'fields',
            
'settings',
            
'providers',
            
'payments',
        ) );

        foreach ( 
$this->panels as $panel ) {
            
$panel sanitize_file_name$panel );

            if ( 
file_existsWPFORMS_PLUGIN_DIR 'includes/admin/builder/panels/class-' $panel '.php' ) ) {
                require_once 
WPFORMS_PLUGIN_DIR 'includes/admin/builder/panels/class-' $panel '.php';
            } elseif ( 
file_existsWPFORMS_PLUGIN_DIR 'pro/includes/admin/builder/panels/class-' $panel '.php' ) ) {
                require_once 
WPFORMS_PLUGIN_DIR 'pro/includes/admin/builder/panels/class-' $panel '.php';
            }
        }
    }

    
/**
     * Admin head area inside the form builder.
     *
     * @since 1.4.6
     */
    
public function admin_head() {

        
do_action'wpforms_builder_admin_head'$this->view );
    }

    
/**
     * Enqueue assets for the builder.
     *
     * @since 1.0.0
     */
    
public function enqueues() {

        
// Remove conflicting scripts.
        
wp_deregister_script'serialize-object' );
        
wp_deregister_script'wpclef-ajax-settings' );

        
do_action'wpforms_builder_enqueues_before'$this->view );

        
$min wpforms_get_min_suffix();

        
/*
         * CSS.
         */
        
wp_enqueue_style(
            
'wpforms-font-awesome',
            
WPFORMS_PLUGIN_URL 'assets/css/font-awesome.min.css',
            
null,
            
'4.7.0'
        
);

        
wp_enqueue_style(
            
'tooltipster',
            
WPFORMS_PLUGIN_URL 'assets/css/tooltipster.css',
            
null,
            
'4.2.6'
        
);

        
wp_enqueue_style(
            
'jquery-confirm',
            
WPFORMS_PLUGIN_URL 'assets/css/jquery-confirm.min.css',
            
null,
            
'3.3.2'
        
);

        
wp_enqueue_style(
            
'minicolors',
            
WPFORMS_PLUGIN_URL 'assets/css/jquery.minicolors.css',
            
null,
            
'2.2.6'
        
);

        
wp_enqueue_style(
            
'wpforms-builder-legacy',
            
WPFORMS_PLUGIN_URL 'assets/css/admin-builder.css',
            
null,
            
WPFORMS_VERSION
        
);

        
wp_enqueue_style(
            
'wpforms-builder',
            
WPFORMS_PLUGIN_URL "assets/css/builder{$min}.css",
            
null,
            
WPFORMS_VERSION
        
);

        
/*
         * JavaScript.
         */
        
wp_enqueue_media();
        
wp_enqueue_script'jquery-ui-sortable' );
        
wp_enqueue_script'jquery-ui-draggable' );
        
wp_enqueue_script'wp-util' );

        
wp_enqueue_script(
            
'tooltipster',
            
WPFORMS_PLUGIN_URL 'assets/js/jquery.tooltipster.min.js',
            array( 
'jquery' ),
            
'4.2.6'
        
);

        
wp_enqueue_script(
            
'jquery-confirm',
            
WPFORMS_PLUGIN_URL 'assets/js/jquery.jquery-confirm.min.js',
            array( 
'jquery' ),
            
'3.3.2'
        
);

        
wp_enqueue_script(
            
'matchheight',
            
WPFORMS_PLUGIN_URL 'assets/js/jquery.matchHeight-min.js',
            array( 
'jquery' ),
            
'0.7.0'
        
);

        
wp_enqueue_script(
            
'insert-at-caret',
            
WPFORMS_PLUGIN_URL 'assets/js/jquery.insert-at-caret.min.js',
            array( 
'jquery' ),
            
'1.1.4'
        
);

        
wp_enqueue_script(
            
'minicolors',
            
WPFORMS_PLUGIN_URL 'assets/js/jquery.minicolors.min.js',
            array( 
'jquery' ),
            
'2.2.6'
        
);

        
wp_enqueue_script(
            
'conditionals',
            
WPFORMS_PLUGIN_URL 'assets/js/jquery.conditionals.min.js',
            array( 
'jquery' ),
            
'1.0.0'
        
);

        
wp_enqueue_script(
            
'choicesjs',
            
WPFORMS_PLUGIN_URL 'assets/js/choices.min.js',
            array(),
            
'9.0.1'
        
);

        
wp_enqueue_script(
            
'listjs',
            
WPFORMS_PLUGIN_URL 'assets/js/list.min.js',
            array( 
'jquery' ),
            
'1.5.0'
        
);

        
wp_enqueue_script(
            
'dom-purify',
            
WPFORMS_PLUGIN_URL 'assets/js/purify.min.js',
            [],
            
'2.2.6'
        
);

        if ( 
wp_is_mobile() ) {
            
wp_enqueue_script'jquery-touch-punch' );
        }

        
wp_enqueue_script(
            
'wpforms-utils',
            
WPFORMS_PLUGIN_URL 'assets/js/admin-utils.js',
            array( 
'jquery''dom-purify' ),
            
WPFORMS_VERSION
        
);

        
wp_enqueue_script(
            
'wpforms-builder',
            
WPFORMS_PLUGIN_URL 'assets/js/admin-builder.js',
            array( 
'wpforms-utils''wpforms-admin-builder-templates''jquery-ui-sortable''jquery-ui-draggable''tooltipster''jquery-confirm' ),
            
WPFORMS_VERSION
        
);

        
wp_enqueue_script(
            
'wpforms-admin-builder-templates',
            
WPFORMS_PLUGIN_URL "assets/js/components/admin/builder/templates{$min}.js",
            array( 
'wp-util' ),
            
WPFORMS_VERSION,
            
true
        
);

        
$strings = array(
            
'and'                            => esc_html__'AND''wpforms-lite' ),
            
'ajax_url'                       => admin_url'admin-ajax.php' ),
            
'bulk_add_button'                => esc_html__'Add New Choices''wpforms-lite' ),
            
'bulk_add_show'                  => esc_html__'Bulk Add''wpforms-lite' ),
            
'are_you_sure_to_close'          => esc_html__'Are you sure you want to leave? You have unsaved changes''wpforms-lite' ),
            
'bulk_add_hide'                  => esc_html__'Hide Bulk Add''wpforms-lite' ),
            
'bulk_add_heading'               => esc_html__'Add Choices (one per line)''wpforms-lite' ),
            
'bulk_add_placeholder'           => esc_html__"Blue\nRed\nGreen"'wpforms-lite' ),
            
'bulk_add_presets_show'          => esc_html__'Show presets''wpforms-lite' ),
            
'bulk_add_presets_hide'          => esc_html__'Hide presets''wpforms-lite' ),
            
'date_select_day'                => 'DD',
            
'date_select_month'              => 'MM',
            
'debug'                          => wpforms_debug(),
            
'dynamic_choice_limit'           => esc_html__'The {source} {type} contains over {limit} items ({total}). This may make the field difficult for your visitors to use and/or cause the form to be slow.''wpforms-lite' ),
            
'cancel'                         => esc_html__'Cancel''wpforms-lite' ),
            
'ok'                             => esc_html__'OK''wpforms-lite' ),
            
'close'                          => esc_html__'Close''wpforms-lite' ),
            
'conditionals_change'            => esc_html__'Due to form changes, conditional logic rules have been removed or updated:''wpforms-lite' ),
            
'conditionals_disable'           => esc_html__'Are you sure you want to disable conditional logic? This will remove the rules for this field or setting.''wpforms-lite' ),
            
'field'                          => esc_html__'Field''wpforms-lite' ),
            
'field_locked'                   => esc_html__'Field Locked''wpforms-lite' ),
            
'field_locked_msg'               => esc_html__'This field cannot be deleted or duplicated.''wpforms-lite' ),
            
'fields_available'               => esc_html__'Available Fields''wpforms-lite' ),
            
'fields_unavailable'             => esc_html__'No fields available''wpforms-lite' ),
            
'heads_up'                       => esc_html__'Heads up!''wpforms-lite' ),
            
'image_placeholder'              => WPFORMS_PLUGIN_URL 'assets/images/placeholder-200x125.png',
            
'nonce'                          => wp_create_nonce'wpforms-builder' ),
            
'no_email_fields'                => esc_html__'No email fields''wpforms-lite' ),
            
'notification_delete'            => esc_html__'Are you sure you want to delete this notification?''wpforms-lite' ),
            
'notification_prompt'            => esc_html__'Enter a notification name''wpforms-lite' ),
            
'notification_ph'                => esc_html__'Eg: User Confirmation''wpforms-lite' ),
            
'notification_error'             => esc_html__'You must provide a notification name''wpforms-lite' ),
            
'notification_def_name'          => esc_html__'Default Notification''wpforms-lite' ),
            
'confirmation_delete'            => esc_html__'Are you sure you want to delete this confirmation?''wpforms-lite' ),
            
'confirmation_prompt'            => esc_html__'Enter a confirmation name''wpforms-lite' ),
            
'confirmation_ph'                => esc_html__'Eg: Alternative Confirmation''wpforms-lite' ),
            
'confirmation_error'             => esc_html__'You must provide a confirmation name''wpforms-lite' ),
            
'confirmation_def_name'          => esc_html__'Default Confirmation''wpforms-lite' ),
            
'save'                           => esc_html__'Save''wpforms-lite' ),
            
'saving'                         => esc_html__'Saving ...''wpforms-lite' ),
            
'saved'                          => esc_html__'Saved!''wpforms-lite' ),
            
'save_exit'                      => esc_html__'Save and Exit''wpforms-lite' ),
            
'save_embed'                     => esc_html__'Save and Embed''wpforms-lite' ),
            
'saved_state'                    => '',
            
'layout_selector_show'           => esc_html__'Show Layouts''wpforms-lite' ),
            
'layout_selector_hide'           => esc_html__'Hide Layouts''wpforms-lite' ),
            
'layout_selector_layout'         => esc_html__'Select your layout''wpforms-lite' ),
            
'layout_selector_column'         => esc_html__'Select your column''wpforms-lite' ),
            
'loading'                        => esc_html__'Loading''wpforms-lite' ),
            
'template_name'                  => ! empty( $this->template['name'] ) ? $this->template['name'] : '',
            
'template_slug'                  => ! empty( $this->template['slug'] ) ? $this->template['slug'] : '',
            
'template_modal_title'           => ! empty( $this->template['modal']['title'] ) ? $this->template['modal']['title'] : '',
            
'template_modal_msg'             => ! empty( $this->template['modal']['message'] ) ? $this->template['modal']['message'] : '',
            
'template_modal_display'         => ! empty( $this->template['modal_display'] ) ? $this->template['modal_display'] : '',
            
'template_select'                => esc_html__'Use Template''wpforms-lite' ),
            
'template_confirm'               => esc_html__'Changing templates on an existing form will DELETE existing form fields. Are you sure you want apply the new template?''wpforms-lite' ),
            
'embed'                          => esc_html__'Embed''wpforms-lite' ),
            
'exit'                           => esc_html__'Exit''wpforms-lite' ),
            
'exit_url'                       => wpforms_current_user_can'view_forms' ) ? admin_url'admin.php?page=wpforms-overview' ) : admin_url(),
            
'exit_confirm'                   => esc_html__'Your form contains unsaved changes. Would you like to save your changes first.''wpforms-lite' ),
            
'delete_confirm'                 => esc_html__'Are you sure you want to delete this field?''wpforms-lite' ),
            
'duplicate_confirm'              => esc_html__'Are you sure you want to duplicate this field?''wpforms-lite' ),
            
'duplicate_copy'                 => esc_html__'(copy)''wpforms-lite' ),
            
'error_title'                    => esc_html__'Please enter a form name.''wpforms-lite' ),
            
'error_choice'                   => esc_html__'This item must contain at least one choice.''wpforms-lite' ),
            
'off'                            => esc_html__'Off''wpforms-lite' ),
            
'on'                             => esc_html__'On''wpforms-lite' ),
            
'or'                             => esc_html__'or''wpforms-lite' ),
            
'other'                          => esc_html__'Other''wpforms-lite' ),
            
'operator_is'                    => esc_html__'is''wpforms-lite' ),
            
'operator_is_not'                => esc_html__'is not''wpforms-lite' ),
            
'operator_empty'                 => esc_html__'empty''wpforms-lite' ),
            
'operator_not_empty'             => esc_html__'not empty''wpforms-lite' ),
            
'operator_contains'              => esc_html__'contains''wpforms-lite' ),
            
'operator_not_contains'          => esc_html__'does not contain''wpforms-lite' ),
            
'operator_starts'                => esc_html__'starts with''wpforms-lite' ),
            
'operator_ends'                  => esc_html__'ends with''wpforms-lite' ),
            
'operator_greater_than'          => esc_html__'greater than''wpforms-lite' ),
            
'operator_less_than'             => esc_html__'less than''wpforms-lite' ),
            
'payments_entries_off'           => esc_html__'Entry storage is currently disabled, but is required to accept payments. Please enable in your form settings.''wpforms-lite' ),
            
'payments_on_entries_off'        => esc_html__'This form is currently accepting payments. Entry storage is required to accept payments. To disable entry storage, please first disable payments.''wpforms-lite' ),
            
'previous'                       => esc_html__'Previous''wpforms-lite' ),
            
'provider_required_flds'         => esc_html__"In order to complete your form's {provider} integration, please check that the dropdowns for all required (*) List Fields have been filled out."'wpforms-lite' ),
            
'rule_create'                    => esc_html__'Create new rule''wpforms-lite' ),
            
'rule_create_group'              => esc_html__'Add new group''wpforms-lite' ),
            
'rule_delete'                    => esc_html__'Delete rule''wpforms-lite' ),
            
'smart_tags'                     => wpforms()->smart_tags->get(),
            
'smart_tags_disabled_for_fields' => array( 'entry_id' ),
            
'smart_tags_show'                => esc_html__'Show Smart Tags''wpforms-lite' ),
            
'smart_tags_hide'                => esc_html__'Hide Smart Tags''wpforms-lite' ),
            
'select_field'                   => esc_html__'--- Select Field ---''wpforms-lite' ),
            
'select_choice'                  => esc_html__'--- Select Choice ---''wpforms-lite' ),
            
'upload_image_title'             => esc_html__'Upload or Choose Your Image''wpforms-lite' ),
            
'upload_image_button'            => esc_html__'Use Image''wpforms-lite' ),
            
'upload_image_remove'            => esc_html__'Remove Image''wpforms-lite' ),
            
'provider_add_new_acc_btn'       => esc_html__'Add''wpforms-lite' ),
            
'pro'                            => wpforms()->pro,
            
'is_gutenberg'                   => version_compareget_bloginfo'version' ), '5.0''>=' ) && ! is_plugin_active'classic-editor/classic-editor.php' ),
            
'cl_fields_supported'            => wpforms_get_conditional_logic_form_fields_supported(),
            
'redirect_url_field_error'       => esc_html__'You should enter a valid absolute address to the Confirmation Redirect URL field.''wpforms-lite' ),
            
'add_custom_value_label'         => esc_html__'Add Custom Value''wpforms-lite' ),
            
'choice_empty_label_tpl'         => esc_html__'Choice {number}''wpforms-lite' ),
            
'error_save_form'                => esc_html__'Something went wrong while saving the form. Please reload the page and try again.''wpforms-lite' ),
            
'error_contact_support'          => esc_html__'Please contact the plugin support team if this behavior persists.''wpforms-lite' ),
        );

        
$strings['disable_entries'] = sprintf(
            
wp_kses/* translators: %s - Link to the WPForms.com doc article. */
                
__'Disabling entry storage for this form will completely prevent any new submissions from getting saved to your site. If you still intend to keep a record of entries through notification emails, then please <a href="%s" target="_blank" rel="noopener noreferrer">test your form</a> to ensure emails send reliably.''wpforms-lite' ),
                [
                    
'a' => [
                        
'href'   => [],
                        
'rel'    => [],
                        
'target' => [],
                    ],
                ]
            ),
            
'https://wpforms.com/docs/how-to-properly-test-your-wordpress-forms-before-launching-checklist/'
        
);

        
$strings apply_filters'wpforms_builder_strings'$strings$this->form );

        
// phpcs:disable WordPress.Security.NonceVerification.Recommended
        
if ( ! empty( $_GET['form_id'] ) ) {
            
$form_id = (int) $_GET['form_id'];

            
$strings['preview_url'] = esc_urladd_query_arg'new_window'1wpforms_get_form_preview_url$form_id ) ) );
            
$strings['entries_url'] = esc_urladmin_url'admin.php?page=wpforms-entries&view=list&form_id=' $form_id ) );
        }
        
// phpcs:enable

        
wp_localize_script(
            
'wpforms-builder',
            
'wpforms_builder',
            
$strings
        
);

        
// Hook for addons.
        
do_action'wpforms_builder_enqueues'$this->view );
    }

    
/**
     * Footer JavaScript.
     *
     * @since 1.3.7
     */
    
public function footer_scripts() {

        
$countries        wpforms_countries();
        
$countries_postal array_keys$countries );
        
$countries        array_values$countries );
        
sort$countries_postal );
        
sort$countries );

        
$choices = array(
            
'countries'        => array(
                
'name'    => esc_html__'Countries''wpforms-lite' ),
                
'choices' => $countries,
            ),
            
'countries_postal' => array(
                
'name'    => esc_html__'Countries Postal Code''wpforms-lite' ),
                
'choices' => $countries_postal,
            ),
            
'states'           => array(
                
'name'    => esc_html__'States''wpforms-lite' ),
                
'choices' => array_valueswpforms_us_states() ),
            ),
            
'states_postal'    => array(
                
'name'    => esc_html__'States Postal Code''wpforms-lite' ),
                
'choices' => array_keyswpforms_us_states() ),
            ),
            
'months'           => array(
                
'name'    => esc_html__'Months''wpforms-lite' ),
                
'choices' => array_valueswpforms_months() ),
            ),
            
'days'             => array(
                
'name'    => esc_html__'Days''wpforms-lite' ),
                
'choices' => array_valueswpforms_days() ),
            ),
        );
        
$choices apply_filters'wpforms_builder_preset_choices'$choices );

        echo 
'<script type="text/javascript">wpforms_preset_choices=' wp_json_encode$choices ) . '</script>';

        
do_action'wpforms_builder_print_footer_scripts' );
    }

    
/**
     * Load the appropriate files to build the page.
     *
     * @since 1.0.0
     */
    
public function output() {

        if ( ! (bool) 
apply_filters'wpforms_builder_output'true ) ) {
            return;
        }

        
$form_id  $this->form absint$this->form->ID ) : '';
        
$field_id = ! empty( $this->form_data['field_id'] ) ? $this->form_data['field_id'] : '';
        
?>

        <div id="wpforms-builder" class="wpforms-admin-page">

            <div id="wpforms-builder-mobile-notice">

                <img src="<?php echo esc_urlWPFORMS_PLUGIN_URL 'assets/images/sullie-builder-mobile.png' ); ?>" alt="<?php esc_attr_e'Sullie the WPForms mascot''wpforms-lite' ); ?>">

                <h3><?php esc_html_e'Oh, hi there!''wpforms-lite' ); ?></h3>

                <p><?php esc_html_e'Our form builder is optimized for desktop computers and tablets. Please manage your forms on a different device.''wpforms-lite' ); ?></p>

                <button type="button"><?php esc_html_e'Go back''wpforms-lite' ); ?></button>

            </div>

            <div id="wpforms-builder-overlay">

                <div class="wpforms-builder-overlay-content">

                    <i class="fa fa-cog fa-spin"></i>

                    <span class="msg"><?php esc_html_e'Loading''wpforms-lite' ); ?></span>
                </div>

            </div>

            <form name="wpforms-builder" id="wpforms-builder-form" method="post" data-id="<?php echo esc_attr$form_id ); ?>">

                <input type="hidden" name="id" value="<?php echo esc_attr$form_id ); ?>">
                <input type="hidden" value="<?php echo absint$field_id ); ?>" name="field_id" id="wpforms-field-id">

                <!-- Toolbar -->
                <div class="wpforms-toolbar">

                    <div class="wpforms-left">

                        <img src="<?php echo esc_urlWPFORMS_PLUGIN_URL 'assets/images/sullie-alt.png' ); ?>" alt="<?php esc_attr_e'Sullie the WPForms mascot''wpforms-lite' ); ?>">

                    </div>

                    <div class="wpforms-center">

                        <?php if ( $this->form ) : ?>

                            <?php esc_html_e'Now editing''wpforms-lite' ); ?>
                            <span class="wpforms-center-form-name wpforms-form-name"><?php echo esc_html$this->form->post_title ); ?></span>

                        <?php endif; ?>

                    </div>

                    <div class="wpforms-right">

                        <a href="#" id="wpforms-help" title="<?php esc_attr_e'Help''wpforms-lite' ); ?>">
                            <i class="fa fa-question-circle"></i>
                            <span><?php esc_html_e'Help''wpforms-lite' ); ?></span>
                        </a>

                        <?php if ( $this->form ) : ?>

                            <a href="#" id="wpforms-embed" title="<?php esc_attr_e'Embed Form''wpforms-lite' ); ?>">
                                <i class="fa fa-code"></i>
                                <span class="text"><?php esc_html_e'Embed''wpforms-lite' ); ?></span>
                            </a>

                            <a href="#" id="wpforms-save" title="<?php esc_attr_e'Save Form''wpforms-lite' ); ?>">
                                <i class="fa fa-check"></i>
                                <span class="text"><?php esc_html_e'Save''wpforms-lite' ); ?></span>
                            </a>

                        <?php endif; ?>

                        <a href="#" id="wpforms-exit" title="<?php esc_attr_e'Exit''wpforms-lite' ); ?>">
                            <i class="fa fa-times"></i>
                        </a>

                    </div>

                </div>

                <!-- Panel toggle buttons. -->
                <div class="wpforms-panels-toggle" id="wpforms-panels-toggle">

                    <?php do_action'wpforms_builder_panel_buttons'$this->form$this->view ); ?>

                </div>

                <div class="wpforms-panels">

                    <?php do_action'wpforms_builder_panels'$this->form$this->view ); ?>

                </div>

            </form>

        </div>

        <?php
    
}
}
WPForms_Builder::instance();
x

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