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
|
<?php
/** * WPForms Lite. Load Lite specific features/functionality. * * @since 1.2.0 */ class WPForms_Lite {
/** * Primary class constructor. * * @since 1.2.x */ public function __construct() {
$this->includes();
add_action( 'wpforms_form_settings_notifications', array( $this, 'form_settings_notifications' ), 8, 1 ); add_action( 'wpforms_form_settings_confirmations', array( $this, 'form_settings_confirmations' ) ); add_action( 'wpforms_builder_enqueues_before', array( $this, 'builder_enqueues' ) ); add_action( 'wpforms_admin_page', array( $this, 'entries_page' ) ); add_action( 'admin_enqueue_scripts', array( $this, 'addon_page_enqueues' ) ); add_action( 'wpforms_admin_page', array( $this, 'addons_page' ) ); add_action( 'wpforms_admin_settings_after', array( $this, 'settings_cta' ), 10, 1 ); add_action( 'wp_ajax_wpforms_lite_settings_upgrade', array( $this, 'settings_cta_dismiss' ) ); add_action( 'admin_enqueue_scripts', array( $this, 'admin_enqueues' ) );
// Entries count logging for WPForms Lite. add_action( 'wpforms_process_entry_save', array( $this, 'update_entry_count' ), 10, 3 ); }
/** * Include files. * * @since 1.0.0 */ private function includes() { }
/** * Form notification settings, supports multiple notifications. * * @since 1.2.3 * * @param object $settings */ public function form_settings_notifications( $settings ) {
$cc = wpforms_setting( 'email-carbon-copy', false ); $from_name_after = apply_filters( 'wpforms_builder_notifications_from_name_after', '' ); $from_email_after = apply_filters( 'wpforms_builder_notifications_from_email_after', '' );
// Handle backwards compatibility. if ( empty( $settings->form_data['settings']['notifications'] ) ) { /* translators: %s - form name. */ $settings->form_data['settings']['notifications'][1]['subject'] = ! empty( $settings->form_data['settings']['notification_subject'] ) ? $settings->form_data['settings']['notification_subject'] : sprintf( esc_html__( 'New %s Entry', 'wpforms-lite' ), $settings->form->post_title ); $settings->form_data['settings']['notifications'][1]['email'] = ! empty( $settings->form_data['settings']['notification_email'] ) ? $settings->form_data['settings']['notification_email'] : '{admin_email}'; $settings->form_data['settings']['notifications'][1]['sender_name'] = ! empty( $settings->form_data['settings']['notification_fromname'] ) ? $settings->form_data['settings']['notification_fromname'] : get_bloginfo( 'name' ); $settings->form_data['settings']['notifications'][1]['sender_address'] = ! empty( $settings->form_data['settings']['notification_fromaddress'] ) ? $settings->form_data['settings']['notification_fromaddress'] : '{admin_email}'; $settings->form_data['settings']['notifications'][1]['replyto'] = ! empty( $settings->form_data['settings']['notification_replyto'] ) ? $settings->form_data['settings']['notification_replyto'] : ''; } $id = 1;
echo '<div class="wpforms-panel-content-section-title">'; echo '<span id="wpforms-builder-settings-notifications-title">'; esc_html_e( 'Notifications', 'wpforms-lite' ); echo '</span>'; echo '<button class="wpforms-builder-settings-block-add upgrade-modal" data-name="' . esc_attr__( 'Multiple notifications', 'wpforms-lite' ) . '">'; esc_html_e( 'Add New Notification', 'wpforms-lite' ); echo '</button>'; echo '</div>'; ?>
<?php wpforms_panel_field( 'select', 'settings', 'notification_enable', $settings->form_data, esc_html__( 'Notifications', 'wpforms-lite' ), array( 'default' => '1', 'options' => array( '1' => esc_html__( 'On', 'wpforms-lite' ), '0' => esc_html__( 'Off', 'wpforms-lite' ), ), ) ); ?>
<div class="wpforms-notification wpforms-builder-settings-block">
<div class="wpforms-builder-settings-block-header"> <span><?php esc_html_e( 'Default Notification', 'wpforms-lite' ); ?></span> </div>
<div class="wpforms-builder-settings-block-content">
<?php wpforms_panel_field( 'text', 'notifications', 'email', $settings->form_data, esc_html__( 'Send To Email Address', 'wpforms-lite' ), array( 'default' => '{admin_email}', 'tooltip' => esc_html__( 'Enter the email address to receive form entry notifications. For multiple notifications, separate email addresses with a comma.', 'wpforms-lite' ), 'smarttags' => array( 'type' => 'fields', 'fields' => 'email', ), 'parent' => 'settings', 'subsection' => $id, 'class' => 'email-recipient', ) ); if ( $cc ) : wpforms_panel_field( 'text', 'notifications', 'carboncopy', $settings->form_data, esc_html__( 'CC', 'wpforms-lite' ), array( 'smarttags' => array( 'type' => 'fields', 'fields' => 'email', ), 'parent' => 'settings', 'subsection' => $id, ) ); endif; wpforms_panel_field( 'text', 'notifications', 'subject', $settings->form_data, esc_html__( 'Email Subject', 'wpforms-lite' ), array( /* translators: %s - form name. */ 'default' => sprintf( esc_html__( 'New Entry: %s', 'wpforms-lite' ), $settings->form->post_title ), 'smarttags' => array( 'type' => 'all', ), 'parent' => 'settings', 'subsection' => $id, ) ); wpforms_panel_field( 'text', 'notifications', 'sender_name', $settings->form_data, esc_html__( 'From Name', 'wpforms-lite' ), array( 'default' => sanitize_text_field( get_option( 'blogname' ) ), 'smarttags' => array( 'type' => 'fields', 'fields' => 'name,text', ), 'parent' => 'settings', 'subsection' => $id, 'readonly' => ! empty( $from_name_after ), 'after' => ! empty( $from_name_after ) ? '<p class="note">' . $from_name_after . '</p>' : '', ) ); wpforms_panel_field( 'text', 'notifications', 'sender_address', $settings->form_data, esc_html__( 'From Email', 'wpforms-lite' ), array( 'default' => '{admin_email}', 'smarttags' => array( 'type' => 'fields', 'fields' => 'email', ), 'parent' => 'settings', 'subsection' => $id, 'readonly' => ! empty( $from_email_after ), 'after' => ! empty( $from_email_after ) ? '<p class="note">' . $from_email_after . '</p>' : '', ) ); wpforms_panel_field( 'text', 'notifications', 'replyto', $settings->form_data, esc_html__( 'Reply-To', 'wpforms-lite' ), array( 'smarttags' => array( 'type' => 'fields', 'fields' => 'email', ), 'parent' => 'settings', 'subsection' => $id, ) ); wpforms_panel_field( 'textarea', 'notifications', 'message', $settings->form_data, esc_html__( 'Message', 'wpforms-lite' ), array( 'rows' => 6, 'default' => '{all_fields}', 'smarttags' => array( 'type' => 'all', ), 'parent' => 'settings', 'subsection' => $id, 'class' => 'email-msg', 'after' => '<p class="note">' . sprintf( /* translators: %s - {all_fields} Smart Tag. */ esc_html__( 'To display all form fields, use the %s Smart Tag.', 'wpforms-lite' ), '<code>{all_fields}</code>' ) . '</p>', ) ); ?> </div> </div>
<?php do_action( 'wpforms_builder_settings_notifications_after', 'notifications', $settings ); }
/** * Lite admin scripts and styles. * * @since 1.5.7 */ public function admin_enqueues() {
if ( ! wpforms_is_admin_page() ) { return; }
$min = wpforms_get_min_suffix();
// Admin styles. wp_enqueue_style( 'wpforms-lite-admin', WPFORMS_PLUGIN_URL . "lite/assets/css/admin{$min}.css", array(), WPFORMS_VERSION ); }
/** * Form confirmation settings, supports multiple confirmations. * * @since 1.4.8 * * @param object $settings */ public function form_settings_confirmations( $settings ) {
wp_enqueue_editor();
// Handle backwards compatibility. if ( empty( $settings->form_data['settings']['confirmations'] ) ) { $settings->form_data['settings']['confirmations'][1]['type'] = ! empty( $settings->form_data['settings']['confirmation_type'] ) ? $settings->form_data['settings']['confirmation_type'] : 'message'; $settings->form_data['settings']['confirmations'][1]['message'] = ! empty( $settings->form_data['settings']['confirmation_message'] ) ? $settings->form_data['settings']['confirmation_message'] : esc_html__( 'Thanks for contacting us! We will be in touch with you shortly.', 'wpforms-lite' ); $settings->form_data['settings']['confirmations'][1]['message_scroll'] = ! empty( $settings->form_data['settings']['confirmation_message_scroll'] ) ? $settings->form_data['settings']['confirmation_message_scroll'] : 1; $settings->form_data['settings']['confirmations'][1]['page'] = ! empty( $settings->form_data['settings']['confirmation_page'] ) ? $settings->form_data['settings']['confirmation_page'] : ''; $settings->form_data['settings']['confirmations'][1]['redirect'] = ! empty( $settings->form_data['settings']['confirmation_redirect'] ) ? $settings->form_data['settings']['confirmation_redirect'] : ''; } $id = 1;
echo '<div class="wpforms-panel-content-section-title">'; esc_html_e( 'Confirmations', 'wpforms-lite' ); echo '<button class="wpforms-builder-settings-block-add upgrade-modal" data-name="' . esc_attr__( 'Multiple confirmations', 'wpforms-lite' ) . '">'; esc_html_e( 'Add New Confirmation', 'wpforms-lite' ); echo '</button>'; echo '</div>'; ?>
<div class="wpforms-confirmation wpforms-builder-settings-block">
<div class="wpforms-builder-settings-block-header"> <span><?php esc_html_e( 'Default Confirmation', 'wpforms-lite' ); ?></span> </div>
<div class="wpforms-builder-settings-block-content">
<?php wpforms_panel_field( 'select', 'confirmations', 'type', $settings->form_data, esc_html__( 'Confirmation Type', 'wpforms-lite' ), array( 'default' => 'message', 'options' => array( 'message' => esc_html__( 'Message', 'wpforms-lite' ), 'page' => esc_html__( 'Show Page', 'wpforms-lite' ), 'redirect' => esc_html__( 'Go to URL (Redirect)', 'wpforms-lite' ), ), 'class' => 'wpforms-panel-field-confirmations-type-wrap', 'input_class' => 'wpforms-panel-field-confirmations-type', 'parent' => 'settings', 'subsection' => $id, ) ); wpforms_panel_field( 'textarea', 'confirmations', 'message', $settings->form_data, esc_html__( 'Confirmation Message', 'wpforms-lite' ), array( 'default' => esc_html__( 'Thanks for contacting us! We will be in touch with you shortly.', 'wpforms-lite' ), 'tinymce' => array( 'editor_height' => '200', ), 'input_id' => 'wpforms-panel-field-confirmations-message-' . $id, 'input_class' => 'wpforms-panel-field-confirmations-message', 'parent' => 'settings', 'subsection' => $id, ) ); wpforms_panel_field( 'checkbox', 'confirmations', 'message_scroll', $settings->form_data, esc_html__( 'Automatically scroll to the confirmation message', 'wpforms-lite' ), array( 'input_class' => 'wpforms-panel-field-confirmations-message_scroll', 'parent' => 'settings', 'subsection' => $id, ) ); $p = array(); $pages = get_pages(); foreach ( $pages as $page ) { $depth = count( $page->ancestors ); $p[ $page->ID ] = str_repeat( '-', $depth ) . ' ' . $page->post_title; } wpforms_panel_field( 'select', 'confirmations', 'page', $settings->form_data, esc_html__( 'Confirmation Page', 'wpforms-lite' ), array( 'options' => $p, 'input_class' => 'wpforms-panel-field-confirmations-page', 'parent' => 'settings', 'subsection' => $id, ) ); wpforms_panel_field( 'text', 'confirmations', 'redirect', $settings->form_data, esc_html__( 'Confirmation Redirect URL', 'wpforms-lite' ), array( 'input_class' => 'wpforms-panel-field-confirmations-redirect', 'parent' => 'settings', 'subsection' => $id, ) ); ?> </div> </div>
<?php do_action( 'wpforms_builder_settings_confirmations_after', 'confirmations', $settings ); }
/** * Load assets for lite version with the admin builder. * * @since 1.0.0 */ public function builder_enqueues() {
wp_enqueue_script( 'wpforms-builder-lite', WPFORMS_PLUGIN_URL . 'lite/assets/js/admin-builder-lite.js', array( 'jquery', 'jquery-confirm' ), WPFORMS_VERSION, false );
$strings = array( 'disable_notifications' => sprintf( wp_kses( /* translators: %s - WPForms.com docs page URL. */ __( 'You\'ve just turned off notification emails for this form. Since entries are not stored in WPForms Lite, notification emails are recommended for collecting entry details. For setup steps, <a href="%s" target="_blank" rel="noopener noreferrer">please see our notification tutorial</a>.', 'wpforms-lite' ), [ 'a' => [ 'href' => [], 'target' => [], 'rel' => [], ], ] ), 'https://wpforms.com/docs/setup-form-notification-wpforms/' ), );
$strings = apply_filters( 'wpforms_lite_builder_strings', $strings );
wp_localize_script( 'wpforms-builder-lite', 'wpforms_builder_lite', $strings ); }
/** * Display upgrade notice at the bottom on the plugin settings pages. * * @since 1.4.7 * * @param string $view */ public function settings_cta( $view ) {
if ( get_option( 'wpforms_lite_settings_upgrade', false ) || apply_filters( 'wpforms_lite_settings_upgrade', false ) ) { return; } ?> <div class="settings-lite-cta"> <a href="#" class="dismiss" title="<?php esc_attr_e( 'Dismiss this message', 'wpforms-lite' ); ?>"><i class="fa fa-times-circle" aria-hidden="true"></i></a> <h5><?php esc_html_e( 'Get WPForms Pro and Unlock all the Powerful Features', 'wpforms-lite' ); ?></h5> <p><?php esc_html_e( 'Thanks for being a loyal WPForms Lite user. Upgrade to WPForms Pro to unlock all the awesome features and experience why WPForms is consistently rated the best WordPress form builder.', 'wpforms-lite' ); ?></p> <p> <?php printf( wp_kses( /* translators: %s - star icons. */ __( 'We know that you will truly love WPForms. It has over 7000+ five star ratings (%s) and is active on over 4 million websites.', 'wpforms-lite' ), array( 'i' => array( 'class' => array(), 'aria-hidden' => array(), ), ) ), str_repeat( '<i class="fa fa-star" aria-hidden="true"></i>', 5 ) ); ?> </p> <h6><?php esc_html_e( 'Pro Features:', 'wpforms-lite' ); ?></h6> <div class="list"> <ul> <li><?php esc_html_e( 'Entry Management - view all leads in one place', 'wpforms-lite' ); ?></li> <li><?php esc_html_e( 'All form features like file upload, pagination, etc', 'wpforms-lite' ); ?></li> <li><?php esc_html_e( 'Create surveys & polls with the surveys addon', 'wpforms-lite' ); ?></li> <li><?php esc_html_e( 'WordPress user registration and login forms', 'wpforms-lite' ); ?></li> <li><?php esc_html_e( 'Create payment forms with Stripe and PayPal', 'wpforms-lite' ); ?></li> </ul> <ul> <li><?php esc_html_e( 'Powerful Conditional Logic so you can create smart forms', 'wpforms-lite' ); ?></li> <li><?php esc_html_e( '500+ integrations with different marketing & payment services', 'wpforms-lite' ); ?></li> <li><?php esc_html_e( 'Collect signatures, geo-location data, and more', 'wpforms-lite' ); ?></li> <li><?php esc_html_e( 'Accept user submitted content with Post Submissions addon', 'wpforms-lite' ); ?></li> <li><?php esc_html_e( 'Bonus form templates, form abandonment, and more', 'wpforms-lite' ); ?></li> </ul> </div> <p> <a href="<?php echo esc_url( wpforms_admin_upgrade_link( 'settings-upgrade' ) ); ?>" target="_blank" rel="noopener noreferrer"> <?php esc_html_e( 'Get WPForms Pro Today and Unlock all the Powerful Features »', 'wpforms-lite' ); ?> </a> </p> <p> <?php echo wp_kses( __( '<strong>Bonus:</strong> WPForms Lite users get <span class="green">50% off regular price</span>, automatically applied at checkout.', 'wpforms-lite' ), array( 'strong' => array(), 'span' => array( 'class' => array(), ), ) ); ?> </p> </div> <script type="text/javascript"> jQuery( function ( $ ) { $( document ).on( 'click', '.settings-lite-cta .dismiss', function ( event ) { event.preventDefault(); $.post( ajaxurl, { action: 'wpforms_lite_settings_upgrade' } ); $( '.settings-lite-cta' ).remove(); } ); } ); </script> <?php }
/** * Dismiss upgrade notice at the bottom on the plugin settings pages. * * @since 1.4.7 */ public function settings_cta_dismiss() {
if ( ! wpforms_current_user_can() ) { wp_send_json_error(); }
update_option( 'wpforms_lite_settings_upgrade', time() );
wp_send_json_success(); }
/** * Notify user that entries is a pro feature. * * @since 1.0.0 */ public function entries_page() {
if ( ! isset( $_GET['page'] ) || 'wpforms-entries' !== $_GET['page'] ) { return; } ?>
<style type="text/css"> .wpforms-admin-content { -webkit-filter: blur(3px); -moz-filter: blur(3px); -ms-filter: blur(3px); -o-filter: blur(3px); filter: blur(3px); }
.wpforms-admin-content a { pointer-events: none; cursor: default; }
.ie-detected { position: absolute; top: 0; width: 100%; height: 100%; left: 0; background-color: #f1f1f1; opacity: 0.65; z-index: 10; }
.wpforms-admin-content, .wpforms-admin-content-wrap { position: relative; }
.entries-modal { text-align: center; width: 730px; box-shadow: 0 0 60px 30px rgba(0, 0, 0, 0.15); border-radius: 3px; position: absolute; top: 75px; left: 50%; margin: 0 auto 0 -365px; z-index: 100; }
.entries-modal *, .entries-modal *::before, .entries-modal *::after { -webkit-box-sizing: border-box; -moz-box-sizing: border-box; box-sizing: border-box; }
.entries-modal h2 { font-size: 20px; margin: 0 0 16px 0; padding: 0; }
.entries-modal p { font-size: 16px; color: #666; margin: 0 0 30px 0; padding: 0; }
.entries-modal-content { background-color: #fff; border-radius: 3px 3px 0 0; padding: 40px; }
.entries-modal ul { float: left; width: 50%; margin: 0; padding: 0 0 0 30px; text-align: left; }
.entries-modal li { color: #666; font-size: 16px; padding: 6px 0; }
.entries-modal li .fa { color: #2a9b39; margin: 0 8px 0 0; }
.entries-modal-button { border-radius: 0 0 3px 3px; padding: 30px; background: #f5f5f5; text-align: center; }
#wpforms-entries-list .entries .column-indicators > a { float: left; } </style> <script type="text/javascript"> jQuery( function ( $ ) { var userAgent = window.navigator.userAgent, onlyIEorEdge = /msie\s|trident\/|edge\//i.test( userAgent ) && ! ! (document.uniqueID || window.MSInputMethodContext), checkVersion = (onlyIEorEdge && + (/(edge\/|rv:|msie\s)([\d.]+)/i.exec( userAgent )[ 2 ])) || NaN; if ( ! isNaN( checkVersion ) ) { $( '#ie-wrap' ).addClass( 'ie-detected' ); } } ); </script>
<div id="wpforms-entries-list" class="wrap wpforms-admin-wrap"> <h1 class="page-title">Entries</h1> <div class="wpforms-admin-content-wrap">
<div class="entries-modal"> <div class="entries-modal-content"> <h2><?php esc_html_e( 'View and Manage All Your Form Entries inside WordPress', 'wpforms-lite' ); ?></h2> <p> <strong><?php esc_html_e( 'Form entries are not stored in WPForms Lite.', 'wpforms-lite' ); ?></strong><br> <?php esc_html_e( 'Once you upgrade to WPForms Pro, all future form entries will be stored in your WordPress database and displayed on this Entries screen.', 'wpforms-lite' ); ?> </p> <div class="wpforms-clear"> <ul class="left"> <li><i class="fa fa-check" aria-hidden="true"></i> <?php esc_html_e( 'View Entries in Dashboard', 'wpforms-lite' ); ?></li> <li><i class="fa fa-check" aria-hidden="true"></i> <?php esc_html_e( 'Export Entries in a CSV File', 'wpforms-lite' ); ?></li> <li><i class="fa fa-check" aria-hidden="true"></i> <?php esc_html_e( 'Add Notes / Comments', 'wpforms-lite' ); ?></li> <li><i class="fa fa-check" aria-hidden="true"></i> <?php esc_html_e( 'Save Favorite Entries', 'wpforms-lite' ); ?></li> </ul> <ul class="right"> <li><i class="fa fa-check" aria-hidden="true"></i> <?php esc_html_e( 'Mark Read / Unread', 'wpforms-lite' ); ?></li> <li><i class="fa fa-check" aria-hidden="true"></i> <?php esc_html_e( 'Print Entries', 'wpforms-lite' ); ?></li> <li><i class="fa fa-check" aria-hidden="true"></i> <?php esc_html_e( 'Resend Notifications', 'wpforms-lite' ); ?></li> <li><i class="fa fa-check" aria-hidden="true"></i> <?php esc_html_e( 'See Geolocation Data', 'wpforms-lite' ); ?></li> </ul> </div> </div> <div class="entries-modal-button"> <a href="<?php echo esc_url( wpforms_admin_upgrade_link( 'entries' ) ); ?>" class="wpforms-btn wpforms-btn-lg wpforms-btn-orange wpforms-upgrade-modal" target="_blank" rel="noopener noreferrer"> <?php esc_html_e( 'Upgrade to WPForms Pro Now', 'wpforms-lite' ); ?> </a> <br> <p style="margin: 10px 0 0;font-style:italic;font-size: 13px;">and start collecting entries!</p> </div> </div>
<div class="wpforms-admin-content"> <div id="ie-wrap"></div> <div class="form-details wpforms-clear"> <span class="form-details-sub">Select Form</span> <h3 class="form-details-title"> Contact Us <div class="form-selector"> <a href="#" title="Open form selector" class="toggle dashicons dashicons-arrow-down-alt2"></a> <div class="form-list" style="display: none;"> <ul> <li></li> </ul> </div> </div> </h3> <div class="form-details-actions"> <a href="#" class="form-details-actions-edit"><span class="dashicons dashicons-edit"></span> Edit This Form</a> <a href="#" class="form-details-actions-preview" target="_blank" rel="noopener noreferrer"><span class="dashicons dashicons-visibility"></span> Preview Form</a> <a href="#" class="form-details-actions-export"><span class="dashicons dashicons-migrate"></span> Export All (CSV)</a> <a href="#" class="form-details-actions-read"><span class="dashicons dashicons-marker"></span> Mark All Read</a> </div> </div> <form id="wpforms-entries-table"> <ul class="subsubsub"> <li class="all"><a href="#" class="current">All <span class="count">(<span class="total-num">10</span>)</span></a> |</li> <li class="unread"><a href="#">Unread <span class="count">(<span class="unread-num">10</span>)</span></a> |</li> <li class="starred"><a href="#">Starred <span class="count">(<span class="starred-num">0</span>)</span></a></li> </ul> <div class="tablenav top"> <div class="alignleft actions bulkactions"> <label for="bulk-action-selector-top" class="screen-reader-text">Select bulk action</label> <select name="action" id="bulk-action-selector-top"> <option value="-1">Bulk Actions</option> </select> <input type="submit" id="doaction" class="button action" value="Apply"> </div> <div class="tablenav-pages one-page"> <span class="displaying-num">10 items</span> <span class="pagination-links"> <span class="tablenav-pages-navspan" aria-hidden="true">«</span> <span class="tablenav-pages-navspan" aria-hidden="true">‹</span> <span class="paging-input"> <label for="current-page-selector" class="screen-reader-text">Current Page</label> <input class="current-page" id="current-page-selector" type="text" name="paged" value="1" size="1" aria-describedby="table-paging"> <span class="tablenav-paging-text"> of <span class="total-pages">1</span></span> </span> <span class="tablenav-pages-navspan" aria-hidden="true">›</span> <span class="tablenav-pages-navspan" aria-hidden="true">»</span> </span> </div> <br class="clear"> </div> <table class="wp-list-table widefat fixed striped entries"> <thead> <tr> <td id="cb" class="manage-column column-cb check-column"> <label class="screen-reader-text" for="cb-select-all-1">Select All</label> <input id="cb-select-all-1" type="checkbox"> </td> <th scope="col" id="indicators" class="manage-column column-indicators column-primary"></th> <th scope="col" id="wpforms_field_0" class="manage-column column-wpforms_field_0">Name</th> <th scope="col" id="wpforms_field_1" class="manage-column column-wpforms_field_1">Email</th> <th scope="col" id="wpforms_field_2" class="manage-column column-wpforms_field_2">Comment or Message</th> <th scope="col" id="date" class="manage-column column-date sortable desc"> <a href="#"><span>Date</span><span class="sorting-indicator"></span></a> </th> <th scope="col" id="actions" class="manage-column column-actions">Actions</th> </tr> </thead> <tbody id="the-list" data-wp-lists="list:entry"> <tr> <th scope="row" class="check-column"><input type="checkbox" name="entry_id[]" value="1088"></th> <td class="indicators column-indicators has-row-actions column-primary" data-colname=""> <a href="#" class="indicator-star star" data-id="1088" title="Star entry"><span class="dashicons dashicons-star-filled"></span></a> <a href="#" class="indicator-read read" data-id="1088" title="Mark entry read"><span class="dashicons dashicons-marker"></span></a> <button type="button" class="toggle-row"><span class="screen-reader-text">Show more details</span></button> </td> <td class="wpforms_field_0 column-wpforms_field_0" data-colname="Name">David Wells</td> <td class="wpforms_field_1 column-wpforms_field_1" data-colname="Email">DavidMWells@example.com</td> <td class="wpforms_field_2 column-wpforms_field_2" data-colname="Comment or Message"> Vivamus sit amet dolor arcu. Praesent fermentum semper justo, nec scelerisq… </td> <td class="date column-date" data-colname="Date">July 27, 2017</td> <td class="actions column-actions" data-colname="Actions"> <a href="#" title="View Form Entry" class="view">View</a> <span class="sep">|</span> <a href="#" title="Delete Form Entry" class="delete">Delete</a> </td> </tr> <tr> <th scope="row" class="check-column"><input type="checkbox" name="entry_id[]" value="1087"></th> <td class="indicators column-indicators has-row-actions column-primary" data-colname=""> <a href="#" class="indicator-star star" data-id="1087" title="Star entry"><span class="dashicons dashicons-star-filled"></span></a> <a href="#" class="indicator-read read" data-id="1087" title="Mark entry read"><span class="dashicons dashicons-marker"></span></a> <button type="button" class="toggle-row"><span class="screen-reader-text">Show more details</span></button> </td> <td class="wpforms_field_0 column-wpforms_field_0" data-colname="Name">Jennifer Selzer</td> <td class="wpforms_field_1 column-wpforms_field_1" data-colname="Email">JenniferLSelzer@example.com</td> <td class="wpforms_field_2 column-wpforms_field_2" data-colname="Comment or Message"> Maecenas sollicitudin felis et justo elementum, et lobortis justo vulputate… </td> <td class="date column-date" data-colname="Date">July 27, 2017</td> <td class="actions column-actions" data-colname="Actions"> <a href="#" title="View Form Entry" class="view">View</a> <span class="sep">|</span> <a href="#" title="Delete Form Entry" class="delete">Delete</a> </td> </tr> <tr> <th scope="row" class="check-column"><input type="checkbox" name="entry_id[]" value="1086"></th> <td class="indicators column-indicators has-row-actions column-primary" data-colname=""> <a href="#" class="indicator-star star" data-id="1086" title="Star entry"><span class="dashicons dashicons-star-filled"></span></a> <a href="#" class="indicator-read read" data-id="1086" title="Mark entry read"><span class="dashicons dashicons-marker"></span></a> <button type="button" class="toggle-row"><span class="screen-reader-text">Show more details</span></button> </td> <td class="wpforms_field_0 column-wpforms_field_0" data-colname="Name">Philip Norton</td> <td class="wpforms_field_1 column-wpforms_field_1" data-colname="Email">PhilipTNorton@example.com</td> <td class="wpforms_field_2 column-wpforms_field_2" data-colname="Comment or Message"> Etiam cursus orci tellus, ut vehicula odio mattis sit amet. Curabitur eros … </td> <td class="date column-date" data-colname="Date">July 27, 2017</td> <td class="actions column-actions" data-colname="Actions"> <a href="#" title="View Form Entry" class="view">View</a> <span class="sep">|</span> <a href="#" title="Delete Form Entry" class="delete">Delete</a> </td> </tr> <tr> <th scope="row" class="check-column"><input type="checkbox" name="entry_id[]" value="1085"></th> <td class="indicators column-indicators has-row-actions column-primary" data-colname=""> <a href="#" class="indicator-star star" data-id="1085" title="Star entry"><span class="dashicons dashicons-star-filled"></span></a> <a href="#" class="indicator-read read" data-id="1085" title="Mark entry read"><span class="dashicons dashicons-marker"></span></a> <button type="button" class="toggle-row"><span class="screen-reader-text">Show more details</span></button> </td> <td class="wpforms_field_0 column-wpforms_field_0" data-colname="Name">Kevin Gregory</td> <td class="wpforms_field_1 column-wpforms_field_1" data-colname="Email">KevinJGregory@example.com</td> <td class="wpforms_field_2 column-wpforms_field_2" data-colname="Comment or Message"> Cras vel orci congue, tincidunt eros vitae, consectetur risus. Proin enim m… </td> <td class="date column-date" data-colname="Date">July 27, 2017</td> <td class="actions column-actions" data-colname="Actions"> <a href="#" title="View Form Entry" class="view">View</a> <span class="sep">|</span> <a href="#" title="Delete Form Entry" class="delete">Delete</a> </td> </tr> <tr> <th scope="row" class="check-column"><input type="checkbox" name="entry_id[]" value="1084"></th> <td class="indicators column-indicators has-row-actions column-primary" data-colname=""> <a href="#" class="indicator-star star" data-id="1084" title="Star entry"><span class="dashicons dashicons-star-filled"></span></a> <a href="#" class="indicator-read read" data-id="1084" title="Mark entry read"><span class="dashicons dashicons-marker"></span></a> <button type="button" class="toggle-row"><span class="screen-reader-text">Show more details</span></button> </td> <td class="wpforms_field_0 column-wpforms_field_0" data-colname="Name">John Heiden</td> <td class="wpforms_field_1 column-wpforms_field_1" data-colname="Email">JohnCHeiden@example.com</td> <td class="wpforms_field_2 column-wpforms_field_2" data-colname="Comment or Message"> Fusce consequat dui ut orci tempus cursus. Vivamus ut neque id ipsum tempor… </td> <td class="date column-date" data-colname="Date">July 27, 2017</td> <td class="actions column-actions" data-colname="Actions"> <a href="#" title="View Form Entry" class="view">View</a> <span class="sep">|</span> <a href="#" title="Delete Form Entry" class="delete">Delete</a> </td> </tr> <tr> <th scope="row" class="check-column"><input type="checkbox" name="entry_id[]" value="1083"></th> <td class="indicators column-indicators has-row-actions column-primary" data-colname=""> <a href="#" class="indicator-star star" data-id="1083" title="Star entry"><span class="dashicons dashicons-star-filled"></span></a> <a href="#" class="indicator-read read" data-id="1083" title="Mark entry read"><span class="dashicons dashicons-marker"></span></a> <button type="button" class="toggle-row"><span class="screen-reader-text">Show more details</span></button> </td> <td class="wpforms_field_0 column-wpforms_field_0" data-colname="Name">Laura Shuler</td> <td class="wpforms_field_1 column-wpforms_field_1" data-colname="Email">LauraDShuler@example.com</td> <td class="wpforms_field_2 column-wpforms_field_2" data-colname="Comment or Message"> In ac finibus erat. Curabitur sit amet ante nec tellus commodo commodo non … </td> <td class="date column-date" data-colname="Date">July 27, 2017</td> <td class="actions column-actions" data-colname="Actions"> <a href="#" title="View Form Entry" class="view">View</a> <span class="sep">|</span> <a href="#" title="Delete Form Entry" class="delete">Delete</a> </td> </tr> <tr> <th scope="row" class="check-column"><input type="checkbox" name="entry_id[]" value="1082"></th> <td class="indicators column-indicators has-row-actions column-primary" data-colname=""> <a href="#" class="indicator-star star" data-id="1082" title="Star entry"><span class="dashicons dashicons-star-filled"></span></a> <a href="#" class="indicator-read read" data-id="1082" title="Mark entry read"><span class="dashicons dashicons-marker"></span></a> <button type="button" class="toggle-row"><span class="screen-reader-text">Show more details</span></button> </td> <td class="wpforms_field_0 column-wpforms_field_0" data-colname="Name">Walter Sullivan</td> <td class="wpforms_field_1 column-wpforms_field_1" data-colname="Email">WalterPSullivan@example.com</td> <td class="wpforms_field_2 column-wpforms_field_2" data-colname="Comment or Message"> Phasellus semper magna leo, ut porta nibh pretium sed. Interdum et malesuad… </td> <td class="date column-date" data-colname="Date">July 27, 2017</td> <td class="actions column-actions" data-colname="Actions"> <a href="#" title="View Form Entry" class="view">View</a> <span class="sep">|</span> <a href="#" title="Delete Form Entry" class="delete">Delete</a> </td> </tr> <tr> <th scope="row" class="check-column"><input type="checkbox" name="entry_id[]" value="1081"></th> <td class="indicators column-indicators has-row-actions column-primary" data-colname=""> <a href="#" class="indicator-star star" data-id="1081" title="Star entry"><span class="dashicons dashicons-star-filled"></span></a> <a href="#" class="indicator-read read" data-id="1081" title="Mark entry read"><span class="dashicons dashicons-marker"></span></a> <button type="button" class="toggle-row"><span class="screen-reader-text">Show more details</span></button> </td> <td class="wpforms_field_0 column-wpforms_field_0" data-colname="Name">Gary Austin</td> <td class="wpforms_field_1 column-wpforms_field_1" data-colname="Email">GaryJAustin@example.com</td> <td class="wpforms_field_2 column-wpforms_field_2" data-colname="Comment or Message"> Lorem ipsum dolor sit amet, consectetur adipiscing elit. Donec sit amet ero… </td> <td class="date column-date" data-colname="Date">July 27, 2017</td> <td class="actions column-actions" data-colname="Actions"> <a href="#" title="View Form Entry" class="view">View</a> <span class="sep">|</span> <a href="#" title="Delete Form Entry" class="delete">Delete</a> </td> </tr> <tr> <th scope="row" class="check-column"><input type="checkbox" name="entry_id[]" value="1080"></th> <td class="indicators column-indicators has-row-actions column-primary" data-colname=""> <a href="#" class="indicator-star star" data-id="1080" title="Star entry"><span class="dashicons dashicons-star-filled"></span></a> <a href="#" class="indicator-read read" data-id="1080" title="Mark entry read"><span class="dashicons dashicons-marker"></span></a> <button type="button" class="toggle-row"><span class="screen-reader-text">Show more details</span></button> </td> <td class="wpforms_field_0 column-wpforms_field_0" data-colname="Name">Mark Frahm</td> <td class="wpforms_field_1 column-wpforms_field_1" data-colname="Email">MarkTFrahm@example.com</td> <td class="wpforms_field_2 column-wpforms_field_2" data-colname="Comment or Message"> Proin euismod tellus quis tortor bibendum, a pulvinar libero fringilla. Cur… </td> <td class="date column-date" data-colname="Date">July 27, 2017</td> <td class="actions column-actions" data-colname="Actions"> <a href="#" title="View Form Entry" class="view">View</a> <span class="sep">|</span> <a href="#" title="Delete Form Entry" class="delete">Delete</a> </td> </tr> <tr> <th scope="row" class="check-column"><input type="checkbox" name="entry_id[]" value="1079"></th> <td class="indicators column-indicators has-row-actions column-primary" data-colname=""> <a href="#" class="indicator-star star" data-id="1079" title="Star entry"><span class="dashicons dashicons-star-filled"></span></a> <a href="#" class="indicator-read read" data-id="1079" title="Mark entry read"><span class="dashicons dashicons-marker"></span></a> <button type="button" class="toggle-row"><span class="screen-reader-text">Show more details</span></button> </td> <td class="wpforms_field_0 column-wpforms_field_0" data-colname="Name">Linda Reynolds</td> <td class="wpforms_field_1 column-wpforms_field_1" data-colname="Email">LindaJReynolds@example.com</td> <td class="wpforms_field_2 column-wpforms_field_2" data-colname="Comment or Message"> Cras sodales sagittis maximus. Nunc vestibulum orci quis orci pulvinar vulp… </td> <td class="date column-date" data-colname="Date">July 27, 2017</td> <td class="actions column-actions" data-colname="Actions"> <a href="#" title="View Form Entry" class="view">View</a> <span class="sep">|</span> <a href="#" title="Delete Form Entry" class="delete">Delete</a> </td> </tr> </tbody> <tfoot> <tr> <td class="manage-column column-cb check-column"> <label class="screen-reader-text" for="cb-select-all-2">Select All</label> <input id="cb-select-all-2" type="checkbox"> </td> <th scope="col" class="manage-column column-indicators column-primary"></th> <th scope="col" class="manage-column column-wpforms_field_0">Name</th> <th scope="col" class="manage-column column-wpforms_field_1">Email</th> <th scope="col" class="manage-column column-wpforms_field_2">Comment or Message</th> <th scope="col" class="manage-column column-date sortable desc"> <a href="#"><span>Date</span><span class="sorting-indicator"></span></a> </th> <th scope="col" class="manage-column column-actions">Actions</th> </tr> </tfoot> </table> </form> </div> </div> </div> <div class="clear"></div>
<?php }
/** * Add appropriate styling to addons page. * * @since 1.0.4 */ public function addon_page_enqueues() {
if ( ! isset( $_GET['page'] ) || 'wpforms-addons' !== $_GET['page'] ) { return; }
// JavaScript. wp_enqueue_script( 'jquery-matchheight', WPFORMS_PLUGIN_URL . 'assets/js/jquery.matchHeight-min.js', array( 'jquery' ), '0.7.0', false );
wp_enqueue_script( 'listjs', WPFORMS_PLUGIN_URL . 'assets/js/list.min.js', array( 'jquery' ), '1.5.0' ); }
/** * Notify user that addons are a pro feature. * * @since 1.0.0 */ public function addons_page() {
if ( ! isset( $_GET['page'] ) || 'wpforms-addons' !== $_GET['page'] ) { return; }
$upgrade = wpforms_admin_upgrade_link( 'addons' ); $addons = array( array( 'name' => 'ActiveCampaign', 'desc' => 'WPForms ActiveCampaign addon lets you add contacts to your account, record events, add notes to contacts, and more.', 'icon' => 'addon-icon-activecampaign.png', ), array( 'name' => 'Authorize.Net', 'desc' => 'WPForms Authorize.Net addon allows you to connect your WordPress site with Authorize.Net to easily collect payments, donations, and online orders.', 'icon' => 'addon-icon-authorize-net.png', ), array( 'name' => 'Aweber', 'desc' => 'WPForms AWeber addon allows you to create AWeber newsletter signup forms in WordPress, so you can grow your email list.', 'icon' => 'addon-icon-aweber.png', ), array( 'name' => 'Campaign Monitor', 'desc' => 'WPForms Campaign Monitor addon allows you to create Campaign Monitor newsletter signup forms in WordPress, so you can grow your email list.', 'icon' => 'addon-icon-campaign-monitor.png', ), array( 'name' => 'Conversational Forms', 'desc' => 'Want to improve your form completion rate? Conversational Forms addon by WPForms helps make your web forms feel more human, so you can improve your conversions. Interactive web forms made easy.', 'icon' => 'addon-icon-conversational-forms.png', ), array( 'name' => 'Custom Captcha', 'desc' => 'WPForms Custom Captcha addon allows you to define custom questions or use random math questions as captcha to combat spam form submissions.', 'icon' => 'addon-icon-captcha.png', ), array( 'name' => 'Drip', 'desc' => 'WPForms Drip addon allows you to create Drip newsletter signup forms in WordPress, so you can grow your email list.', 'icon' => 'addon-icon-drip.png', ), array( 'name' => 'Form Abandonment', 'desc' => 'Unlock more leads by capturing partial entries from your forms. Easily follow up with interested leads and turn them into loyal customers.', 'icon' => 'addon-icon-form-abandonment.png', ), array( 'name' => 'Form Locker', 'desc' => 'WPForms\' Form Locker addon allows you to lock your WordPress forms with various permissions and access control rules including passwords, members-only, specific date / time, max entry limit, and more.', 'icon' => 'addon-icons-locker.png', ), array( 'name' => 'Form Pages', 'desc' => 'Want to improve your form conversions? WPForms Form Pages addon allows you to create completely custom "distraction-free" form landing pages to boost conversions (without writing any code).', 'icon' => 'addon-icon-form-pages.png', ), array( 'name' => 'Form Templates Pack', 'desc' => 'Choose from a huge variety of pre-built templates for every niche and industry, so you can build all kinds of web forms in minutes, not hours.', 'icon' => 'addon-icon-form-templates-pack.png', ), array( 'name' => 'Geolocation', 'desc' => 'WPForms Geolocation addon allows you to collect and store your website visitors geolocation data along with their form submission.', 'icon' => 'addon-icon-geolocation.png', ), array( 'name' => 'GetResponse', 'desc' => 'WPForms GetResponse addon allows you to create GetResponse newsletter signup forms in WordPress, so you can grow your email list.', 'icon' => 'addon-icon-getresponse.png', ), array( 'name' => 'Mailchimp', 'desc' => 'WPForms Mailchimp addon allows you to create Mailchimp newsletter signup forms in WordPress, so you can grow your email list.', 'icon' => 'addon-icon-mailchimp.png', ), array( 'name' => 'Offline Forms', 'desc' => 'WPForms Offline Forms addon allows you to enable offline mode so users can save their entered data and submit when their internet connection is restored.', 'icon' => 'addon-icon-offline-forms.png', ), array( 'name' => 'PayPal Standard', 'desc' => 'WPForms PayPal addon allows you to connect your WordPress site with PayPal to easily collect payments, donations, and online orders.', 'icon' => 'addon-icon-paypal.png', ), array( 'name' => 'Post Submissions', 'desc' => 'WPForms Post Submissions addon makes it easy to have user-submitted content in WordPress. This front-end post submission form allow your users to submit blog posts without logging into the admin area.', 'icon' => 'addon-icon-post-submissions.png', ), array( 'name' => 'Salesforce', 'desc' => 'WPForms Salesforce addon lets you add contacts to your Salesforce CRM account, so you can easily manage leads and relationships.', 'icon' => 'addon-icon-salesforce.png', ), array( 'name' => 'Signatures', 'desc' => 'WPForms Signatures addon makes it easy for users to sign your forms. This WordPress signatures plugin will allow your users to sign contracts and other agreements with their mouse or touch screen.', 'icon' => 'addon-icon-signatures.png', ), array( 'name' => 'Stripe', 'desc' => 'WPForms Stripe addon allows you to connect your WordPress site with Stripe to easily collect payments, donations, and online orders.', 'icon' => 'addon-icon-stripe.png', ), array( 'name' => 'Surveys and Polls', 'desc' => 'WPForms Surveys and Polls allows you easily create surveys forms and analyze the data with interactive reports.', 'icon' => 'addon-icons-surveys-polls.png', ), array( 'name' => 'User Registration', 'desc' => 'WPForms User Registration addon allows you to create custom WordPress user registration forms.', 'icon' => 'addon-icon-user-registration.png', ), array( 'name' => 'Webhooks', 'desc' => 'The Webhooks addon allows you to send form entry data to secondary tools and external services. No code required, and no need for a third party connector.', 'icon' => 'addon-icon-webhooks.png', ), array( 'name' => 'Zapier', 'desc' => 'WPForms Zapier addon allows you to connect your WordPress forms with over 500+ web apps. The integration possibilities here are just endless.', 'icon' => 'addon-icon-zapier.png', ), ) ?>
<div id="wpforms-admin-addons" class="wrap wpforms-admin-wrap"> <h1 class="page-title"> <?php esc_html_e( 'WPForms Addons', 'wpforms-lite' ); ?> <input type="search" placeholder="<?php esc_html_e( 'Search Addons', 'wpforms-lite' ); ?>" id="wpforms-admin-addons-search"> </h1> <div class="notice notice-info" style="display: block;"> <p><strong><?php esc_html_e( 'Form Addons are a PRO feature.', 'wpforms-lite' ); ?></strong></p> <p><?php esc_html_e( 'Please upgrade to the PRO plan to unlock them and more awesome features.', 'wpforms-lite' ); ?></p> <p> <a href="<?php echo esc_url( $upgrade ); ?>" class="wpforms-btn wpforms-btn-orange wpforms-btn-md" rel="noopener noreferrer"> <?php esc_html_e( 'Upgrade Now', 'wpforms-lite' ); ?> </a> </p> </div> <div class="wpforms-admin-content"> <div id="wpforms-admin-addons-list"> <div class="list"> <?php foreach ( $addons as $addon ) : ?> <div class="addon-container"> <div class="addon-item"> <div class="details wpforms-clear" style=""> <img src="<?php echo esc_url( WPFORMS_PLUGIN_URL . 'assets/images/' . $addon['icon'] ); ?>"> <h5 class="addon-name"> <?php printf( /* translators: %s - addon name. */ esc_html__( '%s Addon', 'wpforms-lite' ), $addon['name'] ); ?> </h5> <p class="addon-desc"><?php echo $addon['desc']; ?></p> </div> <div class="actions wpforms-clear"> <div class="upgrade-button"> <a href="<?php echo esc_url( $upgrade ); ?>" target="_blank" rel="noopener noreferrer" class="wpforms-btn wpforms-btn-light-grey wpforms-upgrade-modal"> <?php esc_html_e( 'Upgrade Now', 'wpforms-lite' ); ?> </a> </div> </div> </div> </div> <?php endforeach; ?> </div> </div> </div> </div>
<?php }
/** * Increase entries count once a form is submitted. * * @since 1.5.9 * * @param array $fields Set of form fields. * @param array $entry Entry contents. * @param int|string $form_id Form ID. */ public function update_entry_count( $fields, $entry, $form_id ) {
if ( ! apply_filters( 'wpforms_dash_widget_allow_entries_count_lite', true ) ) { return; }
$form_id = absint( $form_id );
if ( empty( $form_id ) ) { return; }
$count = absint( get_post_meta( $form_id, 'wpforms_entries_count', true ) ); update_post_meta( $form_id, 'wpforms_entries_count', $count + 1 ); } }
new WPForms_Lite();
|