C:\xampp\htdocs\landing\wp-content\plugins\wpforms-lite\includes\admin\class-about.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
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
<?php

/**
 * About WPForms admin page class.
 *
 * @since 1.5.0
 */
class WPForms_About {

    
/**
     * Admin menu page slug.
     *
     * @since 1.5.0
     *
     * @var string
     */
    
const SLUG 'wpforms-about';

    
/**
     * Default view for a page.
     *
     * @since 1.5.0
     *
     * @var string
     */
    
const DEFAULT_TAB 'about';

    
/**
     * Array of license types, that are considered being top level and has no features difference.
     *
     * @since 1.5.0
     *
     * @var array
     */
    
public static $licenses_top = array( 'pro''agency''ultimate''elite' );

    
/**
     * List of features that licenses are different with.
     *
     * @since 1.5.0
     *
     * @var array
     */
    
public static $licenses_features = array();

    
/**
     * The current active tab.
     *
     * @since 1.5.0
     *
     * @var string
     */
    
public $view;

    
/**
     * The core views.
     *
     * @since 1.5.0
     *
     * @var array
     */
    
public $views = array();

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

        
// In old PHP we can't define this elsewhere.
        
self::$licenses_features = array(
            
'entries'      => esc_html__'Form Entries''wpforms-lite' ),
            
'fields'       => esc_html__'Form Fields''wpforms-lite' ),
            
'templates'    => esc_html__'Form Templates''wpforms-lite' ),
            
'conditionals' => esc_html__'Smart Conditional Logic''wpforms-lite' ),
            
'marketing'    => esc_html__'Marketing Integrations''wpforms-lite' ),
            
'payments'     => esc_html__'Payment Forms''wpforms-lite' ),
            
'surveys'      => esc_html__'Surveys & Polls''wpforms-lite' ),
            
'advanced'     => esc_html__'Advanced Form Features''wpforms-lite' ),
            
'addons'       => esc_html__'WPForms Addons''wpforms-lite' ),
            
'support'      => esc_html__'Customer Support''wpforms-lite' ),
            
'sites'        => esc_html__'Number of Sites''wpforms-lite' ),
        );

        
// Maybe load tools page.
        
add_action'admin_init', array( $this'init' ) );
    }

    
/**
     * Determining if the user is viewing the our page, if so, party on.
     *
     * @since 1.5.0
     */
    
public function init() {

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

        
// Only load if we are actually on the settings page.
        
if ( self::SLUG !== $page ) {
            return;
        }

        
add_action'admin_enqueue_scripts', array( $this'enqueues' ) );

        
/*
         * Define the core views for the our tab.
         */
        
$this->views apply_filters(
            
'wpforms_admin_about_views',
            array(
                
esc_html__'About Us''wpforms-lite' )        => array( 'about' ),
                
esc_html__'Getting Started''wpforms-lite' ) => array( 'getting-started' ),
            )
        );

        
$license $this->get_license_type();

        if (
            (
                
$license === 'pro' ||
                ! 
in_array$licenseself::$licenses_toptrue )
            ) ||
            
wpforms_debug()
        ) {
            
$vs_tab_name sprintf/* translators: %1$s - current license type; %2$s - suggested license type. */
                
esc_html__'%1$s vs %2$s''wpforms-lite' ),
                
ucfirst$license ),
                
$this->get_next_license$license )
            );

            
$this->views$vs_tab_name ] = array( 'versus' );
        }

        
// Determine the current active settings tab.
        
$this->view = ! empty( $_GET['view'] ) ? esc_html$_GET['view'] ) : self::DEFAULT_TAB;

        
// If the user tries to load an invalid view - fallback to About Us.
        
if (
            ! 
in_array$this->viewcall_user_func_array'array_merge'$this->views ), true ) &&
            ! 
has_action'wpforms_admin_about_display_tab_' sanitize_key$this->view ) )
        ) {
            
$this->view self::DEFAULT_TAB;
        }

        
add_action'wpforms_admin_page', array( $this'output' ) );

        
// Hook for addons.
        
do_action'wpforms_admin_about_init' );
    }

    
/**
     * Enqueue assets for the the page.
     *
     * @since 1.5.0
     */
    
public function enqueues() {

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

    
/**
     * Output the basic page structure.
     *
     * @since 1.5.0
     */
    
public function output() {

        
$show_nav false;
        foreach ( 
$this->views as $view ) {
            if ( 
in_array$this->view, (array) $viewtrue ) ) {
                
$show_nav true;
                break;
            }
        }
        
?>

        <div id="wpforms-admin-about" class="wrap wpforms-admin-wrap">

            <?php
            
if ( $show_nav ) {
                
$license      $this->get_license_type();
                
$next_license $this->get_next_license$license );
                echo 
'<ul class="wpforms-admin-tabs">';
                foreach ( 
$this->views as $label => $view ) {
                    
$class in_array$this->view$viewtrue ) ? 'active' '';
                    echo 
'<li>';
                    
printf(
                        
'<a href="%s" class="%s">%s</a>',
                        
esc_urladmin_url'admin.php?page=' self::SLUG '&view=' sanitize_key$view[0] ) ) ),
                        
esc_attr$class ),
                        
esc_html$label )
                    );
                    echo 
'</li>';
                }
                echo 
'</ul>';
            }
            
?>

            <h1 class="wpforms-h1-placeholder"></h1>

            <?php
            
switch ( $this->view ) {
                case 
'about':
                    
$this->output_about();
                    break;
                case 
'getting-started':
                    
$this->output_getting_started();
                    break;
                case 
'versus':
                    
$this->output_versus();
                    break;
                default:
                    
do_action'wpforms_admin_about_display_tab_' sanitize_key$this->view ) );
                    break;
            }
            
?>

        </div>

        <?php
    
}

    
/**
     * Display the About tab content.
     *
     * @since 1.5.0
     */
    
protected function output_about() {

        
$this->output_about_info();
        
$this->output_about_addons();
    }

    
/**
     * Display the General Info section of About tab.
     *
     * @since 1.5.8
     */
    
protected function output_about_info() {

        
?>

        <div class="wpforms-admin-about-section wpforms-admin-columns">

            <div class="wpforms-admin-column-60">
                <h3>
                    <?php esc_html_e'Hello and welcome to WPForms, the most beginner friendly drag & drop WordPress forms plugin. At WPForms, we build software that helps you create beautiful responsive online forms for your website in minutes.''wpforms-lite' ); ?>
                </h3>

                <p>
                    <?php esc_html_e'Over the years, we found that most WordPress contact form plugins were bloated, buggy, slow, and very hard to use. So we started with a simple goal: build a WordPress forms plugin that’s both easy and powerful.''wpforms-lite' ); ?>
                </p>
                <p>
                    <?php esc_html_e'Our goal is to take the pain out of creating online forms and make it easy.''wpforms-lite' ); ?>
                </p>
                <p>
                    <?php
                    printf
(
                        
wp_kses(
                        
/* translators: %1$s - WPBeginner URL; %2$s - OptinMonster URL; %3$s - MonsterInsights URL; %4$s - RafflePress URL. */
                            
__'WPForms is brought to you by the same team that’s behind the largest WordPress resource site, <a href="%1$s" target="_blank" rel="noopener noreferrer">WPBeginner</a>, the most popular lead-generation software, <a href="%2$s" target="_blank" rel="noopener noreferrer">OptinMonster</a>, the best WordPress analytics plugin, <a href="%3$s" target="_blank" rel="noopener noreferrer">MonsterInsights</a>, and the most powerful WordPress contest plugin, <a href="%4$s" target="_blank" rel="noopener noreferrer">RafflePress</a>.''wpforms-lite' ),
                            array(
                                
'a' => array(
                                    
'href'   => array(),
                                    
'rel'    => array(),
                                    
'target' => array(),
                                ),
                            )
                        ),
                        
'https://www.wpbeginner.com/?utm_source=wpformsplugin&utm_medium=pluginaboutpage&utm_campaign=aboutwpforms',
                        
'https://optinmonster.com/?utm_source=wpformsplugin&utm_medium=pluginaboutpage&utm_campaign=aboutwpforms',
                        
'https://www.monsterinsights.com/?utm_source=wpformsplugin&utm_medium=pluginaboutpage&utm_campaign=aboutwpforms',
                        
'https://rafflepress.com/?utm_source=wpformsplugin&utm_medium=pluginaboutpage&utm_campaign=aboutwpforms'
                    
);
                    
?>
                </p>
                <p>
                    <?php esc_html_e'Yup, we know a thing or two about building awesome products that customers love.''wpforms-lite' ); ?>
                </p>
            </div>

            <div class="wpforms-admin-column-40 wpforms-admin-column-last">
                <figure>
                    <img src="<?php echo WPFORMS_PLUGIN_URL?>assets/images/about/team.jpg" alt="<?php esc_attr_e'The WPForms Team photo''wpforms-lite' ); ?>">
                    <figcaption>
                        <?php esc_html_e'The WPForms Team''wpforms-lite' ); ?><br>
                    </figcaption>
                </figure>
            </div>

        </div>
        <?php
    
}

    
/**
     * Display the Addons section of About tab.
     *
     * @since 1.5.8
     */
    
protected function output_about_addons() {

        if ( ! 
wpforms_current_user_can() ) {
            return;
        }

        
$all_plugins         get_plugins();
        
$am_plugins          $this->get_am_plugins();
        
$can_install_plugins wpforms_can_install'plugin' );

        
?>
        <div id="wpforms-admin-addons">
            <div class="addons-container">
                <?php
                
foreach ( $am_plugins as $plugin => $details ) :

                    
$plugin_data $this->get_plugin_data$plugin$details$all_plugins );

                    
?>
                    <div class="addon-container">
                        <div class="addon-item">
                            <div class="details wpforms-clear">
                                <img src="<?php echo esc_url$plugin_data['details']['icon'] ); ?>">
                                <h5 class="addon-name">
                                    <?php echo esc_html$plugin_data['details']['name'] ); ?>
                                </h5>
                                <p class="addon-desc">
                                    <?php echo wp_kses_post$plugin_data['details']['desc'] ); ?>
                                </p>
                            </div>
                            <div class="actions wpforms-clear">
                                <div class="status">
                                    <strong>
                                        <?php
                                        printf
(
                                        
/* translators: %s - addon status label. */
                                            
esc_html__'Status: %s''wpforms-lite' ),
                                            
'<span class="status-label ' esc_attr$plugin_data['status_class'] ) . '">' wp_kses_post$plugin_data['status_text'] ) . '</span>'
                                        
);
                                        
?>
                                    </strong>
                                </div>
                                <div class="action-button">
                                    <?php if ( $can_install_plugins ) { ?>
                                        <button class="<?php echo esc_attr$plugin_data['action_class'] ); ?>" data-plugin="<?php echo esc_attr$plugin_data['plugin_src'] ); ?>" data-type="plugin">
                                            <?php echo wp_kses_post$plugin_data['action_text'] ); ?>
                                        </button>
                                    <?php } else { ?>
                                        <a href="<?php echo esc_url$details['wporg'] ); ?>" target="_blank" rel="noopener noreferrer">
                                            <?php esc_html_e'WordPress.org''wpforms-lite' ); ?>
                                            <span aria-hidden="true" class="dashicons dashicons-external"></span>
                                        </a>
                                    <?php ?>
                                </div>
                            </div>
                        </div>
                    </div>
                <?php endforeach; ?>
            </div>
        </div>
        <?php
    
}

    
/**
     * Get AM plugin data to display in the Addons section of About tab.
     *
     * @since 1.5.8
     *
     * @param string $plugin      Plugin slug.
     * @param array  $details     Plugin details.
     * @param array  $all_plugins List of all plugins.
     *
     * @return array
     */
    
protected function get_plugin_data$plugin$details$all_plugins ) {

        
$have_pro = ( ! empty( $details['pro'] ) && ! empty( $details['pro']['plug'] ) );
        
$show_pro false;

        
$plugin_data = array();

        if ( 
$have_pro ) {
            if ( 
array_key_exists$plugin$all_plugins ) ) {
                if ( 
is_plugin_active$plugin ) ) {
                    
$show_pro true;
                }
            }
            if ( 
array_key_exists$details['pro']['plug'], $all_plugins ) ) {
                
$show_pro true;
            }
            if ( 
$show_pro ) {
                
$plugin  $details['pro']['plug'];
                
$details $details['pro'];
            }
        }

        if ( 
array_key_exists$plugin$all_plugins ) ) {
            if ( 
is_plugin_active$plugin ) ) {
                
// Status text/status.
                
$plugin_data['status_class'] = 'status-active';
                
$plugin_data['status_text']  = esc_html__'Active''wpforms-lite' );
                
// Button text/status.
                
$plugin_data['action_class'] = $plugin_data['status_class'] . ' button button-secondary disabled';
                
$plugin_data['action_text']  = esc_html__'Activated''wpforms-lite' );
                
$plugin_data['plugin_src']   = esc_attr$plugin );
            } else {
                
// Status text/status.
                
$plugin_data['status_class'] = 'status-inactive';
                
$plugin_data['status_text']  = esc_html__'Inactive''wpforms-lite' );
                
// Button text/status.
                
$plugin_data['action_class'] = $plugin_data['status_class'] . ' button button-secondary';
                
$plugin_data['action_text']  = esc_html__'Activate''wpforms-lite' );
                
$plugin_data['plugin_src']   = esc_attr$plugin );
            }
        } else {
            
// Doesn't exist, install.
            // Status text/status.
            
$plugin_data['status_class'] = 'status-download';
            if ( isset( 
$details['act'] ) && 'go-to-url' === $details['act'] ) {
                
$plugin_data['status_class'] = 'status-go-to-url';
            }
            
$plugin_data['status_text'] = esc_html__'Not Installed''wpforms-lite' );
            
// Button text/status.
            
$plugin_data['action_class'] = $plugin_data['status_class'] . ' button button-primary';
            
$plugin_data['action_text']  = esc_html__'Install Plugin''wpforms-lite' );
            
$plugin_data['plugin_src']   = esc_url$details['url'] );
        }

        
$plugin_data['details'] = $details;

        return 
$plugin_data;
    }

    
/**
     * Display the Getting Started tab content.
     *
     * @since 1.5.0
     */
    
protected function output_getting_started() {

        
$license $this->get_license_type();
        
?>

        <div class="wpforms-admin-about-section wpforms-admin-about-section-first-form" style="display:flex;">

            <div class="wpforms-admin-about-section-first-form-text">

                <h2>
                    <?php esc_html_e'Creating Your First Form''wpforms-lite' ); ?>
                </h2>

                <p>
                    <?php esc_html_e'Want to get started creating your first form with WPForms? By following the step by step instructions in this walkthrough, you can easily publish your first form on your site.''wpforms-lite' ); ?>
                </p>

                <p>
                    <?php esc_html_e'To begin, you’ll need to be logged into the WordPress admin area. Once there, click on WPForms in the admin sidebar to go the Forms Overview page.''wpforms-lite' ); ?>
                </p>

                <p>
                    <?php esc_html_e'In the Forms Overview page, the forms list will be empty because there are no forms yet. To create a new form, click on the Add New button, and this will launch the WPForms Form Builder.''wpforms-lite' ); ?>
                </p>

                <ul class="list-plain">
                    <li>
                        <a href="https://wpforms.com/docs/creating-first-form/?utm_source=WordPress&utm_medium=wpforms-about-page&utm_campaign=gettingstarted#add-new" target="_blank" rel="noopener noreferrer">
                            <?php esc_html_e'How to Add a New Form''wpforms-lite' ); ?>
                        </a>
                    </li>
                    <li>
                        <a href="https://wpforms.com/docs/creating-first-form/?utm_source=WordPress&utm_medium=wpforms-about-page&utm_campaign=gettingstarted#customize-fields" target="_blank" rel="noopener noreferrer">
                            <?php esc_html_e'How to Customize Form Fields''wpforms-lite' ); ?>
                        </a>
                    </li>
                    <li>
                        <a href="https://wpforms.com/docs/creating-first-form/?utm_source=WordPress&utm_medium=wpforms-about-page&utm_campaign=gettingstarted#display-form" target="_blank" rel="noopener noreferrer">
                            <?php esc_html_e'How to Display Forms on Your Site''wpforms-lite' ); ?>
                        </a>
                    </li>
                </ul>

            </div>

            <div class="wpforms-admin-about-section-first-form-video">
                <iframe src="https://www.youtube-nocookie.com/embed/o2nE1P74WxQ?rel=0" width="540" height="304" frameborder="0" allow="autoplay; encrypted-media" allowfullscreen></iframe>
            </div>

        </div>

        <?php if ( ! in_array$licenseself::$licenses_toptrue ) ) { ?>
            <div class="wpforms-admin-about-section wpforms-admin-about-section-hero">

                <div class="wpforms-admin-about-section-hero-main">
                    <h2>
                        <?php esc_html_e'Get WPForms Pro and Unlock all the Powerful Features''wpforms-lite' ); ?>
                    </h2>

                    <p class="bigger">
                        <?php
                        
echo wp_kses(
                            
__'Thanks for being a loyal WPForms Lite user. <strong>Upgrade to WPForms Pro</strong> to unlock all the awesome features and experience<br>why WPForms is consistently rated the best WordPress form builder.''wpforms-lite' ),
                            array(
                                
'br'     => array(),
                                
'strong' => array(),
                            )
                        );
                        
?>
                    </p>

                    <p>
                        <?php
                        printf
(
                            
wp_kses(
                            
/* translators: %s - stars. */
                                
__'We know that you will truly love WPForms. It has over <strong>7000+ five star ratings</strong> (%s) and is active on over 4 million websites.''wpforms-lite' ),
                                array(
                                    
'strong' => array(),
                                )
                            ),
                            
'<i class="fa fa-star" aria-hidden="true"></i>' .
                            
'<i class="fa fa-star" aria-hidden="true"></i>' .
                            
'<i class="fa fa-star" aria-hidden="true"></i>' .
                            
'<i class="fa fa-star" aria-hidden="true"></i>' .
                            
'<i class="fa fa-star" aria-hidden="true"></i>'
                        
);
                        
?>
                    </p>
                </div>

                <div class="wpforms-admin-about-section-hero-extra">
                    <div class="wpforms-admin-columns">
                        <div class="wpforms-admin-column-50">
                            <ul class="list-features list-plain">
                                <li>
                                    <i class="fa fa-check" aria-hidden="true"></i>
                                    <?php esc_html_e'Entry Management - view all leads in one place.''wpforms-lite' ); ?>
                                </li>
                                <li>
                                    <i class="fa fa-check" aria-hidden="true"></i>
                                    <?php esc_html_e'All form features like file upload, pagination, etc.''wpforms-lite' ); ?>
                                </li>
                                <li>
                                    <i class="fa fa-check" aria-hidden="true"></i>
                                    <?php esc_html_e'Create surveys & polls with the surveys addon.''wpforms-lite' ); ?>
                                </li>
                                <li>
                                    <i class="fa fa-check" aria-hidden="true"></i>
                                    <?php esc_html_e'WordPress user registration and login forms.''wpforms-lite' ); ?>
                                </li>
                                <li>
                                    <i class="fa fa-check" aria-hidden="true"></i>
                                    <?php esc_html_e'Create payment forms with Stripe, PayPal, and Authorize.Net.''wpforms-lite' ); ?>
                                </li>
                            </ul>
                        </div>
                        <div class="wpforms-admin-column-50 wpforms-admin-column-last">
                            <ul class="list-features list-plain">
                                <li>
                                    <i class="fa fa-check" aria-hidden="true"></i>
                                    <?php esc_html_e'Powerful Conditional Logic so you can create smart forms.''wpforms-lite' ); ?>
                                </li>
                                <li>
                                    <i class="fa fa-check" aria-hidden="true"></i>
                                    <?php esc_html_e'500+ integrations with different marketing & payment services.''wpforms-lite' ); ?>
                                </li>
                                <li>
                                    <i class="fa fa-check" aria-hidden="true"></i>
                                    <?php esc_html_e'Collect signatures, geo-location data, and more.''wpforms-lite' ); ?>
                                </li>
                                <li>
                                    <i class="fa fa-check" aria-hidden="true"></i>
                                    <?php esc_html_e'Accept user submitted content with Post Submissions addon.''wpforms-lite' ); ?>
                                </li>
                                <li>
                                    <i class="fa fa-check" aria-hidden="true"></i>
                                    <?php esc_html_e'Bonus form templates, form abandonment, and more.''wpforms-lite' ); ?>
                                </li>
                            </ul>
                        </div>
                    </div>

                    <hr />

                    <h3 class="call-to-action">
                        <?php
                        
if ( 'lite' === $license ) {
                            echo 
'<a href="' wpforms_admin_upgrade_link'wpforms-about-page' ) . '" target="_blank" rel="noopener noreferrer">';
                        } else {
                            echo 
'<a href="https://wpforms.com/pricing?utm_source=WordPress&utm_medium=wpforms-about-page&utm_campaign=gettingstarted" target="_blank" rel="noopener noreferrer">';
                        }
                        
esc_html_e'Get WPForms Pro Today and Unlock all the Powerful Features''wpforms-lite' );
                        
?>
                        </a>
                    </h3>

                    <?php if ( 'lite' === $license ) { ?>
                        <p>
                            <?php
                            
echo wp_kses(
                                
__'Bonus: WPForms Lite users get <span class="price-20-off">50% off regular price</span>, automatically applied at checkout.''wpforms-lite' ),
                                array(
                                    
'span' => array(
                                        
'class' => array(),
                                    ),
                                )
                            );
                            
?>
                        </p>
                    <?php ?>
                </div>

            </div>
        <?php ?>

        <div class="wpforms-admin-about-section wpforms-admin-about-section-squashed wpforms-admin-about-section-post wpforms-admin-columns">
            <div class="wpforms-admin-column-20">
                <img src="<?php echo WPFORMS_PLUGIN_URL?>assets/images/about/how-choose-right-form-field.png" alt="">
            </div>
            <div class="wpforms-admin-column-80">
                <h2>
                    <?php esc_html_e'How to Choose the Right Form Field''wpforms-lite' ); ?>
                </h2>

                <p>
                    <?php esc_html_e'Are you wondering which form fields you have access to in WPForms and what each field does? WPForms has lots of field types to make creating and filling out forms easy. In this tutorial, we’ll cover all of the fields available in WPForms.''wpforms-lite' ); ?>
                </p>

                <a href="https://wpforms.com/docs/how-to-choose-the-right-form-field-for-your-forms/?utm_source=WordPress&utm_medium=wpforms-about-page&utm_campaign=gettingstarted" target="_blank" rel="noopener noreferrer" class="wpforms-admin-about-section-post-link">
                    <?php esc_html_e'Read Documentation''wpforms-lite' ); ?><i class="fa fa-external-link" aria-hidden="true"></i>
                </a>
            </div>
        </div>

        <div class="wpforms-admin-about-section wpforms-admin-about-section-squashed wpforms-admin-about-section-post wpforms-admin-columns">
            <div class="wpforms-admin-column-20">
                <img src="<?php echo WPFORMS_PLUGIN_URL?>assets/images/about/complete-guide-to-wpforms-settings.png" alt="">
            </div>
            <div class="wpforms-admin-column-80">
                <h2>
                    <?php esc_html_e'A Complete Guide to WPForms Settings''wpforms-lite' ); ?>
                </h2>

                <p>
                    <?php esc_html_e'Would you like to learn more about all of the settings available in WPForms? In addition to tons of customization options within the form builder, WPForms has an extensive list of plugin-wide options available. This includes choosing your currency, adding GDPR enhancements, setting up integrations.''wpforms-lite' ); ?>
                </p>

                <a href="https://wpforms.com/docs/a-complete-guide-to-wpforms-settings/?utm_source=WordPress&utm_medium=wpforms-about-page&utm_campaign=gettingstarted" target="_blank" rel="noopener noreferrer" class="wpforms-admin-about-section-post-link">
                    <?php esc_html_e'Read Documentation''wpforms-lite' ); ?><i class="fa fa-external-link" aria-hidden="true"></i>
                </a>
            </div>
        </div>

        <div class="wpforms-admin-about-section wpforms-admin-about-section-squashed wpforms-admin-about-section-post wpforms-admin-columns">
            <div class="wpforms-admin-column-20">
                <img src="<?php echo WPFORMS_PLUGIN_URL?>assets/images/about/how-create-gdpr-compliant-forms.png" alt="">
            </div>
            <div class="wpforms-admin-column-80">
                <h2>
                    <?php esc_html_e'How to Create GDPR Compliant Forms''wpforms-lite' ); ?>
                </h2>

                <p>
                    <?php esc_html_e'Do you need to check that your forms are compliant with the European Union’s General Data Protection Regulation? The best way to ensure GDPR compliance for your specific site is always to consult legal counsel. In this guide, we’ll discuss general considerations for GDPR compliance in your WordPress forms.''wpforms-lite' ); ?>
                </p>

                <a href="https://wpforms.com/docs/how-to-create-gdpr-compliant-forms/?utm_source=WordPress&utm_medium=wpforms-about-page&utm_campaign=gettingstarted" target="_blank" rel="noopener noreferrer" class="wpforms-admin-about-section-post-link">
                    <?php esc_html_e'Read Documentation''wpforms-lite' ); ?><i class="fa fa-external-link" aria-hidden="true"></i>
                </a>
            </div>
        </div>

        <div class="wpforms-admin-about-section wpforms-admin-about-section-squashed wpforms-admin-about-section-post wpforms-admin-columns">
            <div class="wpforms-admin-column-20">
                <img src="<?php echo WPFORMS_PLUGIN_URL?>assets/images/about/how-install-activate-wpforms-addons.png" alt="">
            </div>
            <div class="wpforms-admin-column-80">
                <h2>
                    <?php esc_html_e'How to Install and Activate WPForms Addons''wpforms-lite' ); ?>
                </h2>

                <p>
                    <?php esc_html_e'Would you like to access WPForms addons to extend the functionality of your forms? The first thing you need to do is install WPForms. Once that’s done, let’s go ahead and look at the process of activating addons.''wpforms-lite' ); ?>
                </p>

                <a href="https://wpforms.com/docs/install-activate-wpforms-addons/?utm_source=WordPress&utm_medium=wpforms-about-page&utm_campaign=gettingstarted" target="_blank" rel="noopener noreferrer" class="wpforms-admin-about-section-post-link">
                    <?php esc_html_e'Read Documentation''wpforms-lite' ); ?><i class="fa fa-external-link" aria-hidden="true"></i>
                </a>
            </div>
        </div>

        <?php
    
}

    
/**
     * Get the next license type. Helper for Versus tab content.
     *
     * @since 1.5.5
     *
     * @param string $current Current license type slug.
     *
     * @return string Next license type slug.
     */
    
protected function get_next_license$current ) {

        
$current       ucfirst$current );
        
$license_pairs = array(
            
'Lite'  => 'Pro',
            
'Basic' => 'Pro',
            
'Plus'  => 'Pro',
            
'Pro'   => 'Elite',
        );

        return ! empty( 
$license_pairs$current ] ) ? $license_pairs$current ] : 'Elite';
    }

    
/**
     * Display the Versus tab content.
     *
     * @since 1.5.0
     */
    
protected function output_versus() {

        
$license      $this->get_license_type();
        
$next_license $this->get_next_license$license );
        
?>

        <div class="wpforms-admin-about-section wpforms-admin-about-section-squashed">
            <h1 class="centered">
                <strong><?php echo esc_htmlucfirst$license ) ); ?></strong> vs <strong><?php echo esc_html$next_license ); ?></strong>
            </h1>

            <p class="centered">
                <?php esc_html_e'Get the most out of WPForms by upgrading to Pro and unlocking all of the powerful features.''wpforms-lite' ); ?>
            </p>
        </div>

        <div class="wpforms-admin-about-section wpforms-admin-about-section-squashed wpforms-admin-about-section-hero wpforms-admin-about-section-table">

            <div class="wpforms-admin-about-section-hero-main wpforms-admin-columns">
                <div class="wpforms-admin-column-33">
                    <h3 class="no-margin">
                        <?php esc_html_e'Feature''wpforms-lite' ); ?>
                    </h3>
                </div>
                <div class="wpforms-admin-column-33">
                    <h3 class="no-margin">
                        <?php echo esc_htmlucfirst$license ) ); ?>
                    </h3>
                </div>
                <div class="wpforms-admin-column-33">
                    <h3 class="no-margin">
                        <?php echo esc_html$next_license ); ?>
                    </h3>
                </div>
            </div>
            <div class="wpforms-admin-about-section-hero-extra no-padding wpforms-admin-columns">

                <table>
                    <?php
                    
foreach ( self::$licenses_features as $slug => $name ) {
                        
$current $this->get_license_data$slug$license );
                        
$next    $this->get_license_data$slugstrtolower$next_license ) );

                        if ( empty( 
$current ) || empty( $next ) ) {
                            continue;
                        }

                        
$current_status $current['status'];
                        if ( 
$current['text'] !== $next['text'] && $current_status === 'full' ) {
                            
$current_status 'partial';
                        }
                        
?>
                        <tr class="wpforms-admin-columns">
                            <td class="wpforms-admin-column-33">
                                <p><?php echo esc_html$name ); ?></p>
                            </td>
                            <td class="wpforms-admin-column-33">
                                <?php if ( is_array$current ) ) : ?>
                                    <p class="features-<?php echo esc_attr$current_status ); ?>">
                                        <?php echo wp_kses_postimplode'<br>'$current['text'] ) ); ?>
                                    </p>
                                <?php endif; ?>
                            </td>
                            <td class="wpforms-admin-column-33">
                                <?php if ( is_array$current ) ) : ?>
                                    <p class="features-full">
                                        <?php echo wp_kses_postimplode'<br>'$next['text'] ) ); ?>
                                    </p>
                                <?php endif; ?>
                            </td>
                        </tr>
                        <?php
                    
}
                    
?>
                </table>

            </div>

        </div>

        <div class="wpforms-admin-about-section wpforms-admin-about-section-hero">
            <div class="wpforms-admin-about-section-hero-main no-border">
                <h3 class="call-to-action centered">
                    <?php
                    
if ( 'lite' === $license ) {
                        echo 
'<a href="' esc_urlwpforms_admin_upgrade_link'wpforms-about-page' ) ) . '" target="_blank" rel="noopener noreferrer">';
                    } else {
                        echo 
'<a href="https://wpforms.com/pricing?utm_source=WordPress&utm_medium=wpforms-about-page&utm_campaign=gettingstarted" target="_blank" rel="noopener noreferrer">';
                    }
                    
printf/* translators: %s - next license level. */
                        
esc_html__'Get WPForms %s Today and Unlock all the Powerful Features''wpforms-lite' ),
                        
esc_html$next_license )
                    );
                    
?>
                    </a>
                </h3>

                <?php if ( 'lite' === $license ) { ?>
                    <p class="centered">
                        <?php
                        
echo wp_kses(
                            
__'Bonus: WPForms Lite users get <span class="price-20-off">50% off regular price</span>, automatically applied at checkout.''wpforms-lite' ),
                            array(
                                
'span' => array(
                                    
'class' => array(),
                                ),
                            )
                        );
                        
?>
                    </p>
                <?php ?>
            </div>
        </div>

        <?php
    
}

    
/**
     * List of AM plugins that we propose to install.
     *
     * @since 1.5.0
     *
     * @return array
     */
    
protected function get_am_plugins() {

        
$images_url WPFORMS_PLUGIN_URL 'assets/images/about/';

        return array(

            
'google-analytics-for-wordpress/googleanalytics.php' => array(
                
'icon'  => $images_url 'plugin-mi.png',
                
'name'  => esc_html__'MonsterInsights''wpforms-lite' ),
                
'desc'  => esc_html__'MonsterInsights makes it “effortless” to properly connect your WordPress site with Google Analytics, so you can start making data-driven decisions to grow your business.''wpforms-lite' ),
                
'wporg' => 'https://wordpress.org/plugins/google-analytics-for-wordpress/',
                
'url'   => 'https://downloads.wordpress.org/plugin/google-analytics-for-wordpress.zip',
                
'pro'   => array(
                    
'plug' => 'google-analytics-premium/googleanalytics-premium.php',
                    
'icon' => $images_url 'plugin-mi.png',
                    
'name' => esc_html__'MonsterInsights Pro''wpforms-lite' ),
                    
'desc' => esc_html__'MonsterInsights makes it “effortless” to properly connect your WordPress site with Google Analytics, so you can start making data-driven decisions to grow your business.''wpforms-lite' ),
                    
'url'  => 'https://www.monsterinsights.com/?utm_source=proplugin&utm_medium=pluginheader&utm_campaign=pluginurl&utm_content=7%2E0%2E0',
                    
'act'  => 'go-to-url',
                ),
            ),

            
'optinmonster/optin-monster-wp-api.php' => array(
                
'icon'  => $images_url 'plugin-om.png',
                
'name'  => esc_html__'OptinMonster''wpforms-lite' ),
                
'desc'  => esc_html__'Our high-converting optin forms like Exit-Intent® popups, Fullscreen Welcome Mats, and Scroll boxes help you dramatically boost conversions and get more email subscribers.''wpforms-lite' ),
                
'wporg' => 'https://wordpress.org/plugins/optinmonster/',
                
'url'   => 'https://downloads.wordpress.org/plugin/optinmonster.zip',
            ),

            
'wp-mail-smtp/wp_mail_smtp.php' => array(
                
'icon'  => $images_url 'plugin-smtp.png',
                
'name'  => esc_html__'WP Mail SMTP''wpforms-lite' ),
                
'desc'  => esc_html__'Make sure your website\'s emails reach the inbox. Our goal is to make email deliverability easy and reliable. Trusted by over 2 million websites.''wpforms-lite' ),
                
'wporg' => 'https://wordpress.org/plugins/wp-mail-smtp/',
                
'url'   => 'https://downloads.wordpress.org/plugin/wp-mail-smtp.zip',
                
'pro'   => array(
                    
'plug' => 'wp-mail-smtp-pro/wp_mail_smtp.php',
                    
'icon' => $images_url 'plugin-smtp.png',
                    
'name' => esc_html__'WP Mail SMTP Pro''wpforms-lite' ),
                    
'desc' => esc_html__'Make sure your website\'s emails reach the inbox. Our goal is to make email deliverability easy and reliable. Trusted by over 2 million websites.''wpforms-lite' ),
                    
'url'  => 'https://wpmailsmtp.com/pricing/',
                    
'act'  => 'go-to-url',
                ),
            ),

            
'rafflepress/rafflepress.php' => array(
                
'icon'  => $images_url 'plugin-rp.png',
                
'name'  => esc_html__'RafflePress''wpforms-lite' ),
                
'desc'  => esc_html__'Turn your visitors into brand ambassadors! Easily grow your email list, website traffic, and social media followers with powerful viral giveaways & contests.''wpforms-lite' ),
                
'wporg' => 'https://wordpress.org/plugins/rafflepress/',
                
'url'   => 'https://downloads.wordpress.org/plugin/rafflepress.zip',
                
'pro'   => array(
                    
'plug' => 'rafflepress-pro/rafflepress-pro.php',
                    
'icon' => $images_url 'plugin-rp.png',
                    
'name' => esc_html__'RafflePress Pro''wpforms-lite' ),
                    
'desc' => esc_html__'Turn your visitors into brand ambassadors! Easily grow your email list, website traffic, and social media followers with powerful viral giveaways & contests.''wpforms-lite' ),
                    
'url'  => 'https://rafflepress.com/pricing/',
                    
'act'  => 'go-to-url',
                ),
            ),
        );
    }

    
/**
     * Get the array of data that compared the license data.
     *
     * @since 1.5.0
     *
     * @param string $feature Feature name.
     * @param string $license License type to get data for.
     *
     * @return array|false
     */
    
protected function get_license_data$feature$license ) {

        
$data = [
            
'entries'      => [
                
'lite'  => [
                    
'status' => 'partial',
                    
'text'   => [
                        
'<strong>' esc_html__'Entries via Email Only''wpforms-lite' ) . '</strong>',
                    ],
                ],
                
'basic' => [
                    
'status' => 'full',
                    
'text'   => [
                        
'<strong>' esc_html__'Complete Entry Management inside WordPress''wpforms-lite' ) . '</strong>',
                    ],
                ],
                
'plus'  => [
                    
'status' => 'full',
                    
'text'   => [
                        
'<strong>' esc_html__'Complete Entry Management inside WordPress''wpforms-lite' ) . '</strong>',
                    ],
                ],
                
'pro'   => [
                    
'status' => 'full',
                    
'text'   => [
                        
'<strong>' esc_html__'Complete Entry Management inside WordPress''wpforms-lite' ) . '</strong>',
                    ],
                ],
            ],
            
'fields'       => [
                
'lite'  => [
                    
'status' => 'partial',
                    
'text'   => [
                        
'<strong>' esc_html__'Standard Fields Only''wpforms-lite' ) . '</strong>',
                        
esc_html__'Name, Email, Single Line Text, Paragraph Text, Dropdown, Multiple Choice, Checkboxes, and Numbers''wpforms-lite' ),
                    ],
                ],
                
'basic' => [
                    
'status' => 'full',
                    
'text'   => [
                        
'<strong>' esc_html__'Access to all Standard and Fancy Fields''wpforms-lite' ) . '</strong>',
                        
esc_html__'Address, Phone, Website URL, Date/Time, Password, File Upload, HTML, Pagebreaks, Section Dividers, Ratings, and Hidden Field''wpforms-lite' ),
                    ],
                ],
                
'plus'  => [
                    
'status' => 'full',
                    
'text'   => [
                        
'<strong>' esc_html__'Access to all Standard and Fancy Fields''wpforms-lite' ) . '</strong>',
                        
esc_html__'Address, Phone, Website URL, Date/Time, Password, File Upload, HTML, Pagebreaks, Section Dividers, Ratings, and Hidden Field''wpforms-lite' ),
                    ],
                ],
                
'pro'   => [
                    
'status' => 'full',
                    
'text'   => [
                        
'<strong>' esc_html__'Access to all Standard and Fancy Fields''wpforms-lite' ) . '</strong>',
                        
esc_html__'Address, Phone, Website URL, Date/Time, Password, File Upload, HTML, Pagebreaks, Section Dividers, Ratings, and Hidden Field''wpforms-lite' ),
                    ],
                ],
            ],
            
'conditionals' => [
                
'lite'  => [
                    
'status' => 'none',
                    
'text'   => [
                        
'<strong>' esc_html__'Not available''wpforms-lite' ) . '</strong>',
                    ],
                ],
                
'basic' => [
                    
'status' => 'full',
                    
'text'   => [
                        
'<strong>' esc_html__'Powerful Form Logic for Building Smart Forms''wpforms-lite' ) . '</strong>',
                    ],
                ],
                
'plus'  => [
                    
'status' => 'full',
                    
'text'   => [
                        
'<strong>' esc_html__'Powerful Form Logic for Building Smart Forms''wpforms-lite' ) . '</strong>',
                    ],
                ],
                
'pro'   => [
                    
'status' => 'full',
                    
'text'   => [
                        
'<strong>' esc_html__'Powerful Form Logic for Building Smart Forms''wpforms-lite' ) . '</strong>',
                    ],
                ],
            ],
            
'templates'    => [
                
'lite'  => [
                    
'status' => 'partial',
                    
'text'   => [
                        
'<strong>' esc_html__'Basic Form Templates''wpforms-lite' ) . '</strong>',
                    ],
                ],
                
'basic' => [
                    
'status' => 'partial',
                    
'text'   => [
                        
'<strong>' esc_html__'Basic Form Templates''wpforms-lite' ) . '</strong>',
                    ],
                ],
                
'plus'  => [
                    
'status' => 'partial',
                    
'text'   => [
                        
'<strong>' esc_html__'Basic Form Templates''wpforms-lite' ) . '</strong>',
                    ],
                ],
                
'pro'   => [
                    
'status' => 'full',
                    
'text'   => [
                        
'<strong>' esc_html__'All Form Templates including Bonus 100+ pre-made form templates.''wpforms-lite' ) . '</strong>',
                    ],
                ],
            ],
            
'marketing'    => [
                
'lite'     => [
                    
'status' => 'partial',
                    
'text'   => [
                        
'<strong>' esc_html__'Limited Marketing Integration''wpforms-lite' ) . '</strong>',
                        
esc_html__'Constant Contact only''wpforms-lite' ),
                    ],
                ],
                
'basic'    => [
                    
'status' => 'partial',
                    
'text'   => [
                        
'<strong>' esc_html__'Limited Marketing Integration''wpforms-lite' ) . '</strong>',
                        
esc_html__'Constant Contact only''wpforms-lite' ),
                    ],
                ],
                
'plus'     => [
                    
'status' => 'partial',
                    
'text'   => [
                        
'<strong>' esc_html__'Additional Marketing Integrations''wpforms-lite' ) . '</strong>',
                        
esc_html__'Constant Contact, Mailchimp, AWeber, GetResponse, Campaign Monitor, and Drip''wpforms-lite' ),
                    ],
                ],
                
'pro'      => [
                    
'status' => 'full',
                    
'text'   => [
                        
'<strong>' esc_html__'Additional Marketing Integrations''wpforms-lite' ) . '</strong>',
                        
esc_html__'Constant Contact, Mailchimp, AWeber, GetResponse, Campaign Monitor, and Drip.''wpforms-lite' ),
                        
'',
                        
wp_kses(
                            
__'<strong>Bonus:</strong> 500+ integrations with Zapier.''wpforms-lite' ),
                            [
                                
'strong' => [],
                            ]
                        ),
                    ],
                ],
                
'elite'    => [
                    
'status' => 'full',
                    
'text'   => [
                        
'<strong>' esc_html__'All Marketing Integrations''wpforms-lite' ) . '</strong>',
                        
esc_html__'ActiveCampaign, Constant Contact, Mailchimp, AWeber, GetResponse, Campaign Monitor, Salesforce, and Drip.''wpforms-lite' ),
                        
'',
                        
wp_kses(
                            
__'<strong>Bonus:</strong> 500+ integrations with Zapier.''wpforms-lite' ),
                            [
                                
'strong' => [],
                            ]
                        ),
                    ],
                ],
                
'ultimate' => [
                    
'status' => 'full',
                    
'text'   => [
                        
'<strong>' esc_html__'All Marketing Integrations''wpforms-lite' ) . '</strong>',
                        
esc_html__'ActiveCampaign, Constant Contact, Mailchimp, AWeber, GetResponse, Campaign Monitor, Salesforce, and Drip.''wpforms-lite' ),
                        
'',
                        
wp_kses(
                            
__'<strong>Bonus:</strong> 500+ integrations with Zapier.''wpforms-lite' ),
                            [
                                
'strong' => [],
                            ]
                        ),
                    ],
                ],
                
'agency'   => [
                    
'status' => 'full',
                    
'text'   => [
                        
'<strong>' esc_html__'All Marketing Integrations''wpforms-lite' ) . '</strong>',
                        
esc_html__'ActiveCampaign, Constant Contact, Mailchimp, AWeber, GetResponse, Campaign Monitor, Salesforce, and Drip.''wpforms-lite' ),
                        
'',
                        
wp_kses(
                            
__'<strong>Bonus:</strong> 500+ integrations with Zapier.''wpforms-lite' ),
                            [
                                
'strong' => [],
                            ]
                        ),
                    ],
                ],
            ],
            
'payments'     => [
                
'lite'     => [
                    
'status' => 'none',
                    
'text'   => [
                        
'<strong>' esc_html__'Not Available''wpforms-lite' ) . '</strong>',
                    ],
                ],
                
'basic'    => [
                    
'status' => 'none',
                    
'text'   => [
                        
'<strong>' esc_html__'Not Available''wpforms-lite' ) . '</strong>',
                    ],
                ],
                
'plus'     => [
                    
'status' => 'none',
                    
'text'   => [
                        
'<strong>' esc_html__'Not Available''wpforms-lite' ) . '</strong>',
                    ],
                ],
                
'pro'      => [
                    
'status' => 'full',
                    
'text'   => [
                        
'<strong>' esc_html__'Create Payment Forms''wpforms-lite' ) . '</strong>',
                        
esc_html__'Accept payments using Stripe (credit card) and PayPal''wpforms-lite' ),
                    ],
                ],
                
'elite'    => [
                    
'status' => 'full',
                    
'text'   => [
                        
'<strong>' esc_html__'Create Payment Forms''wpforms-lite' ) . '</strong>',
                        
esc_html__'Accept payments using Stripe, PayPal, and Authorize.Net''wpforms-lite' ),
                    ],
                ],
                
'agency'   => [
                    
'status' => 'full',
                    
'text'   => [
                        
'<strong>' esc_html__'Create Payment Forms''wpforms-lite' ) . '</strong>',
                        
esc_html__'Accept payments using Stripe, PayPal, and Authorize.Net''wpforms-lite' ),
                    ],
                ],
                
'ultimate' => [
                    
'status' => 'full',
                    
'text'   => [
                        
'<strong>' esc_html__'Create Payment Forms''wpforms-lite' ) . '</strong>',
                        
esc_html__'Accept payments using Stripe, PayPal, and Authorize.Net''wpforms-lite' ),
                    ],
                ],
            ],
            
'surveys'      => [
                
'lite'  => [
                    
'status' => 'none',
                    
'text'   => [
                        
'<strong>' esc_html__'Not Available''wpforms-lite' ) . '</strong>',
                    ],
                ],
                
'basic' => [
                    
'status' => 'none',
                    
'text'   => [
                        
'<strong>' esc_html__'Not Available''wpforms-lite' ) . '</strong>',
                    ],
                ],
                
'plus'  => [
                    
'status' => 'none',
                    
'text'   => [
                        
'<strong>' esc_html__'Not Available''wpforms-lite' ) . '</strong>',
                    ],
                ],
                
'pro'   => [
                    
'status' => 'full',
                    
'text'   => [
                        
'<strong>' esc_html__'Create interactive Surveys and Polls with beautiful reports''wpforms-lite' ) . '</strong>',
                    ],
                ],
            ],
            
'advanced'     => [
                
'lite'  => [
                    
'status' => 'none',
                    
'text'   => [
                        
'<strong>' esc_html__'No Advanced Features''wpforms-lite' ) . '</strong>',
                    ],
                ],
                
'basic' => [
                    
'status' => 'partial',
                    
'text'   => [
                        
'<strong>' esc_html__'Limited Advanced Features''wpforms-lite' ) . '</strong>',
                        
esc_html__'Multi-page Forms, File Upload Forms, Multiple Form Notifications, Conditional Form Confirmation''wpforms-lite' ),
                    ],
                ],
                
'plus'  => [
                    
'status' => 'partial',
                    
'text'   => [
                        
'<strong>' esc_html__'Limited Advanced Features''wpforms-lite' ) . '</strong>',
                        
esc_html__'Multi-page Forms, File Upload Forms, Multiple Form Notifications, Conditional Form Confirmation''wpforms-lite' ),
                    ],
                ],
                
'pro'   => [
                    
'status' => 'full',
                    
'text'   => [
                        
'<strong>' esc_html__'All Advanced Features''wpforms-lite' ) . '</strong>',
                        
esc_html__'Multi-page Forms, File Upload Forms, Multiple Form Notifications, Conditional Form Confirmation, Custom CAPTCHA, Offline Forms, Signature Forms''wpforms-lite' ),
                    ],
                ],
            ],
            
'addons'       => [
                
'lite'     => [
                    
'status' => 'none',
                    
'text'   => [
                        
'<strong>' esc_html__'No Addons Included''wpforms-lite' ) . '</strong>',
                    ],
                ],
                
'basic'    => [
                    
'status' => 'partial',
                    
'text'   => [
                        
'<strong>' esc_html__'Custom Captcha Addon included''wpforms-lite' ) . '</strong>',
                    ],
                ],
                
'plus'     => [
                    
'status' => 'partial',
                    
'text'   => [
                        
'<strong>' esc_html__'Email Marketing Addons included''wpforms-lite' ) . '</strong>',
                    ],
                ],
                
'pro'      => [
                    
'status' => 'full',
                    
'text'   => [
                        
'<strong>' esc_html__'Pro Addons Included''wpforms-lite' ) . '</strong>',
                        
esc_html__'Form Abandonment, Conversational Forms, Frontend Post Submission, User Registration, Geolocation, and more (22 total)''wpforms-lite' ),
                    ],
                ],
                
'elite'    => [
                    
'status' => 'full',
                    
'text'   => [
                        
'<strong>' esc_html__'All Addons Included''wpforms-lite' ) . '</strong>',
                        
esc_html__'Form Abandonment, Conversational Forms, Frontend Post Submission, User Registration, Geolocation, and more (27 total)''wpforms-lite' ),
                    ],
                ],
                
'ultimate' => [
                    
'status' => 'full',
                    
'text'   => [
                        
'<strong>' esc_html__'All Addons Included''wpforms-lite' ) . '</strong>',
                        
esc_html__'Form Abandonment, Conversational Forms, Frontend Post Submission, User Registration, Geolocation, and more (27 total)''wpforms-lite' ),
                    ],
                ],
                
'agency'   => [
                    
'status' => 'full',
                    
'text'   => [
                        
'<strong>' esc_html__'All Addons Included''wpforms-lite' ) . '</strong>',
                        
esc_html__'Form Abandonment, Conversational Forms, Frontend Post Submission, User Registration, Geolocation, and more (27 total)''wpforms-lite' ),
                    ],
                ],
            ],
            
'support'      => [
                
'lite'     => [
                    
'status' => 'none',
                    
'text'   => [
                        
'<strong>' esc_html__'Limited Support''wpforms-lite' ) . '</strong>',
                    ],
                ],
                
'basic'    => [
                    
'status' => 'partial',
                    
'text'   => [
                        
'<strong>' esc_html__'Standard Support''wpforms-lite' ) . '</strong>',
                    ],
                ],
                
'plus'     => [
                    
'status' => 'partial',
                    
'text'   => [
                        
'<strong>' esc_html__'Standard Support''wpforms-lite' ) . '</strong>',
                    ],
                ],
                
'pro'      => [
                    
'status' => 'full',
                    
'text'   => [
                        
'<strong>' esc_html__'Priority Support''wpforms-lite' ) . '</strong>',
                    ],
                ],
                
'elite'    => [
                    
'status' => 'full',
                    
'text'   => [
                        
'<strong>' esc_html__'Premium Support''wpforms-lite' ) . '</strong>',
                    ],
                ],
                
'ultimate' => [
                    
'status' => 'full',
                    
'text'   => [
                        
'<strong>' esc_html__'Premium Support''wpforms-lite' ) . '</strong>',
                    ],
                ],
                
'agency'   => [
                    
'status' => 'full',
                    
'text'   => [
                        
'<strong>' esc_html__'Premium Support''wpforms-lite' ) . '</strong>',
                    ],
                ],
            ],
            
'sites'        => [
                
'basic'    => [
                    
'status' => 'partial',
                    
'text'   => [
                        
'<strong>' esc_html__'1 Site''wpforms-lite' ) . '</strong>',
                    ],
                ],
                
'plus'     => [
                    
'status' => 'partial',
                    
'text'   => [
                        
'<strong>' esc_html__'3 Sites''wpforms-lite' ) . '</strong>',
                    ],
                ],
                
'pro'      => [
                    
'status' => 'full',
                    
'text'   => [
                        
'<strong>' esc_html__'5 Sites''wpforms-lite' ) . '</strong>',
                    ],
                ],
                
'elite'    => [
                    
'status' => 'full',
                    
'text'   => [
                        
'<strong>' esc_html__'Unlimited Sites''wpforms-lite' ) . '</strong>',
                    ],
                ],
                
'ultimate' => [
                    
'status' => 'full',
                    
'text'   => [
                        
'<strong>' esc_html__'Unlimited Sites''wpforms-lite' ) . '</strong>',
                    ],
                ],
                
'agency'   => [
                    
'status' => 'full',
                    
'text'   => [
                        
'<strong>' esc_html__'Unlimited Sites''wpforms-lite' ) . '</strong>',
                    ],
                ],
            ],
        ];

        
// Wrong feature?
        
if ( ! isset( $data$feature ] ) ) {
            return 
false;
        }

        
// Is a top level license?
        
$is_licenses_top in_array$licenseself::$licenses_toptrue );

        
// Wrong license type?
        
if ( ! isset( $data$feature ][ $license ] ) && ! $is_licenses_top ) {
            return 
false;
        }

        
// Some licenses have partial data.
        
if ( isset( $data$feature ][ $license ] ) ) {
            return 
$data$feature ][ $license ];
        }

        
// Top level plans has no feature difference with `pro` plan in most cases.
        
return $is_licenses_top $data$feature ]['pro'] : $data$feature ][ $license ];
    }

    
/**
     * Get the current installation license type (always lowercase).
     *
     * @since 1.5.0
     *
     * @return string
     */
    
protected function get_license_type() {

        
$type wpforms_get_license_type();

        if ( empty( 
$type ) ) {
            
$type 'lite';
        }

        return 
$type;
    }
}

new 
WPForms_About();
x

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