ninja-forms.php
47.8 KB
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
<?php
/*
Plugin Name: Ninja Forms
Plugin URI: http://ninjaforms.com/?utm_source=Ninja+Forms+Plugin&utm_medium=readme
Description: Ninja Forms is a webform builder with unparalleled ease of use and features.
Version: 3.6.14
Author: Saturday Drive
Author URI: http://ninjaforms.com/?utm_source=Ninja+Forms+Plugin&utm_medium=Plugins+WP+Dashboard
Text Domain: ninja-forms
Domain Path: /lang/
Copyright 2016 WP Ninjas.
*/
require_once dirname( __FILE__ ) . '/lib/NF_VersionSwitcher.php';
require_once dirname( __FILE__ ) . '/lib/NF_Tracking.php';
require_once dirname( __FILE__ ) . '/lib/NF_Conversion.php';
require_once dirname( __FILE__ ) . '/lib/NF_ExceptionHandlerJS.php';
require_once dirname( __FILE__ ) . '/lib/Conversion/Calculations.php';
require_once dirname( __FILE__ ) . '/includes/Integrations/sendwp.php';
// Services require PHP v5.6+
if( version_compare( PHP_VERSION, '5.6', '>=' ) ) {
include_once dirname( __FILE__ ) . '/services/bootstrap.php';
}
function ninja_forms_three_table_exists(){
global $wpdb;
$table_name = $wpdb->prefix . 'nf3_forms';
return ( $wpdb->get_var("SHOW TABLES LIKE '$table_name'") == $table_name );
}
if( get_option( 'ninja_forms_load_deprecated', FALSE ) && ! ( isset( $_POST[ 'nf2to3' ] ) && ( defined( 'DOING_AJAX' ) && DOING_AJAX ) ) ){
require_once dirname(__FILE__).'/includes/Integrations/LoadLegacy.php';
$legacyLoader = new NF_LoadLegacy();
add_action('plugins_loaded',array($legacyLoader,'handle'));
} else {
include_once 'lib/NF_Upgrade.php';
include_once 'lib/NF_AddonChecker.php';
include_once plugin_dir_path( __FILE__ ) . 'includes/deprecated.php';
/**
* Class Ninja_Forms
*/
final class Ninja_Forms
{
/**
* @since 3.0
*/
const VERSION = '3.6.14';
/**
* @since 3.4.0
*/
const DB_VERSION = '1.4';
const WP_MIN_VERSION = '5.0';
/**
* @var Ninja_Forms
* @since 2.7
*/
private static $instance;
/**
* Plugin Directory
*
* @since 3.0
* @var string $dir
*/
public static $dir = '';
/**
* Plugin Database Version
*
* This may be overwritten at a later point in this file.
*
* @since 3.4.0
* @var string $db_version
*/
public static $db_version = self::DB_VERSION;
/**
* Plugin URL
*
* @since 3.0
* @var string $url
*/
public static $url = '';
/**
* Admin Menus
*
* @since 3.0
* @var array
*/
public $menus = array();
/**
* AJAX Controllers
*
* @since 3.0
* @var array
*/
public $controllers = array();
/**
* Form Fields
*
* @since 3.0
* @var array
*/
public $fields = array();
/**
* Form Actions
*
* @since 3.0
* @var array
*/
public $actions = array();
/**
* Merge Tags
*
* @since 3.0
* @var array
*/
public $merge_tags = array();
/**
* Metaboxes
*
* @since 3.0
* @var array
*/
public $metaboxes = array();
/**
* Model Factory
*
* @var object
*/
public $factory = '';
/**
* Logger
*
* @var string
*/
protected $_logger = '';
/**
* Dispatcher
*
* @var string
*/
protected $_dispatcher = '';
/**
* @var NF_Session
*/
protected $session = '';
/**
* @var NF_Tracking
*/
public $tracking;
/**
*
* @var NF_Handlers_FieldsetRepeater
*/
public $fieldsetRepeater;
/**
* Plugin Settings
*
* @since 3.0
* @var array
*/
protected $settings = array();
protected $requests = array();
protected $processes = array();
/**
* Main Ninja_Forms Instance
*
* Insures that only one instance of Ninja_Forms exists in memory at any one
* time. Also prevents needing to define globals all over the place.
*
* @since 2.7
* @static
* @staticvar array $instance
* @return Ninja_Forms Highlander Instance
*/
public static function instance()
{
if ( ! isset( self::$instance ) && ! ( self::$instance instanceof Ninja_Forms ) ) {
self::$instance = new Ninja_Forms;
self::$dir = plugin_dir_path( __FILE__ );
// Define old constants for backwards compatibility.
if( ! defined( 'NF_PLUGIN_DIR' ) ){
define( 'NF_PLUGIN_DIR', self::$dir );
define( 'NINJA_FORMS_DIR', self::$dir . 'deprecated' );
}
self::$url = plugin_dir_url( __FILE__ );
if( ! defined( 'NF_PLUGIN_URL' ) ){
define( 'NF_PLUGIN_URL', self::$url );
}
$saved_version = get_option( 'ninja_forms_version' );
// If we have a recorded version...
// AND that version is less than our current version...
if ( $saved_version && version_compare( $saved_version, self::VERSION, '<' ) ) {
// *IMPORTANT: Filter to delete old bad data.
// Leave this here until at least 3.4.0.
if ( version_compare( $saved_version, '3.3.7', '<' ) && version_compare( $saved_version, '3.3.4', '>' ) ) {
delete_option( 'nf_sub_expiration' );
}
// We just upgraded the plugin.
$plugin_upgrade = true;
} else {
$plugin_upgrade = false;
}
update_option( 'ninja_forms_version', self::VERSION );
// If we've not recorded our db version...
if ( ! get_option( 'ninja_forms_db_version' ) ) {
// If this isn't a fresh install...
// AND If we're upgrading from a version before 3.3.0...
if ( $saved_version && version_compare( $saved_version, '3.3.0', '<' ) ) {
// Set it to the baseline (1.0) so that our upgrade process will run properly.
add_option( 'ninja_forms_db_version', '1.0', '', 'no' );
} // OR If this isn't a fresh install...
elseif ( $saved_version ) {
// Set it to the expected (1.1) so that our upgrade process will handle that.
add_option( 'ninja_forms_db_version', '1.1', '', 'no' );
} // Otherwise... (This is a fresh install.)
else {
// Set it to the current DB version.
add_option( 'ninja_forms_db_version', self::DB_VERSION, '', 'no' );
// Establish that our upgrades don't need to take place.
$required_updates = Ninja_Forms()->config( 'RequiredUpdates' );
$updated = array();
// Get a timestamp.
date_default_timezone_set( 'UTC' );
$now = date( "Y-m-d H:i:s" );
foreach( $required_updates as $slug => $update ) {
$updated[ $slug ] = $now;
}
update_option( 'ninja_forms_required_updates', $updated );
}
}
// Set our static db version.
self::$db_version = get_option( 'ninja_forms_db_version', self::$db_version );
/*
* Register our autoloader
*/
spl_autoload_register( array( self::$instance, 'autoloader' ) );
/*
* Plugin Settings
*/
self::$instance->settings = apply_filters( 'ninja_forms_settings', get_option( 'ninja_forms_settings' ) );
/*
* Admin Menus
*/
self::$instance->menus[ 'forms' ] = new NF_Admin_Menus_Forms();
self::$instance->menus[ 'dashboard' ] = new NF_Admin_Menus_Dashboard();
self::$instance->menus[ 'add-new' ] = new NF_Admin_Menus_AddNew();
self::$instance->menus[ 'submissions'] = new NF_Admin_Menus_Submissions();
self::$instance->menus[ 'import-export'] = new NF_Admin_Menus_ImportExport();
self::$instance->menus[ 'settings' ] = new NF_Admin_Menus_Settings();
self::$instance->menus[ 'licenses'] = new NF_Admin_Menus_Licenses();
self::$instance->menus[ 'system_status'] = new NF_Admin_Menus_SystemStatus();
self::$instance->menus[ 'add-ons' ] = new NF_Admin_Menus_Addons();
self::$instance->menus[ 'divider'] = new NF_Admin_Menus_Divider();
self::$instance->menus[ 'mock-data'] = new NF_Admin_Menus_MockData();
/*
* AJAX Controllers
*/
self::$instance->controllers[ 'form' ] = new NF_AJAX_Controllers_Form();
self::$instance->controllers[ 'fields' ] = new NF_AJAX_Controllers_Fields();
self::$instance->controllers[ 'batch_process' ] = new NF_AJAX_REST_BatchProcess();
self::$instance->controllers[ 'required_updates' ] = new NF_AJAX_REST_RequiredUpdate();
self::$instance->controllers[ 'preview' ] = new NF_AJAX_Controllers_Preview();
self::$instance->controllers[ 'submission' ] = new NF_AJAX_Controllers_Submission();
self::$instance->controllers[ 'savedfields' ] = new NF_AJAX_Controllers_SavedFields();
self::$instance->controllers[ 'deletealldata' ] = new NF_AJAX_Controllers_DeleteAllData();
self::$instance->controllers[ 'jserror' ] = new NF_AJAX_Controllers_JSError();
self::$instance->controllers[ 'dispatchpoints' ] = new NF_AJAX_Controllers_DispatchPoints();
/*
* REST Controllers
*/
self::$instance->controllers[ 'REST' ][ 'forms' ] = new NF_AJAX_REST_Forms();
self::$instance->controllers[ 'REST' ][ 'new-form-templates' ] = new NF_AJAX_REST_NewFormTemplates();
/*
* API Routes
*/
self::$instance->routes[ 'submissions' ] = new NF_Routes_Submissions();
/*
* Async Requests
*/
require_once Ninja_Forms::$dir . 'includes/Libraries/BackgroundProcessing/classes/wp-async-request.php';
self::$instance->requests[ 'delete-field' ] = new NF_AJAX_Requests_DeleteField();
/*
* Background Processes
*/
require_once Ninja_Forms::$dir . 'includes/Libraries/BackgroundProcessing/wp-background-processing.php';
self::$instance->requests[ 'update-fields' ] = new NF_AJAX_Processes_UpdateFields();
/*
* WP-CLI Commands
*/
if( class_exists( 'WP_CLI_Command' ) ) {
WP_CLI::add_command('ninja-forms', 'NF_WPCLI_NinjaFormsCommand');
}
/*
* Preview Page
*/
self::$instance->preview = new NF_Display_Preview();
/**
* Admin Footer Text
*/
new NF_Admin_FooterMessage();
/*
* Public Form Link
*/
add_filter('template_include', array(self::$instance, 'maybe_load_public_form'));
/*
* Shortcodes
*/
self::$instance->shortcodes = new NF_Display_Shortcodes();
/*
* Submission CPT
*/
new NF_Admin_CPT_Submission();
new NF_Admin_CPT_DownloadAllSubmissions();
require_once Ninja_Forms::$dir . 'lib/StepProcessing/menu.php';
/**
* Blocks
*/
require_once Ninja_Forms::$dir . 'blocks/ninja-forms-blocks.php';
/*
* Submission Metabox
*/
new NF_Admin_Metaboxes_Calculations();
/*
* User data requests ( GDPR actions )
*/
new NF_Admin_UserDataRequests();
/*
* Logger
*/
self::$instance->_logger = new NF_Database_Logger();
/*
* Dispatcher
*/
self::$instance->_dispatcher = new NF_Dispatcher();
/*
* Merge Tags
*/
self::$instance->merge_tags[ 'wp' ] = new NF_MergeTags_WP();
self::$instance->merge_tags[ 'fields' ] = new NF_MergeTags_Fields();
self::$instance->merge_tags[ 'calcs' ] = new NF_MergeTags_Calcs();
self::$instance->merge_tags[ 'form' ] = new NF_MergeTags_Form();
self::$instance->merge_tags[ 'other' ] = new NF_MergeTags_Other();
self::$instance->merge_tags[ 'deprecated' ] = new NF_MergeTags_Deprecated();
/*
* Add Form Modal
*/
self::$instance->add_form_modal = new NF_Admin_AddFormModal();
/*
* EOS Parser
*/
self::$instance->_eos[ 'parser' ] = require_once 'includes/Libraries/EOS/Parser.php';
/*
* Admin Notices System
*/
self::$instance->notices = new NF_Admin_Notices();
self::$instance->widgets[] = new NF_Widget();
/*
* Opt-In Tracking
*/
self::$instance->tracking = new NF_Tracking();
/*
* Fieldset Repeater Handler
*/
self::$instance->fieldsetRepeater = new NF_Handlers_FieldsetRepeater();
self::$instance->submission_expiration_cron = new NF_Database_SubmissionExpirationCron();
/*
* JS Exception Handler
*
* TODO: Review PR#2492 for improvements.
*/
// self::$instance->exception_handler_js = new NF_ExceptionHandlerJS();
/*
* Activation Hook
* TODO: Move to a permanent home.
*/
register_activation_hook( __FILE__, array( self::$instance, 'activation' ) );
self::$instance->metaboxes[ 'append-form' ] = new NF_Admin_Metaboxes_AppendAForm();
/*
* Email Telemetry
*/
$email_telemetry = new NF_EmailTelemetry( get_option( 'ninja_forms_optin_reported' ) );
$email_telemetry->setup();
/*
* Require EDD auto-update file
*/
if( ! class_exists( 'EDD_SL_Plugin_Updater' ) ) {
// Load our custom updater if it doesn't already exist
require_once( self::$dir . 'includes/Integrations/EDD/EDD_SL_Plugin_Updater.php');
}
require_once self::$dir . 'includes/Integrations/EDD/class-extension-updater.php';
// If Ninja Forms was just upgraded...
if ( $plugin_upgrade ) {
// Ensure all of our tables have been defined.
$migrations = new NF_Database_Migrations();
$migrations->migrate();
add_action( 'init', array( self::$instance, 'flush_rewrite_rules' ) );
// Enable "Dev Mode" for existing installations.
$settings = Ninja_Forms()->get_settings();
if( ! isset($settings['builder_dev_mode'])){
Ninja_Forms()->update_setting('builder_dev_mode', 1);
}
}
}
add_action( 'admin_notices', array( self::$instance, 'admin_notices' ) );
add_action( 'plugins_loaded', array( self::$instance, 'plugins_loaded' ) );
add_action( 'ninja_forms_available_actions', array( self::$instance, 'scrub_available_actions' ) );
add_action( 'init', array( self::$instance, 'init' ), 5 );
add_action( 'admin_init', array( self::$instance, 'admin_init' ), 5 );
add_action( 'nf_weekly_promotion_update', array( self::$instance, 'nf_run_promotion_manager' ) );
add_action( 'activated_plugin', array( self::$instance, 'nf_bust_promotion_cache_on_plugin_activation' ), 10, 2 );
// Checks php version and..
if (version_compare(PHP_VERSION, '7.2.0', '<')) {
// Pulls in the whip notice if the user is.
add_action( 'admin_init', array( self::$instance, 'nf_php_version_whip_notice' ) );
}
add_action( 'admin_init', array( self::$instance, 'nf_do_telemetry' ) );
add_action( 'admin_init', array( self::$instance, 'nf_plugin_add_suggested_privacy_content' ), 20 );
return self::$instance;
}
public function init()
{
do_action( 'nf_init', self::$instance );
$this->register_rewrite_rules();
}
public function flush_rewrite_rules()
{
$this->register_rewrite_rules();
flush_rewrite_rules();
}
public function register_rewrite_rules()
{
add_rewrite_tag('%nf_public_link%', '([a-zA-Z0-9]+)');
add_rewrite_rule('^ninja-forms/([a-zA-Z0-9]+)/?', 'index.php?nf_public_link=$matches[1]', 'top');
}
public function admin_init()
{
do_action( 'nf_admin_init', self::$instance );
if ( isset ( $_GET[ 'nf-upgrade' ] ) && 'complete' == $_GET[ 'nf-upgrade' ] ) {
Ninja_Forms()->dispatcher()->send( 'upgrade' );
}
add_filter( 'ninja_forms_dashboard_menu_items', array( $this, 'maybe_hide_dashboard_items' ) );
// Remove already completed updates from our filtered list of required updates.
add_filter( 'ninja_forms_required_updates', array( $this, 'remove_completed_updates' ), 99 );
add_filter( 'ninja_forms_required_updates', array( $this, 'remove_bad_updates' ), 99 );
// Sets up a weekly cron to run the promotion manager.
if ( ! wp_next_scheduled( 'nf_weekly_promotion_update' ) ) {
wp_schedule_event( current_time( 'timestamp' ), 'nf-weekly', 'nf_weekly_promotion_update' );
}
// Get our list of required updates.
$required_updates = Ninja_Forms()->config( 'RequiredUpdates' );
global $wpdb;
$sql = "SELECT COUNT( `id` ) AS total FROM `{$wpdb->prefix}nf3_forms`;";
$result = $wpdb->get_results( $sql, 'ARRAY_A' );
$threshold = 0; // Threshold percentage for our required updates.
if ( get_transient( 'ninja_forms_prevent_updates' ) ) {
update_option( 'ninja_forms_needs_updates', 0 );
}
// If we got back a list of updates...
// AND If we have any forms on the site...
// AND If the gate is open...
// To avoid errors on older upgrades, ignore the gatekeeper if the db version is the baseline (1.0)...
elseif ( ! empty( $required_updates )
&& 0 < $result[ 0 ][ 'total' ]
&& ( WPN_Helper::gated_release( $threshold )
|| '1.0' == self::$db_version ) ) {
// Record that we have updates to run.
update_option( 'ninja_forms_needs_updates', 1 );
} // Otherwise... (Sanity check)
else {
// Record that there are no required updates.
update_option( 'ninja_forms_needs_updates', 0 );
}
}
function maybe_load_public_form($template) {
if($public_link_key = sanitize_text_field(get_query_var('nf_public_link'))){
// @TODO Move this functionality behind a boundry.
global $wpdb;
$query = $wpdb->prepare( "SELECT `parent_id` FROM {$wpdb->prefix}nf3_form_meta WHERE `key` = 'public_link_key' AND `value` = %s", $public_link_key );
$results = $wpdb->get_col($query);
$form_id = reset($results);
$page_template = get_page_template();
if( ! empty( $page_template ) )
$template = $page_template;
new NF_Display_PagePublicLink($form_id);
}
return $template;
}
/**
* Privacy policy suggested content for Ninja Forms
*/
function nf_plugin_add_suggested_privacy_content() {
if ( ! function_exists( 'wp_add_privacy_policy_content' ) ) return;
$content = $this->plugin_get_default_privacy_content();
wp_add_privacy_policy_content(
__( 'Ninja Forms' ),
wp_kses_post( wpautop( $content, false) ) );
}
/**
* Return the default suggested privacy policy content.
*
* @return string The default policy content.
*/
function plugin_get_default_privacy_content() {
return
'<h2>' . esc_html__( 'Ninja Forms allows you to collect personal information', 'ninja-forms' ) . '</h2>' .
'<p>' . esc_html__( 'If you are using Ninja Forms to collect personal information, you should consult a legal professional for your use case.', 'ninja-forms' ) . '</p>';
}
/**
* NF PHP Version Whip Notice
* If the user is on a version below PHP 7.2 then we get an instance of the
* NF PHP Version Whip class which will add a non-dismissible admin notice.
*
* @return NF_Php_Version_Whip
*/
public function nf_php_version_whip_notice()
{
require_once self::$dir . '/includes/Libraries/Whip/NF_Php_Version_Whip.php';
return new NF_Php_Version_Whip();
}
/**
* Function to launch our various telemetry calls on admin_init.
*/
public function nf_do_telemetry() {
if ( ! has_filter( 'ninja_forms_settings_licenses_addons' ) && ( ! Ninja_Forms()->tracking->is_opted_in() || Ninja_Forms()->tracking->is_opted_out() ) ) {
return false;
}
global $wpdb;
// If we've not already sent table collation...
if ( ! get_option( 'nf_tel_collate' ) ) {
$collate = array();
// Get the collation of the wp_options table.
$sql = "SHOW FULL COLUMNS FROM `" . $wpdb->prefix . "options` WHERE Field = 'option_value'";
$result = $wpdb->get_results( $sql, 'ARRAY_A' );
$collate[ 'cache' ] = $result[ 0 ][ 'Collation' ];
// Get the collation of the nf3_forms table.
$sql = "SHOW FULL COLUMNS FROM `" . $wpdb->prefix . "nf3_forms` WHERE Field = 'title'";
$result = $wpdb->get_results( $sql, 'ARRAY_A' );
$collate[ 'forms' ] = $result[ 0 ][ 'Collation' ];
// Send our data to api.ninjaforms.com.
Ninja_Forms()->dispatcher()->send( 'table_collate', $collate );
// Record an option so that we don't run this again.
add_option( 'nf_tel_collate', '1', '', 'no' );
}
}
public function maybe_hide_dashboard_items( $items )
{
$disable_marketing = false;
if ( apply_filters( 'ninja_forms_disable_marketing', $disable_marketing ) ) {
unset(
$items[ 'apps' ],
$items[ 'memberships' ],
$items[ 'services' ],
$items[ 'user_access' ]
);
}
if ( 1 == get_option( 'ninja_forms_needs_updates' ) ) {
unset(
$items[ 'widgets' ],
$items[ 'apps' ],
$items[ 'memberships' ],
$items[ 'services' ],
$items[ 'user_access' ]
);
}
return $items;
}
public function scrub_available_actions( $actions )
{
foreach( $actions as $key => $action ){
if ( ! is_plugin_active( $action[ 'plugin_path' ] ) ) continue;
unset( $actions[ $key ] );
}
return $actions;
}
/**
* Call back function for the promo manager cron.
* Grabs a fresh copy of the promotions and stores them in an option.
*
* @return void
*/
public function nf_run_promotion_manager()
{
$promotion_manager = new NF_PromotionManager();
$promomotions = json_encode( $promotion_manager->get_promotions() );
update_option( 'nf_active_promotions', $promomotions, false );
}
/**
* Listens for plugin activation and runs check to see if any
* promotions need to be added or removed.
*
* @return void
*/
public function nf_bust_promotion_cache_on_plugin_activation( $plugin, $network_activation )
{
$addons_with_promotions = $this->get_promotion_addons_lookup_table();
$plugin = explode( '/', $plugin );
$this->nf_maybe_bust_promotion_cache( $addons_with_promotions, $plugin[ 0 ] );
}
/**
* Build a look up table for the add-ons that have promotions.
* TODO: maybe come up with a better name for this class.
*
* @return array of promotions.
*/
public function get_promotion_addons_lookup_table()
{
// @TODO: Maybe use ninja_forms_addons_feed option to populate this later?
$nf_promotion_addons = array(
'ninja-forms-conditional-logic', // Account for development environments.
'ninja-forms-conditionals',
'ninja-forms-uploads',
'ninja-forms-multi-part',
'ninja-forms-layout-styles', // Account for development environments.
'ninja-forms-style',
'ninja-mail', // Account for Ninja Mail as legacy for SendWP.
'sendwp'
);
return $nf_promotion_addons;
}
/**
* Loops over our add-ons that have promotions and
* runs the promotion manager class.
*
* @return void
*/
public function nf_maybe_bust_promotion_cache( $promo_addons, $plugin_being_activated )
{
if ( in_array( $plugin_being_activated, $promo_addons ) ) {
$this->nf_run_promotion_manager();
}
}
public function admin_notices()
{
// Notices filter and run the notices function.
$admin_notices = Ninja_Forms()->config( 'AdminNotices' );
self::$instance->notices->admin_notice( apply_filters( 'nf_admin_notices', $admin_notices ) );
}
public function plugins_loaded()
{
unload_textdomain('ninja-forms');
load_plugin_textdomain( 'ninja-forms', false, basename( dirname( __FILE__ ) ) . '/lang' );
/*
* Field Class Registration
*/
self::$instance->fields = apply_filters( 'ninja_forms_register_fields', self::load_classes( 'Fields' ) );
if( ! apply_filters( 'ninja_forms_enable_credit_card_fields', false ) ){
unset( self::$instance->fields[ 'creditcard' ] );
unset( self::$instance->fields[ 'creditcardcvc' ] );
unset( self::$instance->fields[ 'creditcardexpiration' ] );
unset( self::$instance->fields[ 'creditcardfullname' ] );
unset( self::$instance->fields[ 'creditcardnumber' ] );
unset( self::$instance->fields[ 'creditcardzip' ] );
}
/*
* Form Action Registration
*/
$actions = self::load_classes( 'Actions' ) ;
uksort( $actions, [ $this, 'sort_actions' ] );
self::$instance->actions = apply_filters( 'ninja_forms_register_actions', $actions );
/*
* Merge Tag Registration
*/
self::$instance->merge_tags = apply_filters( 'ninja_forms_register_merge_tags', self::$instance->merge_tags );
/*
* It's Ninja Time: Hook for Extensions
*/
do_action( 'ninja_forms_loaded' );
}
/**
* Autoloader
*
* Autoload Ninja Forms classes
*
* @param $class_name
*/
public function autoloader( $class_name )
{
if( class_exists( $class_name ) ) return;
/* Ninja Forms Prefix */
if (false !== strpos($class_name, 'NF_')) {
$class_name = str_replace('NF_', '', $class_name);
$classes_dir = realpath(plugin_dir_path(__FILE__)) . DIRECTORY_SEPARATOR . 'includes' . DIRECTORY_SEPARATOR;
$class_file = str_replace('_', DIRECTORY_SEPARATOR, $class_name) . '.php';
if (file_exists($classes_dir . $class_file)) {
require_once $classes_dir . $class_file;
}
}
/* WP Ninjas Prefix */
if (false !== strpos($class_name, 'WPN_')) {
$class_name = str_replace('WPN_', '', $class_name);
$classes_dir = realpath(plugin_dir_path(__FILE__)) . DIRECTORY_SEPARATOR . 'includes' . DIRECTORY_SEPARATOR;
$class_file = str_replace('_', DIRECTORY_SEPARATOR, $class_name) . '.php';
if (file_exists($classes_dir . $class_file)) {
require_once $classes_dir . $class_file;
}
}
}
/*
* PUBLIC API WRAPPERS
*/
/**
* Form Model Factory Wrapper
*
* @param $id
* @return NF_Abstracts_ModelFactory
*/
public function form( $id = '' )
{
global $wpdb;
static $forms;
if ( isset ( $forms[ $id ] ) ) {
return $forms[ $id ];
}
$forms[ $id ] = new NF_Abstracts_ModelFactory( $wpdb, $id );
return $forms[ $id ];
}
/**
* Logger Class Wrapper
*
* Example Use:
* Ninja_Forms()->logger()->log( 'debug', "Hello, {name}!", array( 'name' => 'world' ) );
* Ninja_Forms()->logger()->debug( "Hello, {name}!", array( 'name' => 'world' ) );
*
* @return string
*/
public function logger()
{
return $this->_logger;
}
public function dispatcher()
{
return $this->_dispatcher;
}
public function eos()
{
return new NF_EOS_Parser();
}
public function session()
{
if( ! $this->session ){
$this->session = new NF_Session();
$this->session->init();
}
return $this->session;
}
public function request( $action )
{
if( ! isset( $this->requests[ $action ] ) ) return new NF_AJAX_Requests_NullRequest();
return $this->requests[ $action ];
}
public function background_process( $action )
{
if( ! isset( $this->requests[ $action ] ) ) return new NF_AJAX_Processes_NullProcess();
return $this->requests[ $action ];
}
/**
* Get a setting
*
* @param string $key
* @param bool|false $default
* @return bool
*/
public function get_setting( $key = '', $default = false )
{
if( empty( $key ) || ! isset( $this->settings[ $key ] ) || empty( $this->settings[ $key ] ) ) return $default;
return $this->settings[ $key ];
}
/**
* Get all the settings
*
* @return array
*/
public function get_settings()
{
return ( is_array( $this->settings ) ) ? $this->settings : array();
}
/**
* Update a setting
*
* @param string $key
* @param mixed $value
* @param bool|false $defer_update Defer the database update of all settings
*/
public function update_setting( $key, $value, $defer_update = false )
{
$this->settings[ $key ] = $value;
if ( ! $defer_update ) {
$this->update_settings();
}
}
/**
* Save settings to database
*
* @param array $settings
*/
public function update_settings( $settings = array() )
{
if( ! is_array( $this->settings ) ) $this->settings = array();
if( $settings && is_array( $settings ) ) {
$this->settings = array_merge($this->settings, $settings);
}
update_option( 'ninja_forms_settings', $this->settings );
}
/**
* Display Wrapper
*
* @param $form_id
*/
public function display( $form_id, $preview = FALSE )
{
if( ! $form_id ) return;
$noscript_message = esc_html__( 'Notice: JavaScript is required for this content.', 'ninja-forms' );
$noscript_message = apply_filters( 'ninja_forms_noscript_message', $noscript_message );
Ninja_Forms()->template( 'display-noscript-message.html.php', array( 'message' => $noscript_message ) );
if( ! $preview ) {
NF_Display_Render::localize($form_id);
} else {
NF_Display_Render::localize_preview($form_id);
}
}
/*
* PRIVATE METHODS
*/
private function sort_actions( $a, $b )
{
// Create a numeric lookup by flipping the non-associative array.
$custom_order = array_flip( $this->config( 'ActionTypeOrder' ) );
$a_order = ( isset( $custom_order[ $a ] ) ) ? $custom_order[ $a ] : 9001;
$b_order = ( isset( $custom_order[ $b ] ) ) ? $custom_order[ $b ] : 9001;
return intval( $a_order >= $b_order );
}
/**
* Load Classes from Directory
*
* @param string $prefix
* @return array
*/
private static function load_classes( $prefix = '' )
{
$return = array();
$subdirectory = str_replace( '_', DIRECTORY_SEPARATOR, str_replace( 'NF_', '', $prefix ) );
$directory = 'includes/' . $subdirectory;
foreach (scandir( self::$dir . $directory ) as $path) {
$path = explode( DIRECTORY_SEPARATOR, str_replace( self::$dir, '', $path ) );
$filename = str_replace( '.php', '', end( $path ) );
$class_name = 'NF_' . $prefix . '_' . $filename;
if( ! class_exists( $class_name ) ) continue;
$return[ strtolower( $filename ) ] = new $class_name;
}
return $return;
}
/*
* STATIC METHODS
*/
/**
* Template
*
* @param string $file_name
* @param array $data
*/
public static function template( $file_name = '', array $data = array(), $return = FALSE )
{
if( ! $file_name ) return FALSE;
extract( $data );
$path = self::$dir . 'includes/Templates/' . $file_name;
if( ! file_exists( $path ) ) return FALSE;
if( $return ) return file_get_contents( $path );
include $path;
}
/**
* Config
*
* @param $file_name
* @return mixed
*/
public static function config( $file_name )
{
return include self::$dir . 'includes/Config/' . $file_name . '.php';
}
/**
* Activation
*/
public function activation() {
$migrations = new NF_Database_Migrations();
$migrations->migrate();
if( Ninja_Forms()->form()->get_forms() ) return;
// Go ahead and create our randomn number for gated releases in the future
$zuul = WPN_Helper::get_zuul();
$form = Ninja_Forms::template( 'formtemplate-contactform.nff', array(), TRUE );
Ninja_Forms()->form()->import_form( $form );
Ninja_Forms()->flush_rewrite_rules();
// Enable "Light" Opinionated Styles for new installtion.
Ninja_Forms()->update_setting('opinionated_styles', 'light');
// Disable "Dev Mode" for new installation.
Ninja_Forms()->update_setting('builder_dev_mode', 0);
// Grab our initial add-on feed from api.ninjaforms.com
nf_update_marketing_feed();
// Setup our add-on feed wp cron so that our add-on list is up to date on a weekly basis.
nf_marketing_feed_cron_job();
}
/**
* Deprecated Notice
*
* Example: Ninja_Forms::deprecated_hook( 'ninja_forms_old', '3.0', 'ninja_forms_new', debug_backtrace() );
*
* @param $deprecated
* @param $version
* @param null $replacement
* @param null $backtrace
*/
public static function deprecated_notice( $deprecated, $version, $replacement = null, $backtrace = null )
{
do_action( 'ninja_forms_deprecated_call', $deprecated, $replacement, $version );
$show_errors = current_user_can( 'manage_options' );
// Allow plugin to filter the output error trigger
if ( WP_DEBUG && apply_filters( 'ninja_forms_deprecated_function_trigger_error', $show_errors ) ) {
if ( ! is_null( $replacement ) ) {
trigger_error( sprintf( esc_html__( '%1$s is <strong>deprecated</strong> since Ninja Forms version %2$s! Use %3$s instead.', 'ninja-forms' ), $deprecated, $version, $replacement ) );
// trigger_error( print_r( $backtrace, 1 ) ); // Limited to previous 1028 characters, but since we only need to move back 1 in stack that should be fine.
// Alternatively we could dump this to a file.
} else {
trigger_error( sprintf( esc_html__( '%1$s is <strong>deprecated</strong> since Ninja Forms version %2$s.', 'ninja-forms' ), $deprecated, $version ) );
// trigger_error( print_r( $backtrace, 1 ) );// Limited to previous 1028 characters, but since we only need to move back 1 in stack that should be fine.
// Alternatively we could dump this to a file.
}
}
}
/**
* Function to deregister already completed updates from the list of required updates.
*
* @since 3.3.14
*
* @param $updates (Array) Our array of required updates.
* @return $updates (Array) Our array of required updates.
*/
public function remove_completed_updates( $updates ) {
$processed = get_option( 'ninja_forms_required_updates', array() );
// For each update in our list...
foreach ( $updates as $slug => $update ) {
// If we have already processed it...
if ( isset( $processed[ $slug ] ) ) {
// Remove it from the list.
unset( $updates[ $slug ] );
}
}
if( isset( $updates[ 'CacheCollateFields' ] )
&& isset( $updates[ 'CacheFieldReconcilliation' ] )
&& !isset( $processed[ 'CacheFieldReconcilliation' ] ) ) {
unset( $updates[ 'CacheFieldReconcilliation' ] );
date_default_timezone_set( 'UTC' );
$now = date( "Y-m-d H:i:s" );
// Append the current update to the array.
$processed[ 'CacheFieldReconcilliation' ] = $now;
// Save it.
update_option( 'ninja_forms_required_updates', $processed );
}
return $updates;
}
/**
* Function to deregister updates that have required updates that either
* don't exist, or are malformed
*
* @since UPDATE_TO_LATEST version
*
* @param $updates (Array) Our array of required updates.
* @return $updates (Array) Our array of required updates.
*/
public function remove_bad_updates( $updates ) {
$processed = get_option( 'ninja_forms_required_updates', array() );
$sorted = array();
$queue = array();
// While we have not finished removing bad updates...
while ( count( $sorted ) < count( $updates ) ) {
// For each update we wish to run...
foreach ( $updates as $slug => $update ) {
// Migrate the slug to a property.
$update[ 'slug' ] = $slug;
// If we've not already added this to the sorted list...
if ( ! in_array( $update, $sorted ) ) {
// If it has requirements...
if ( ! empty( $update[ 'requires' ] ) ) {
$enqueued = 0;
// For each requirement...
foreach ( $update[ 'requires' ] as $requirement ) {
// If the requirement doesn't exist...
if ( ! isset( $updates[ $requirement ] ) ) {
// unset the update b/c we are missing requirements
unset( $updates[ $slug ] );
$nf_bad_update_transient = get_transient( 'nf_bad_update_requirement' );
if( ! $nf_bad_update_transient ) {
// send telemetry so we can keep up with these
Ninja_Forms()->dispatcher()->send( 'incomplete_update',
array(
'update' => $slug,
'missing_requirement' => $requirement
)
);
set_transient( 'nf_bad_update_requirement', $requirement, 30 * 3600 );
}
}
// If the requirement has already been added to the stack...
if ( in_array( $requirement, $queue ) ) {
$enqueued++;
} // OR If the requirement has already been processed...
elseif ( isset( $processed[ $requirement ] ) ) {
$enqueued++;
}
}
// If all requirement are met...
if ( $enqueued == count( $update[ 'requires' ] ) ) {
// Add it to the list.
array_push( $sorted, $update );
// Record that we enqueued it.
array_push( $queue, $slug );
}
} // Otherwise... (It has no requirements.)
else {
// Add it to the list.
array_push( $sorted, $update );
// Record that we enqueued it.
array_push( $queue, $slug );
}
}
}
}
return $sorted;
}
} // End Class Ninja_Forms
/**
* The main function responsible for returning The Highlander Ninja_Forms
* Instance to functions everywhere.
*
* Use this function like you would a global variable, except without needing
* to declare the global.
*
* Example: <?php $nf = Ninja_Forms(); ?>
*
* @since 2.7
* @return Ninja_Forms Highlander Instance
*/
function Ninja_Forms()
{
return Ninja_Forms::instance();
}
Ninja_Forms();
/*
|--------------------------------------------------------------------------
| Uninstall Hook
|--------------------------------------------------------------------------
*/
register_uninstall_hook( __FILE__, 'ninja_forms_uninstall' );
function ninja_forms_uninstall(){
if( Ninja_Forms()->get_setting( 'delete_on_uninstall' ) ) {
require_once plugin_dir_path(__FILE__) . '/includes/Database/Migrations.php';
$migrations = new NF_Database_Migrations();
$migrations->nuke(TRUE, TRUE);
$migrations->nuke_settings(TRUE, TRUE);
$migrations->nuke_deprecated(TRUE, TRUE);
}
}
// Scheduled Action Hook
function nf_optin_update_environment_vars() {
/**
* Send updated environment variables.
*/
Ninja_Forms()->dispatcher()->update_environment_vars();
/**
* Make sure that we've reported our opt-in.
*/
if( get_option( 'ninja_forms_optin_reported', 0 ) ) return;
Ninja_Forms()->dispatcher()->send( 'optin', array( 'send_email' => 1 ) );
// Debounce opt-in dispatch.
update_option( 'ninja_forms_optin_reported', 1 );
}
add_action( 'nf_optin_cron', 'nf_optin_update_environment_vars' );
/**
* Function to register our Custom Cron Recurrences.
*
* @param $schedules (Array) The available cron recurrences.
* @return (Array) The filtered cron recurrences.
*
* @since
* @updated 3.3.17
*/
function nf_custom_cron_job_recurrence( $schedules ) {
$schedules[ 'nf-monthly' ] = array(
'display' => esc_html__( 'Once per month', 'ninja-forms' ),
'interval' => 2678400,
);
$schedules[ 'nf-weekly' ] = array(
'display' => esc_html__( 'Once per week', 'ninja-forms' ),
'interval' => 604800,
);
return $schedules;
}
add_filter( 'cron_schedules', 'nf_custom_cron_job_recurrence' );
// Schedule Cron Job Event
function nf_optin_send_admin_email_cron_job() {
if ( ! wp_next_scheduled( 'nf_optin_cron' ) ) {
wp_schedule_event( current_time( 'timestamp' ), 'nf-monthly', 'nf_optin_cron' );
}
}
add_action( 'wp', 'nf_optin_send_admin_email_cron_job' );
/**
* Function called via weekly wp_cron to update our marketing feeds.
*
* @since 3.3.17
*/
function nf_update_marketing_feed() {
// Fetch our addon data.
$data = wp_remote_get( 'http://api.ninjaforms.com/feeds/?fetch=addons' );
// If we got a valid response...
if ( 200 == $data[ 'response' ][ 'code' ] ) {
// Save the data to our option.
$data = wp_remote_retrieve_body( $data );
update_option( 'ninja_forms_addons_feed', $data, false );
}
}
add_action( 'nf_marketing_feed_cron', 'nf_update_marketing_feed' );
/**
* Function called by our marketing feed cron.
*
* @since 3.3.17
*/
function nf_marketing_feed_cron_job() {
if ( ! wp_next_scheduled( 'nf_marketing_feed_cron' ) ) {
wp_schedule_event( current_time( 'timestamp' ), 'nf-weekly', 'nf_marketing_feed_cron' );
}
}
}