CF7DBPlugin.php
59.7 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
<?php
/*
"Contact Form to Database" Copyright (C) 2011-2014 Michael Simpson (email : michael.d.simpson@gmail.com)
This file is part of Contact Form to Database.
Contact Form to Database is free software: you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation, either version 3 of the License, or
(at your option) any later version.
Contact Form to Database is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License
along with Contact Form to Database.
If not, see <http://www.gnu.org/licenses/>.
*/
require_once('CF7DBPluginLifeCycle.php');
require_once('CFDBShortcodeTable.php');
require_once('CFDBShortcodeDataTable.php');
require_once('CFDBShortcodeValue.php');
require_once('CFDBShortcodeCount.php');
require_once('CFDBShortcodeJson.php');
require_once('CFDBShortcodeHtml.php');
require_once('CFDBShortcodeExportUrl.php');
require_once('CFDBShortCodeSavePostData.php');
require_once('CFDBShortCodeSaveFormMakerSubmission.php');
require_once('CFDBDeobfuscate.php');
require_once('CFDBDateFormatter.php');
require_once('CFDBErrorLog.php');
/**
* Implementation for CF7DBPluginLifeCycle.
*/
class CF7DBPlugin extends CF7DBPluginLifeCycle implements CFDBDateFormatter {
public function getPluginDisplayName() {
return 'Contact Form to DB Extension';
}
protected function getMainPluginFileName() {
return 'contact-form-7-db.php';
}
public function getOptionMetaData() {
return array(
//'_version' => array('Installed Version'), // For testing upgrades
//'Donated' => array(__('I have donated to this plugin', 'contact-form-7-to-database-extension'), 'false', 'true'),
'IntegrateWithCF7' => array(__('Capture form submissions from Contact Form 7 Plugin', 'contact-form-7-to-database-extension'), 'true', 'false'),
'IntegrateWithFSCF' => array(__('Capture form submissions from Fast Secure Contact Form Plugin', 'contact-form-7-to-database-extension'), 'true', 'false'),
'IntegrateWithJetPackContactForm' => array(__('Capture form submissions from JetPack Contact Form', 'contact-form-7-to-database-extension'), 'true', 'false'),
'IntegrateWithGravityForms' => array(__('Capture form submissions from Gravity Forms', 'contact-form-7-to-database-extension'), 'true', 'false'),
'IntegrateWithWrContactForms' => array(__('Capture form submissions from WR ContactForm', 'contact-form-7-to-database-extension'), 'true', 'false'),
'IntegrateWithQuform' => array(__('Capture form submissions from Quform', 'contact-form-7-to-database-extension'), 'true', 'false'),
'IntegrateWithNinjaForms' => array(__('Capture form submissions from Ninja Forms', 'contact-form-7-to-database-extension'), 'true', 'false'),
'IntegrateWithCalderaForms' => array(__('Capture form submissions from Caldera Forms', 'contact-form-7-to-database-extension'), 'true', 'false'),
'IntegrateWithEnfoldThemForms' => array(__('Capture form submissions from Enfold Theme', 'contact-form-7-to-database-extension'), 'true', 'false'),
'CanSeeSubmitData' => array(__('Can See Submission data', 'contact-form-7-to-database-extension'),
'Administrator', 'Editor', 'Author', 'Contributor', 'Subscriber', 'Anyone'),
'HideAdminPanelFromNonAdmins' => array(__('Allow only Administrators to see CFDB administration screens', 'contact-form-7-to-database-extension'), 'false', 'true'),
'CanSeeSubmitDataViaShortcode' => array(__('Can See Submission when using shortcodes', 'contact-form-7-to-database-extension'),
'Administrator', 'Editor', 'Author', 'Contributor', 'Subscriber', 'Anyone'),
'CanChangeSubmitData' => array(__('Can Edit/Delete Submission data', 'contact-form-7-to-database-extension'),
'Administrator', 'Editor', 'Author', 'Contributor', 'Subscriber', 'Anyone'),
'GenerateSubmitTimeInCF7Email' => array(__('Generate [submit_time] tag for Contact Form 7 email', 'contact-form-7-to-database-extension'), 'false', 'true'),
'FunctionsInShortCodes' => array(__('Allow Any Function in Short Codes', 'contact-form-7-to-database-extension') .
' <a target="_blank" href="http://cfdbplugin.com/?page_id=1073">' . __('(Creates a security hole)', 'contact-form-7-to-database-extension') . '</a>', 'false', 'true'),
'AllowRSS' => array(__('Allow RSS URLs', 'contact-form-7-to-database-extension') .
' <a target="_blank" href="http://cfdbplugin.com/?p=918">' . __('(Creates a security hole)', 'contact-form-7-to-database-extension') . '</a>', 'false', 'true'),
'Timezone' => array(__('Timezone to capture Submit Time. Blank will use WordPress Timezone setting. <a target="_blank" href="http://www.php.net/manual/en/timezones.php">Options</a>', 'contact-form-7-to-database-extension')),
'MaxRows' => array(__('Maximum number of rows to retrieve from the DB for the Admin display', 'contact-form-7-to-database-extension')),
'MaxVisibleRows' => array(__('#Rows (of maximum above) visible in the Admin datatable', 'contact-form-7-to-database-extension')),
'HorizontalScroll' => array(__('Use fixed width in Admin datatable', 'contact-form-7-to-database-extension'), 'true', 'false'),
'UseDataTablesJS' => array(__('Use Javascript-enabled tables in Admin Database page', 'contact-form-7-to-database-extension'), 'true', 'false'),
'ShowLineBreaksInDataTable' => array(__('Show line breaks in submitted data table', 'contact-form-7-to-database-extension'), 'true', 'false'),
'UseCustomDateTimeFormat' => array(__('Use Custom Date-Time Display Format (below)', 'contact-form-7-to-database-extension'), 'true', 'false'),
'SubmitDateTimeFormat' => array('<a target="_blank" href="http://php.net/manual/en/function.date.php">' . __('Date-Time Display Format', 'contact-form-7-to-database-extension') . '</a>'),
'ShowFileUrlsInExport' => array(__('Export URLs instead of file names for uploaded files', 'contact-form-7-to-database-extension'), 'false', 'true'),
'NoSaveFields' => array(__('Do not save <u>fields</u> in DB named (comma-separated list, no spaces)', 'contact-form-7-to-database-extension')),
'NoSaveForms' => array(__('Do not save <u>forms</u> in DB named (comma-separated list, no spaces)', 'contact-form-7-to-database-extension')),
'SaveCookieData' => array(__('Save Cookie Data with Form Submissions', 'contact-form-7-to-database-extension'), 'false', 'true'),
'SaveCookieNames' => array(__('Save only cookies in DB named (comma-separated list, no spaces, and above option must be set to true)', 'contact-form-7-to-database-extension')),
'ShowQuery' => array(__('Show the query used to display results', 'contact-form-7-to-database-extension'), 'false', 'true'),
'ErrorOutput' => array(__('Error output file (full path) or email address', 'contact-form-7-to-database-extension')),
'DropOnUninstall' => array(__('Drop this plugin\'s Database table on uninstall', 'contact-form-7-to-database-extension'), 'false', 'true'),
//'SubmitTableNameOverride' => array(__('Use this table to store submission data rather than the default (leave blank for default)', 'contact-form-7-to-database-extension'))
);
}
protected function getOptionValueI18nString($optionValue) {
switch ($optionValue) {
case 'true':
return __('true', 'contact-form-7-to-database-extension');
case 'false':
return __('false', 'contact-form-7-to-database-extension');
case 'Administrator':
return __('Administrator', 'contact-form-7-to-database-extension');
case 'Editor':
return __('Editor', 'contact-form-7-to-database-extension');
case 'Author':
return __('Author', 'contact-form-7-to-database-extension');
case 'Contributor':
return __('Contributor', 'contact-form-7-to-database-extension');
case 'Subscriber':
return __('Subscriber', 'contact-form-7-to-database-extension');
case 'Anyone':
return __('Anyone', 'contact-form-7-to-database-extension');
}
return $optionValue;
}
public function upgrade() {
global $wpdb;
$upgradeOk = true;
$savedVersion = $this->getVersionSaved();
if (!$savedVersion) {
// Was some code here from pre-version 1.2 that I removed b/c it is very old and not relevant.
// A user reported an issue where the saved version in the DB would get cleared out
// after using the plugin for a week or so. Weird and not reproducible. But the problem is that
// it would make it re-run through the upgrades below even though they need not be applied.
// the ALTER TABLE statements would fail and product errors on the page.
// Without solving the underlying problem, I'm going to have upgrade actions be skipped
// in the case where no version is recorded in the DB.
} else {
if ($this->isVersionLessThan($savedVersion, '2.8.29')) {
if ($this->isVersionLessThan($savedVersion, '2.8.25')) {
if ($this->isVersionLessThan($savedVersion, '2.4.1')) {
if ($this->isVersionLessThan($savedVersion, '2.2')) {
if ($this->isVersionLessThan($savedVersion, '2.0')) {
if ($this->isVersionLessThan($savedVersion, '1.8')) {
if ($this->isVersionLessThan($savedVersion, '1.4.5')) {
if ($this->isVersionLessThan($savedVersion, '1.3.1')) {
// Version 1.3.1 update
$tableName = $this->getSubmitsTableName();
$wpdb->show_errors();
$upgradeOk &= false !== $wpdb->query("ALTER TABLE `$tableName` ADD COLUMN `field_order` INTEGER");
$upgradeOk &= false !== $wpdb->query("ALTER TABLE `$tableName` ADD COLUMN `file` LONGBLOB");
$upgradeOk &= false !== $wpdb->query("ALTER TABLE `$tableName` ADD INDEX `submit_time_idx` ( `submit_time` )");
$wpdb->hide_errors();
}
// Version 1.4.5 update
if (!$this->getOption('CanSeeSubmitDataViaShortcode')) {
$this->addOption('CanSeeSubmitDataViaShortcode', 'Anyone');
}
// Misc
$submitDateTimeFormat = $this->getOption('SubmitDateTimeFormat');
if (!$submitDateTimeFormat || $submitDateTimeFormat == '') {
$this->addOption('SubmitDateTimeFormat', 'Y-m-d H:i:s P');
}
}
// Version 1.8 update
if (!$this->getOption('MaxRows')) {
$this->addOption('MaxRows', '100');
}
$tableName = $this->getSubmitsTableName();
$wpdb->show_errors();
/* $upgradeOk &= false !== */
$wpdb->query("ALTER TABLE `$tableName` MODIFY COLUMN submit_time DECIMAL(16,4) NOT NULL");
/* $upgradeOk &= false !== */
$wpdb->query("ALTER TABLE `$tableName` ADD INDEX `form_name_idx` ( `form_name` )");
/* $upgradeOk &= false !== */
$wpdb->query("ALTER TABLE `$tableName` ADD INDEX `form_name_field_name_idx` ( `form_name`, `field_name` )");
$wpdb->hide_errors();
}
// Version 2.0 upgrade
$tableName = $this->getSubmitsTableName();
$oldTableName = $this->prefixTableName('SUBMITS');
@$wpdb->query("RENAME TABLE `$oldTableName` TO `$tableName`");
}
// Version 2.2 upgrade
$tableName = $this->getSubmitsTableName();
$wpdb->query("ALTER TABLE `$tableName` DROP INDEX `form_name_field_name_idx`");
$wpdb->query("ALTER TABLE `$tableName` ADD INDEX `field_name_idx` ( `field_name` )");
}
// Version 2.4.1 upgrade
$tableName = $this->getSubmitsTableName();
$oldTableName = strtolower($tableName);
$wpdb->query("RENAME TABLE '$oldTableName' TO '$tableName'");
}
// Version 2.8.25 update
$tableName = $this->getSTTableName();
$wpdb->show_errors();
$wpdb->query("CREATE TABLE IF NOT EXISTS `$tableName` (`submit_time` DECIMAL(16,4) NOT NULL, PRIMARY KEY (submit_time))");
$wpdb->hide_errors();
}
// Version 2.8.29 update
// tyring this again b/c was not put into new installs
$tableName = $this->getSTTableName();
$wpdb->show_errors();
$wpdb->query("CREATE TABLE IF NOT EXISTS `$tableName` (`submit_time` DECIMAL(16,4) NOT NULL, PRIMARY KEY (submit_time))");
$wpdb->hide_errors();
}
}
// Post-upgrade, set the current version in the options
$codeVersion = $this->getVersion();
if ($upgradeOk && $codeVersion && $savedVersion != $codeVersion) {
$this->saveInstalledVersion($codeVersion);
}
}
/**
* Called by install()
* You should: Prefix all table names with $wpdb->prefix
* Also good: additionally use the prefix for this plugin:
* $table_name = $wpdb->prefix . $this->prefix('MY_TABLE');
* @return void
*/
protected function installDatabaseTables() {
global $wpdb;
$tableName = $this->getSubmitsTableName();
$wpdb->show_errors();
$wpdb->query("CREATE TABLE IF NOT EXISTS `$tableName` (
`submit_time` DECIMAL(16,4) NOT NULL,
`form_name` VARCHAR(127) CHARACTER SET utf8,
`field_name` VARCHAR(127) CHARACTER SET utf8,
`field_value` LONGTEXT CHARACTER SET utf8,
`field_order` INTEGER,
`file` LONGBLOB)");
$wpdb->query("ALTER TABLE `$tableName` ADD INDEX `submit_time_idx` ( `submit_time` )");
$wpdb->query("ALTER TABLE `$tableName` ADD INDEX `form_name_idx` ( `form_name` )");
$wpdb->query("ALTER TABLE `$tableName` ADD INDEX `field_name_idx` ( `field_name` )");
$tableName = $this->getSTTableName();
$wpdb->query("CREATE TABLE IF NOT EXISTS `$tableName` (`submit_time` DECIMAL(16,4) NOT NULL, PRIMARY KEY (submit_time))");
$wpdb->hide_errors();
}
/**
* Called by uninstall()
* You should: Prefix all table names with $wpdb->prefix
* Also good: additionally use the prefix for this plugin:
* $table_name = $wpdb->prefix . $this->prefix('MY_TABLE');
* @return void
*/
protected function unInstallDatabaseTables() {
if ('true' == $this->getOption('DropOnUninstall', 'false')) {
global $wpdb;
$tableName = $this->getSubmitsTableName();
$wpdb->query("DROP TABLE IF EXISTS `$tableName`");
// $tables = array('SUBMITS');
// foreach ($tables as $aTable) {
// $tableName = $this->prefixTableName($aTable);
// $wpdb->query("DROP TABLE IF EXISTS `$tableName`");
// }
}
}
protected function initOptions() {
// By default ignore CF7 metadata fields
$this->addOption('NoSaveFields', '/.*wpcf7.*/,_wpnonce');
}
public function add_wpcf7_noSaveFields() {
$nsfArray = explode(',', $this->getOption('NoSaveFields',''));
$wpcf7Fields = array('/.*wpcf7.*/', '_wpnonce');
foreach ($wpcf7Fields as $aWpcf7) {
if (!in_array($aWpcf7, $nsfArray)) {
$nsfArray[] = $aWpcf7;
}
}
$this->updateOption('NoSaveFields', implode(',', $nsfArray));
}
public function delete_wpcf7_fields($formName) {
global $wpdb;
$wpdb->query($wpdb->prepare(
'delete from `' . $this->getSubmitsTableName() .
"` where `form_name` = '%s' and `field_name` in ('_wpcf7', '_wpcf7_version', '_wpcf7_unit_tag', '_wpnonce', '_wpcf7_is_ajax_call', '_wpcf7_captcha_challenge_captcha')",
$formName));
}
public function addActionsAndFilters() {
// Admin notices
add_action('admin_notices', array(&$this, 'addAdminNotices'));
// Add the Admin Config page for this plugin
// Add Config page as a top-level menu item on the Admin page
add_action('admin_menu', array(&$this, 'createAdminMenu'));
// Add Database Options page
add_action('admin_menu', array(&$this, 'addSettingsSubMenuPage'));
// Hook into Contact Form 7 when a form post is made to save the data to the DB
if ($this->getOption('IntegrateWithCF7', 'true') == 'true') {
require_once('CFDBIntegrationContactForm7.php');
$integration = new CFDBIntegrationContactForm7($this);
$integration->registerHooks();
}
// Hook into Fast Secure Contact Form
if ($this->getOption('IntegrateWithFSCF', 'true') == 'true') {
require_once('CFDBIntegrationFSCF.php');
$integration = new CFDBIntegrationFSCF($this);
$integration->registerHooks();
}
// Hook into JetPack Contact Form
if ($this->getOption('IntegrateWithJetPackContactForm', 'true') == 'true') {
require_once('CFDBIntegrationJetPack.php');
$integration = new CFDBIntegrationJetPack($this);
$integration->registerHooks();
}
// Hook into Gravity Forms
if ($this->getOption('IntegrateWithGravityForms', 'true') == 'true') {
require_once('CFDBIntegrationGravityForms.php');
$integration = new CFDBIntegrationGravityForms($this);
$integration->registerHooks();
}
// Hook to work with WR ContactForms
if ($this->getOption('IntegrateWithWrContactForms', 'true') == 'true') {
require_once('CFDBIntegrationWRContactForm.php');
$integration = new CFDBIntegrationWRContactForm($this);
$integration->registerHooks();
}
// Hook to work with Quform
if ($this->getOption('IntegrateWithQuform', 'true') == 'true') {
require_once('CFDBIntegrationQuform.php');
$integration = new CFDBIntegrationQuform($this);
$integration->registerHooks();
}
// Hook to work with Ninja Forms
if ($this->getOption('IntegrateWithNinjaForms', 'true') == 'true') {
require_once('CFDBIntegrationNinjaForms.php');
$integration = new CFDBIntegrationNinjaForms($this);
$integration->registerHooks();
}
// Hook to work with Caldera Forms Forms
if ($this->getOption('IntegrateWithCalderaForms', 'true') == 'true') {
require_once('CFDBIntegrationCalderaForms.php');
$integration = new CFDBIntegrationCalderaForms($this);
$integration->registerHooks();
}
// Enfold theme forms
if ($this->getOption('IntegrateWithEnfoldThemForms', 'true') == 'true') {
require_once('CFDBIntegrationEnfoldTheme.php');
$enfold = new CFDBIntegrationEnfoldTheme($this);
$enfold->registerHooks();
}
// Have our own hook to receive form submissions independent of other plugins
add_action('cfdb_submit', array(&$this, 'saveFormData'));
// Register Export URL
add_action('wp_ajax_nopriv_cfdb-export', array(&$this, 'ajaxExport'));
add_action('wp_ajax_cfdb-export', array(&$this, 'ajaxExport'));
// Register Get File URL
add_action('wp_ajax_nopriv_cfdb-file', array(&$this, 'ajaxFile'));
add_action('wp_ajax_cfdb-file', array(&$this, 'ajaxFile'));
// Register Get Form Fields URL
add_action('wp_ajax_nopriv_cfdb-getFormFields', array(&$this, 'ajaxGetFormFields'));
add_action('wp_ajax_cfdb-getFormFields', array(&$this, 'ajaxGetFormFields'));
// Register Validate submit_time value (used in short code builder page)
add_action('wp_ajax_nopriv_cfdb-validate-submit_time', array(&$this, 'ajaxValidateSubmitTime'));
add_action('wp_ajax_cfdb-validate-submit_time', array(&$this, 'ajaxValidateSubmitTime'));
// Login via Ajax instead of login form
add_action('wp_ajax_nopriv_cfdb-login', array(&$this, 'ajaxLogin'));
add_action('wp_ajax_cfdb-login', array(&$this, 'ajaxLogin'));
add_action('wp_ajax_nopriv_cfdb-cleanup', array(&$this, 'ajaxCleanup'));
add_action('wp_ajax_cfdb-cleanup', array(&$this, 'ajaxCleanup'));
// Shortcode to add a table to a page
$sc = new CFDBShortcodeTable();
$sc->register(array('cf7db-table', 'cfdb-table')); // cf7db-table is deprecated
// Shortcode to add a DataTable
$sc = new CFDBShortcodeDataTable();
$sc->register('cfdb-datatable');
// Shortcode to add a JSON to a page
$sc = new CFDBShortcodeJson();
$sc->register('cfdb-json');
// Shortcode to add a value (just text) to a page
$sc = new CFDBShortcodeValue();
$sc->register('cfdb-value');
// Shortcode to add entry count to a page
$sc = new CFDBShortcodeCount();
$sc->register('cfdb-count');
// Shortcode to add values wrapped in user-defined html
$sc = new CFDBShortcodeHtml();
$sc->register('cfdb-html');
// Shortcode to generate Export URLs
$sc = new CFDBShortcodeExportUrl();
$sc->register('cfdb-export-link');
// Shortcode to save data from non-CF7/FSCF forms
$sc = new CFDBShortCodeSavePostData();
$sc->register('cfdb-save-form-post');
// Shortcode to save data Form Maker submissions
$sc = new CFDBShortCodeSaveFormMakerSubmission();
$sc->register('cfdb-save-form-maker-post');
}
public function ajaxLogin() {
// Login the user
$key = 'kx82XcPjq8q8S!xafx%$&7p6';
$creds = array();
$user = null;
$password = null;
if (!empty($_REQUEST['l'])) {
$userPass = CFDBDeobfuscate::deobfuscateHexString($_REQUEST['l'], $key);
$userPass = explode('/', $userPass, 2);
$count = count($userPass);
if ($count >= 1) {
$user = $userPass[0];
if ($count > 1) {
$password = $userPass[1];
}
}
}
if (!$user) {
$user = !empty($_REQUEST['username']) ? $_REQUEST['username'] : null;
}
if (!$user) {
$user = !empty($_REQUEST['user_login']) ? $_REQUEST['user_login'] : null;
}
if (!$password) {
$password = !empty($_REQUEST['password']) ? $_REQUEST['password'] : null;
}
if (!$password) {
$password = !empty($_REQUEST['user_password']) ? $_REQUEST['user_password'] : null;
}
$creds['user_login'] = $user;
$creds['user_password'] = $password;
$creds['remember'] = !empty($_REQUEST['rememberme']) ? $_REQUEST['rememberme'] : null;
$user = wp_signon($creds, false);
if (is_wp_error($user)) {
echo $user->get_error_message();
die;
}
wp_set_current_user($user->ID);
// User is logged in. Now do the requested action
if (!empty($_REQUEST['cfdb-action'])) {
switch ($_REQUEST['cfdb-action']) {
case 'cfdb-export':
if (!$this->canUserDoRoleOption('CanSeeSubmitData')) {
echo '<strong>ERROR</strong>: user ' . $creds['user_login'] . ' is not authorized to export CFDB data';
die;
}
$this->ajaxExport();
break;
default:
break;
}
}
die;
}
public function ajaxExport() {
require_once('CF7DBPluginExporter.php');
CF7DBPluginExporter::doExportFromPost();
die();
}
public function ajaxFile() {
require_once('CFDBDie.php');
if (!$this->canUserDoRoleOption('CanSeeSubmitData') &&
!$this->canUserDoRoleOption('CanSeeSubmitDataViaShortcode')) {
CFDBDie::wp_die(__('You do not have sufficient permissions to access this page.', 'contact-form-7-to-database-extension'));
}
$submitTime = $_REQUEST['s'];
$formName = $_REQUEST['form'];
$fieldName = $_REQUEST['field'];
if (!$submitTime || !$formName || !$fieldName) {
CFDBDie::wp_die(__('Missing form parameters', 'contact-form-7-to-database-extension'));
}
$fileInfo = (array)$this->getFileFromDB($submitTime, $formName, $fieldName);
if ($fileInfo == null) {
CFDBDie::wp_die(__('No such file.', 'contact-form-7-to-database-extension'));
}
require_once('CFDBMimeTypeExtensions.php');
$mimeMap = new CFDBMimeTypeExtensions();
$mimeType = $mimeMap->get_type_by_filename($fileInfo[0]);
if (ob_get_level()) {
ob_end_clean(); // Fix bug where download files can be corrupted
}
if ($mimeType) {
header('Content-Type: ' . $mimeType);
header("Content-Disposition: inline; filename=\"$fileInfo[0]\"");
}
else {
header("Content-Disposition: attachment; filename=\"$fileInfo[0]\"");
}
echo($fileInfo[1]);
die();
}
public function ajaxGetFormFields() {
if (!$this->canUserDoRoleOption('CanSeeSubmitData') || !isset($_REQUEST['form'])) {
die();
}
header('Content-Type: application/json; charset=UTF-8');
header("Pragma: no-cache");
header("Expires: Thu, 01 Jan 1970 00:00:00 GMT");
global $wpdb;
$tableName = $this->getSubmitsTableName();
$formName = $_REQUEST['form'];
$rows = $wpdb->get_results("SELECT DISTINCT `field_name` FROM `$tableName` WHERE `form_name` = '$formName' ORDER BY field_order");
$fields = array();
if (!empty($rows)) {
$fields[] = 'Submitted';
foreach ($rows as $aRow) {
$fields[] = $aRow->field_name;
}
$fields[] = 'submit_time';
}
echo json_encode($fields);
die();
}
public function ajaxValidateSubmitTime() {
header('Content-Type: text/plain; charset=UTF-8');
header("Pragma: no-cache");
header("Expires: Thu, 01 Jan 1970 00:00:00 GMT");
$submitTime = $_REQUEST['submit_time'];
$invalid = false;
$time = $submitTime;
if (!is_numeric($submitTime)) {
if (version_compare(phpversion(), '5.1.0') == -1) {
$invalid = -1;
}
$this->setTimezone();
$time = strtotime($submitTime);
}
if ($invalid === $time) {
echo htmlspecialchars(__('Invalid: ', 'contact-form-7-to-database-extension'));
}
else {
echo htmlspecialchars(__('Valid: ', 'contact-form-7-to-database-extension'));
}
echo "'$submitTime' = $time";
if ($invalid !== $time) {
echo " = " . $this->formatDate($time);
}
die();
}
public function ajaxCleanup() {
if (!$this->canUserDoRoleOption('CanChangeSubmitData')) {
die();
}
header('Content-Type: text/plain; charset=UTF-8');
header("Pragma: no-cache");
header("Expires: Thu, 01 Jan 1970 00:00:00 GMT");
echo htmlspecialchars(__('Checking for conflicting entries. This may take a few minutes.', 'contact-form-7-to-database-extension'));
echo "\n";
require_once('CFDBCleanupData.php');
$cleanup = new CFDBCleanupData($this);
echo htmlspecialchars(__('Phase 1 of 3...', 'contact-form-7-to-database-extension'));
$count = $cleanup->cleanupForms();
echo htmlspecialchars(__('Database entries fixed: ', 'contact-form-7-to-database-extension'));
echo ($count);
echo "\n";
echo htmlspecialchars(__('Phase 2 of 3...', 'contact-form-7-to-database-extension'));
$count = $cleanup->deleteEmptyEntries();
echo htmlspecialchars(__('Database entries fixed: ', 'contact-form-7-to-database-extension'));
echo ($count);
echo "\n";
echo htmlspecialchars(__('Phase 3 of 3...', 'contact-form-7-to-database-extension'));
$count = $cleanup->cleanupEntries();
echo htmlspecialchars(__('Database entries fixed: ', 'contact-form-7-to-database-extension'));
echo ($count);
echo "\n";
die();
}
public function addSettingsSubMenuPage() {
// $this->requireExtraPluginFiles();
// $displayName = $this->getPluginDisplayName();
// add_submenu_page('wpcf7', //$this->getDBPageSlug(),
// $displayName . ' Options',
// __('Database Options', 'contact-form-7-to-database-extension'),
// 'manage_options',
// get_class($this) . 'Settings',
// array(&$this, 'settingsPage'));
}
public function generateSubmitTime() {
global $wpdb;
$table = $this->getSTTableName();
$time = 0;
$noDuplicate = false;
$tries = 0;
$wpdb->hide_errors(); // avoid submission page from hanging on DB error like table not exists
while (!$noDuplicate && ++$tries <= 20) {
// $tries breaks out of loop which would be infinite when table to insert into does not exist
$time = function_exists('microtime') ? microtime(true) : time();
// Bug fix: on some systems microtime is in scientific notation when converted to string
$time = number_format($time, 4, '.', '');
// Avoid duplicate submission with the same submit_time in the DB
$noDuplicate = $wpdb->query($wpdb->prepare("INSERT INTO $table VALUES (%s)", $time));
}
return $time;
}
/**
* Callback for saving form data. Originally based on Contact Form 7's callback object
* with submission data in $cf7->posted_data. However that has changed over time.
* FSCF sends an object matching this data structure. Other form plugins have their data
* transformed into the expected data structure via other callbacks in this class
* @param $cf7 object containing posted data
* @return bool
*/
public function saveFormData($cf7) {
try {
if (!empty($cf7->posted_data['submit_time']) && is_numeric($cf7->posted_data['submit_time'])) {
$time = $cf7->posted_data['submit_time'];
unset($cf7->posted_data['submit_time']);
unset($cf7->posted_data['submit_url']);
} else {
$time = $this->generateSubmitTime();
}
$cf7->submit_time = $time;
$ip = (isset($_SERVER['X_FORWARDED_FOR'])) ? $_SERVER['X_FORWARDED_FOR'] : $_SERVER['REMOTE_ADDR'];
// Set up to allow all this data to be filtered
$cf7->ip = $ip;
$user = null;
if (function_exists('is_user_logged_in') && is_user_logged_in()) {
$current_user = wp_get_current_user(); // WP_User
$user = $current_user->user_login;
}
$cf7->user = $user;
try {
$newCf7 = apply_filters('cfdb_form_data', $cf7);
if ($newCf7 && is_object($newCf7)) {
$cf7 = $newCf7;
$time = $cf7->submit_time;
$ip = $cf7->ip;
$user = $cf7->user;
}
else {
//$this->getErrorLog()->log('CFDB Error: No or invalid value returned from "cfdb_form_data" filter: ' .
// print_r($newCf7, true));
// Returning null from cfdb_form_data is a way to stop from saving the form
return true;
}
}
catch (Exception $ex) {
$this->getErrorLog()->logException($ex);
}
// Get title after applying filter
if (isset($cf7->title)) {
$title = $cf7->title;
} else {
$title = 'Unknown';
}
$title = stripslashes($title);
if ($this->fieldMatches($title, $this->getNoSaveForms())) {
return true; // Don't save in DB
}
$tableName = $this->getSubmitsTableName();
$parametrizedQuery = "INSERT INTO `$tableName` (`submit_time`, `form_name`, `field_name`, `field_value`, `field_order`) VALUES (%s, %s, %s, %s, %s)";
$parametrizedFileQuery = "INSERT INTO `$tableName` (`submit_time`, `form_name`, `field_name`, `field_value`, `field_order`, `file`) VALUES (%s, %s, %s, %s, %s, %s)";
$order = 0;
$noSaveFields = $this->getNoSaveFields();
$foundUploadFiles = array();
global $wpdb;
// $hasDropBox = $this->getOption('dropbox');
// if ($hasDropBox) {
// require_once('CFDBShortCodeSavePostData.php');
// }
foreach ($cf7->posted_data as $name => $value) {
$nameClean = stripslashes($name);
if ($this->fieldMatches($nameClean, $noSaveFields)) {
continue; // Don't save in DB
}
$value = is_array($value) ? implode($value, ', ') : $value;
$valueClean = stripslashes($value);
// Check if this is a file upload field
$didSaveFile = false;
if ($cf7->uploaded_files && isset($cf7->uploaded_files[$nameClean])) {
$foundUploadFiles[] = $nameClean;
$filePath = $cf7->uploaded_files[$nameClean];
if ($filePath) {
$content = file_get_contents($filePath);
$didSaveFile = $wpdb->query($wpdb->prepare($parametrizedFileQuery,
$time,
$title,
$nameClean,
$valueClean,
$order++,
$content));
if (!$didSaveFile) {
$this->getErrorLog()->log("CFDB Error: could not save uploaded file, field=$nameClean, file=$filePath");
}
}
}
if (!$didSaveFile) {
$wpdb->query($wpdb->prepare($parametrizedQuery,
$time,
$title,
$nameClean,
$valueClean,
$order++));
}
}
// Since Contact Form 7 version 3.1, it no longer puts the names of the files in $cf7->posted_data
// So check for them only only in $cf7->uploaded_files
// Update: This seems to have been reversed back to the original in Contact Form 7 3.2 or 3.3
if ($cf7->uploaded_files && is_array($cf7->uploaded_files)) {
foreach ($cf7->uploaded_files as $field => $filePath) {
if (!in_array($field, $foundUploadFiles) &&
$filePath &&
!$this->fieldMatches($field, $noSaveFields)) {
$fileName = basename($filePath);
$content = file_get_contents($filePath);
$didSaveFile = $wpdb->query($wpdb->prepare($parametrizedFileQuery,
$time,
$title,
$field,
$fileName,
$order++,
$content));
if (!$didSaveFile) {
$this->getErrorLog()->log("CFDB Error: could not save uploaded file, field=$field, file=$filePath");
}
}
}
}
// Save Cookie data if that option is true
if ($this->getOption('SaveCookieData', 'false') == 'true' && is_array($_COOKIE)) {
$saveCookies = $this->getSaveCookies();
foreach ($_COOKIE as $cookieName => $cookieValue) {
if (empty($saveCookies) || $this->fieldMatches($cookieName, $saveCookies)) {
$wpdb->query($wpdb->prepare($parametrizedQuery,
$time,
$title,
'Cookie ' . $cookieName,
$cookieValue,
$order++));
}
}
}
// If the submitter is logged in, capture his id
if ($user) {
$order = ($order < 9999) ? 9999 : $order + 1; // large order num to try to make it always next-to-last
$wpdb->query($wpdb->prepare($parametrizedQuery,
$time,
$title,
'Submitted Login',
$user,
$order));
}
// Capture the IP Address of the submitter
$order = ($order < 10000) ? 10000 : $order + 1; // large order num to try to make it always last
$wpdb->query($wpdb->prepare($parametrizedQuery,
$time,
$title,
'Submitted From',
$ip,
$order));
}
catch (Exception $ex) {
$this->getErrorLog()->logException($ex);
}
// Indicate success to WordPress so it continues processing other unrelated hooks.
return true;
}
/**
* @param $fieldName string
* @param $patternsArray array
* @return boolean true if $fieldName is in $patternsArray or matches any element of it that is a regex
*/
public function fieldMatches($fieldName, $patternsArray) {
if (is_array($patternsArray)) {
foreach($patternsArray as $pattern) {
if ($fieldName == $pattern) {
return true;
}
if (strncmp($pattern, '/', 1) == 0) {
if (@preg_match($pattern , $fieldName)) {
return true;
}
}
}
}
return false;
}
/**
* @param $time string form submit time
* @param $formName string form name
* @param $fieldName string field name (should be an upload file field)
* @return array of (file-name, file-contents) or null if not found
*/
public function getFileFromDB($time, $formName, $fieldName) {
global $wpdb;
$tableName = $this->getSubmitsTableName();
$parametrizedQuery = "SELECT `field_value`, `file` FROM `$tableName` WHERE `submit_time` = %F AND `form_name` = %s AND `field_name` = '%s'";
$rows = $wpdb->get_results($wpdb->prepare($parametrizedQuery, $time, $formName, $fieldName));
if ($rows == null || count($rows) == 0) {
return null;
}
return array($rows[0]->field_value, $rows[0]->file);
}
/**
* Install page for this plugin in WP Admin
* @return void
*/
public function createAdminMenu() {
$roleAllowed = 'Administrator';
$displayName = $this->getPluginDisplayName();
$hideFromNonAdmins = $this->getOption('HideAdminPanelFromNonAdmins', 'false') != 'false';
if ($hideFromNonAdmins) {
$roleAllowed = 'Administrator';
} else {
$roleAllowed = $this->getRoleOption('CanSeeSubmitData');
if (!$roleAllowed) {
$roleAllowed = 'Administrator';
}
}
if (! $this->isUserRoleEqualOrBetterThan($roleAllowed)) {
return;
}
$menuSlug = $this->getDBPageSlug();
//create new top-level menu
add_menu_page($displayName,
__('Contact Form DB', 'contact-form-7-to-database-extension'),
$this->roleToCapability($roleAllowed),
$menuSlug, //$this->getDBPageSlug(),
array(&$this, 'whatsInTheDBPage'),
$this->getPluginFileUrl('img/icon-bw-20x20.png'));
// Needed for dialog in whatsInTheDBPage
if (strpos($_SERVER['REQUEST_URI'], $this->getDBPageSlug()) !== false) {
$pluginUrl = $this->getPluginFileUrl() . '/';
wp_enqueue_script('jquery');
wp_enqueue_script('jquery-ui-core');
wp_enqueue_script('jquery-ui-dialog');
wp_enqueue_script('CF7DBdes', $pluginUrl . 'des.js');
wp_enqueue_style('jquery-ui.css', $pluginUrl . 'jquery-ui/jquery-ui-1.8.21.custom.css');
// Datatables http://www.datatables.net
if ($this->getOption('UseDataTablesJS', 'true') == 'true') {
// wp_enqueue_style('datatables-demo', 'http://www.datatables.net/release-datatables/media/css/demo_table.css');
// wp_enqueue_script('datatables', 'http://www.datatables.net/release-datatables/media/js/jquery.dataTables.js', array('jquery'));
wp_enqueue_style('datatables-demo', $pluginUrl .'DataTables/media/css/demo_table.css');
wp_enqueue_script('datatables', $pluginUrl . 'DataTables/media/js/jquery.dataTables.min.js', array('jquery'));
if ($this->canUserDoRoleOption('CanChangeSubmitData')) {
do_action_ref_array('cfdb_edit_enqueue', array());
}
// Would like to add ColReorder but it causes slowness and display issues with DataTable footer
//wp_enqueue_style('datatables-ColReorder', $pluginUrl .'DataTables/extras/ColReorder/media/css/ColReorder.css');
//wp_enqueue_script('datatables-ColReorder', $pluginUrl . 'DataTables/extras/ColReorder/media/js/ColReorder.min.js', array('datatables', 'jquery'));
}
}
if (strpos($_SERVER['REQUEST_URI'], $this->getShortCodeBuilderPageSlug()) !== false) {
wp_enqueue_script('jquery');
$pluginUrl = $this->getPluginFileUrl() . '/';
wp_enqueue_script('CF7DBdes', $pluginUrl . 'des.js');
}
// // Put page under CF7's "Contact" page
// add_submenu_page('wpcf7',
// $displayName . ' Submissions',
// __('Database', 'contact-form-7-to-database-extension'),
// $this->roleToCapability($roleAllowed),
// $this->getDBPageSlug(),
// array(&$this, 'whatsInTheDBPage'));
add_submenu_page($menuSlug,
$displayName . ' Short Code Builder',
__('Short Code', 'contact-form-7-to-database-extension'),
$this->roleToCapability($roleAllowed),
$this->getShortCodeBuilderPageSlug(),
array(&$this, 'showShortCodeBuilderPage'));
if ($this->isEditorActive() && $this->canUserDoRoleOption('CanSeeSubmitData')) {
add_submenu_page($menuSlug,
$displayName . ' Import',
__('Import', 'contact-form-7-to-database-extension'),
$this->roleToCapability($this->getRoleOption('CanChangeSubmitData')),
get_class($this) . 'Import',
array(&$this, 'showShortImportCsvPage'));
}
add_submenu_page($menuSlug,
$displayName . ' Options',
__('Options', 'contact-form-7-to-database-extension'),
'manage_options',
get_class($this) . 'Settings',
array(&$this, 'settingsPage'));
// // Put page under CF7's "Contact" page
// add_submenu_page('wpcf7',
// $displayName . ' Short Code Builder',
// __('Database Short Code', 'contact-form-7-to-database-extension'),
// $this->roleToCapability($roleAllowed),
// $this->getSortCodeBuilderPageSlug(),
// array(&$this, 'showShortCodeBuilderPage'));
}
/**
* @return string WP Admin slug for page to view DB data
*/
public function getDBPageSlug() {
return get_class($this) . 'Submissions';
}
public function getShortCodeBuilderPageSlug() {
return get_class($this) . 'ShortCodeBuilder';
}
public function showShortCodeBuilderPage() {
require_once('CFDBViewShortCodeBuilder.php');
$view = new CFDBViewShortCodeBuilder;
$view->display($this);
}
public function showShortImportCsvPage() {
require_once('CFDBViewImportCsv.php');
$view = new CFDBViewImportCsv;
$view->display($this);
}
/**
* Display the Admin page for this Plugin that show the form data saved in the database
* @return void
*/
public function whatsInTheDBPage() {
if (isset($_REQUEST['submit_time'])) {
$submitTime = $_REQUEST['submit_time'];
require_once('ExportEntry.php');
$exp = new ExportEntry();
if (isset($_REQUEST['form_name']) && !empty($_REQUEST['form_name'])) {
$form = stripslashes($_REQUEST['form_name']);
} else {
global $wpdb;
$table = $this->getSubmitsTableName();
$form = $wpdb->get_var($wpdb->prepare("SELECT form_name from $table where submit_time = %s LIMIT 1",
$submitTime));
}
?>
<form action="<?php echo get_admin_url() . 'admin.php?page=' . $this->getDBPageSlug() . "&form_name=" . urlencode($form) ?>" method="post">
<input name="form_name" type="hidden" value="<?php echo htmlspecialchars($form) ?>"/>
<input name="<?php echo htmlspecialchars($submitTime) ?>" type="hidden" value="row"/>
<?php wp_nonce_field(); ?>
<button id="delete" name="cfdbdel" onclick="this.form.submit();"><?php echo htmlspecialchars(__('Delete', 'contact-form-7-to-database-extension')); ?></button>
</form>
<?php
$exp->export($form, array('submit_time' => $submitTime));
} else {
require_once('CFDBViewWhatsInDB.php');
$view = new CFDBViewWhatsInDB;
$view->display($this);
}
}
static $checkForCustomDateFormat = true;
static $customDateFormat = null;
static $dateFormat = null;
static $timeFormat = null;
/**
* Format input date string
* @param $time int same as returned from PHP time()
* @return string formatted date according to saved options
*/
public function formatDate($time) {
// This method gets executed in a loop. Cache some variable to avoid
// repeated get_option calls to the database
if (CF7DBPlugin::$checkForCustomDateFormat) {
if ($this->getOption('UseCustomDateTimeFormat', 'true') == 'true') {
CF7DBPlugin::$customDateFormat = $this->getOption('SubmitDateTimeFormat', 'Y-m-d H:i:s P');
}
else {
CF7DBPlugin::$dateFormat = get_option('date_format');
CF7DBPlugin::$timeFormat = get_option('time_format');
}
$this->setTimezone();
CF7DBPlugin::$checkForCustomDateFormat = false;
}
// Support Shamsi(Jalali) dates by looking for a plugin that can produce the correct text for the date
if (!function_exists('is_plugin_active') && @file_exists(ABSPATH . 'wp-admin/includes/plugin.php')) {
include_once(ABSPATH . 'wp-admin/includes/plugin.php');
}
if (function_exists('is_plugin_active')) {
// See if wp-parsidate is active and if so, have it convert the date
// using its 'parsidate' function
if (is_plugin_active('wp-parsidate/wp-parsidate.php')) {
if (function_exists('parsidate')) {
if (CF7DBPlugin::$customDateFormat) {
return parsidate(CF7DBPlugin::$customDateFormat, $time);
}
else {
return parsidate(CF7DBPlugin::$dateFormat . ' ' . CF7DBPlugin::$timeFormat, $time);
}
}
}
// See if wp-jalali is active and if so, have it convert the date
// using its 'jdate' function
else if (is_plugin_active('wp-jalali/wp-jalali.php')) {
$jDateFile = WP_PLUGIN_DIR . '/wp-jalali/inc/jalali-core.php';
if(@file_exists($jDateFile)) {
include_once($jDateFile);
if (function_exists('jdate')) {
//return jdate('l, F j, Y');
if (CF7DBPlugin::$customDateFormat) {
return jdate(CF7DBPlugin::$customDateFormat, $time);
}
else {
return jdate(CF7DBPlugin::$dateFormat . ' ' . CF7DBPlugin::$timeFormat, $time);
}
}
}
}
}
if (CF7DBPlugin::$customDateFormat) {
return date(CF7DBPlugin::$customDateFormat, $time);
}
else {
return date_i18n(CF7DBPlugin::$dateFormat . ' ' . CF7DBPlugin::$timeFormat, $time);
}
}
/**
* @param $submitTime string PK for form submission
* @param $formName string
* @param $fieldName string
* @return string URL to download file
*/
public function getFileUrl($submitTime, $formName, $fieldName) {
return sprintf('%s?action=cfdb-file&s=%s&form=%s&field=%s',
admin_url('admin-ajax.php'),
$submitTime,
urlencode($formName),
urlencode($fieldName));
}
public function getFormFieldsAjaxUrlBase() {
return admin_url('admin-ajax.php') . '?action=cfdb-getFormFields&form=';
}
public function getValidateSubmitTimeAjaxUrlBase() {
return admin_url('admin-ajax.php') . '?action=cfdb-validate-submit_time&submit_time=';
}
/**
* @return array of string
*/
public function getNoSaveFields() {
return preg_split('/,|;/', $this->getOption('NoSaveFields'), -1, PREG_SPLIT_NO_EMPTY);
}
/**
* @return array of string
*/
public function getNoSaveForms() {
return preg_split('/,|;/', $this->getOption('NoSaveForms'), -1, PREG_SPLIT_NO_EMPTY);
}
/**
* @return array of string
*/
public function getSaveCookies() {
return preg_split('/,|;/', $this->getOption('SaveCookieNames'), -1, PREG_SPLIT_NO_EMPTY);
}
/**
* @return string
*/
public function getSubmitsTableName() {
// $overrideTable = $this->getOption('SubmitTableNameOverride');
// if ($overrideTable && "" != $overrideTable) {
// return $overrideTable;
// }
//return strtolower($this->prefixTableName('SUBMITS'));
global $wpdb;
return $wpdb->prefix . strtolower($this->prefix('SUBMITS'));
}
public function getSTTableName() {
global $wpdb;
return $wpdb->prefix . strtolower($this->prefix('ST'));
}
/**
* @return string URL to the Plugin directory. Includes ending "/"
*/
public function getPluginDirUrl() {
//return WP_PLUGIN_URL . '/' . str_replace(basename(__FILE__), '', plugin_basename(__FILE__));
return $this->getPluginFileUrl('/');
}
/**
* @param string $pathRelativeToThisPluginRoot points to a file with relative path from
* this plugin's root dir. I.e. file "des.js" in the root of this plugin has
* url = $this->getPluginFileUrl('des.js');
* If it was in a sub-folder "js" then you would use
* $this->getPluginFileUrl('js/des.js');
* @return string full url to input file
*/
public function getPluginFileUrl($pathRelativeToThisPluginRoot = '') {
return plugins_url($pathRelativeToThisPluginRoot, __FILE__);
}
/**
* @return string URL of the language translation file for DataTables oLanguage.sUrl parameter
* or null if it does not exist.
*/
public function getDataTableTranslationUrl() {
$url = null;
$locale = get_locale();
$i18nDir = dirname(__FILE__) . '/dt_i18n/';
// See if there is a local file
if (is_readable($i18nDir . $locale . '.json')) {
$url = $this->getPluginFileUrl() . "/dt_i18n/$locale.json";
}
else {
// Pull the language code from the $local string
// which is expected to look like "en_US"
// where the first 2 or 3 letters are for lang followed by '_'
$lang = null;
if (substr($locale, 2, 1) == '_') {
// 2-letter language codes
$lang = substr($locale, 0, 2);
}
else if (substr($locale, 3, 1) == '_') {
// 3-letter language codes
$lang = substr($locale, 0, 3);
}
if ($lang && is_readable($i18nDir . $lang . '.json')) {
$url = $this->getPluginFileUrl() . "/dt_i18n/$lang.json";
}
}
return $url;
}
public function setTimezone() {
$timezone = trim($this->getOption('Timezone'));
if (empty($timezone)) {
$timezone = get_option('timezone_string');
}
if (!empty($timezone)) {
date_default_timezone_set($timezone);
}
}
/**
* @return boolean Is the CFDB Editor extension installed?
*/
public function isEditorInstalled() {
return get_option('CFDBEditPlugin__installed', false) == true;
}
/**
* @return string|null get the CFDB Editor extension version string.
* return null if not installed
*/
public function getEditorSavedVersion() {
return get_option('CFDBEditPlugin__version', null);
}
/**
* @return array of CFDB Editor plugin data, see: http://codex.wordpress.org/Function_Reference/get_plugin_data
*/
public function getEditorPluginData() {
$editPluginFile = WP_PLUGIN_DIR .
'/contact-form-to-database-extension-edit/contact-form-to-database-extension-edit.php';
if(@file_exists($editPluginFile)) {
$pluginData = get_plugin_data($editPluginFile);
if (is_array($pluginData)) {
return $pluginData;
}
}
return array();
}
/**
* @return bool if CFDB Editor extension plugin is activated
*/
public function isEditorActive() {
$editPluginFile = 'contact-form-to-database-extension-edit/contact-form-to-database-extension-edit.php';
return function_exists('is_plugin_active') && is_plugin_active($editPluginFile);
}
public function addAdminNotices() {
if (!$this->isEditorActive()) {
return;
}
$requiredEditorVersion = '1.4.1';
$editorData = $this->getEditorPluginData();
if (isset($editorData['Version'])) {
if (version_compare($editorData['Version'], $requiredEditorVersion) == -1) {
$editorPluginName = version_compare($editorData['Version'], '1.4', '<') ? 'Contact Form to DB Extension Edit' : 'Contact Form DB Editor';
?>
<div id="message" class="error">
<?php echo htmlentities(__('Plugin should be updated: ', 'contact-form-7-to-database-extension')); ?><strong><?php echo $editorPluginName ?></strong><br/>
<?php echo htmlentities(__('Current version: ', 'contact-form-7-to-database-extension')); echo $editorData['Version']; ?><br/>
<?php echo htmlentities(__('Minimum required version: ', 'contact-form-7-to-database-extension')); echo $requiredEditorVersion; ?><br/>
<a target="_cfdbeditupgrade" href="http://cfdbplugin.com/?page_id=939"><?php echo htmlentities(__('Download the latest version', 'contact-form-7-to-database-extension')); ?></a>
</div>
<?php
}
}
}
/**
* @return array of form names that have data in the DB
*/
public function getForms() {
global $wpdb;
$forms = array();
$tableName = $this->getSubmitsTableName();
$formsFromQuery = $wpdb->get_results("select distinct `form_name` from `$tableName` order by `form_name`");
foreach ($formsFromQuery as $aRow) {
$forms[] = $aRow->form_name;
}
return $forms;
}
/**
* return CFDBErrorLog
*/
public function getErrorLog() {
$destination = trim($this->getOption('ErrorOutput', ''));
return new CFDBErrorLog($this, $destination);
}
}