cookie-notice.php
46 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
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
<?php
/*
Plugin Name: Cookie Notice & Compliance for GDPR / CCPA
Description: Cookie Notice allows you to you elegantly inform users that your site uses cookies and helps you comply with GDPR, CCPA and other data privacy laws.
Version: 2.4.10
Author: Hu-manity.co
Author URI: https://hu-manity.co/
Plugin URI: https://cookie-compliance.co/
License: MIT License
License URI: https://opensource.org/licenses/MIT
Text Domain: cookie-notice
Domain Path: /languages
Cookie Notice
Copyright (C) 2023, Hu-manity.co - info@hu-manity.co
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
*/
// exit if accessed directly
if ( ! defined( 'ABSPATH' ) )
exit;
/**
* Cookie Notice class.
*
* @class Cookie_Notice
* @version 2.4.10
*/
class Cookie_Notice {
private $status_data = [
'status' => '',
'subscription' => 'basic',
'threshold_exceeded' => false
];
private $x_api_key = 'hudft60djisdusdjwek';
private $app_host_url = 'https://app.hu-manity.co';
private $app_login_url = 'https://app.hu-manity.co/#/en/cc2/login';
private $app_dashboard_url = 'https://app.hu-manity.co/#/en/cc/dashboard';
private $account_api_url = 'https://account-api.hu-manity.co';
private $designer_api_url = 'https://designer-api.hu-manity.co';
private $transactional_api_url = 'https://transactional-api.hu-manity.co';
private $app_widget_url = '//cdn.hu-manity.co/hu-banner.min.js';
private $deactivaion_url = '';
private $network_admin = false;
private $plugin_network_active = false;
private static $_instance;
private $notices = [];
public $options = [];
public $network_options = [];
public $bot_detect;
public $dashboard;
public $frontend;
public $settings;
public $welcome;
public $welcome_api;
public $welcome_frontend;
public $db_version;
/**
* @var $defaults
*/
public $defaults = [
'general' => [
'global_override' => false,
'global_cookie' => false,
'app_id' => '',
'app_key' => '',
'app_blocking' => true,
'conditional_active' => false,
'conditional_display' => 'hide',
'conditional_rules' => [],
'caching_compatibility' => true,
'debug_mode' => false,
'position' => 'bottom',
'message_text' => '',
'css_class' => '',
'accept_text' => '',
'refuse_text' => '',
'refuse_opt' => false,
'refuse_code' => '',
'refuse_code_head' => '',
'revoke_cookies' => false,
'revoke_cookies_opt' => 'automatic',
'revoke_message_text' => '',
'revoke_text' => '',
'redirection' => false,
'see_more' => false,
'link_target' => '_blank',
'link_position' => 'banner',
'time' => 'month',
'time_rejected' => 'month',
'hide_effect' => 'fade',
'on_scroll' => false,
'on_scroll_offset' => 100,
'on_click' => false,
'colors' => [
'text' => '#fff',
'button' => '#00a99d',
'bar' => '#32323a',
'bar_opacity' => 100
],
'see_more_opt' => [
'text' => '',
'link_type' => 'page',
'id' => 0,
'link' => '',
'sync' => false
],
'script_placement' => 'header',
'translate' => true,
'deactivation_delete' => false,
'update_version' => 8,
'update_notice' => true,
'update_notice_diss' => false,
'update_delay_date' => 0,
'update_threshold_date' => 0
],
'data' => [
'status' => '',
'subscription' => 'basic',
'threshold_exceeded' => false
],
'version' => '2.4.10'
];
/**
* Disable object cloning.
*
* @return void
*/
public function __clone() {}
/**
* Disable unserializing of the class.
*
* @return void
*/
public function __wakeup() {}
/**
* Main plugin instance.
*
* @return object
*/
public static function instance() {
if ( self::$_instance === null ) {
self::$_instance = new self();
add_action( 'init', [ self::$_instance, 'load_textdomain' ] );
self::$_instance->includes();
self::$_instance->bot_detect = new Cookie_Notice_Bot_Detect();
self::$_instance->dashboard = new Cookie_Notice_Dashboard();
self::$_instance->frontend = new Cookie_Notice_Frontend();
self::$_instance->settings = new Cookie_Notice_Settings();
self::$_instance->welcome = new Cookie_Notice_Welcome();
self::$_instance->welcome_api = new Cookie_Notice_Welcome_API();
self::$_instance->welcome_frontend = new Cookie_Notice_Welcome_Frontend();
}
return self::$_instance;
}
/**
* Class constructor.
*
* @return void
*/
public function __construct() {
// define plugin constants
$this->define_constants();
// activation hooks
register_activation_hook( __FILE__, [ $this, 'activation' ] );
register_deactivation_hook( __FILE__, [ $this, 'deactivation' ] );
// set network data
$this->set_network_data();
$this->check_legacy_options();
// get options
if ( is_multisite() ) {
// get network options
$this->network_options = get_site_option( 'cookie_notice_options', $this->defaults['general'] );
if ( $this->is_network_admin() ) {
$options = $this->network_options;
} else {
$page = isset( $_GET['page'] ) ? sanitize_key( $_GET['page'] ) : '';
// settings page?
if ( is_admin() && $page === 'cookie-notice' ) {
// get current url path
$url_path = parse_url( $_SERVER['REQUEST_URI'], PHP_URL_PATH );
if ( is_string( $url_path ) && basename( $url_path ) === 'admin.php' ) {
// get site options
$options = get_option( 'cookie_notice_options', $this->defaults['general'] );
}
} else {
if ( $this->is_plugin_network_active() && $this->network_options['global_override'] )
$options = $this->network_options;
else
$options = get_option( 'cookie_notice_options', $this->defaults['general'] );
}
}
} else
$options = get_option( 'cookie_notice_options', $this->defaults['general'] );
// merge old options with new ones
$this->options['general'] = $this->multi_array_merge( $this->defaults['general'], $options );
if ( ! isset( $this->options['general']['see_more_opt']['sync'] ) )
$this->options['general']['see_more_opt']['sync'] = $this->defaults['general']['see_more_opt']['sync'];
// actions
add_action( 'plugins_loaded', [ $this, 'set_status_data' ] );
add_action( 'init', [ $this, 'register_shortcodes' ] );
add_action( 'init', [ $this, 'wpsc_add_cookie' ] );
add_action( 'init', [ $this, 'set_plugin_links' ] );
add_action( 'admin_init', [ $this, 'update_notice' ] );
add_action( 'admin_enqueue_scripts', [ $this, 'admin_enqueue_scripts' ] );
add_action( 'admin_footer', [ $this, 'deactivate_plugin_template' ] );
add_action( 'wp_ajax_cn_dismiss_notice', [ $this, 'ajax_dismiss_admin_notice' ] );
add_action( 'wp_ajax_cn-deactivate-plugin', [ $this, 'deactivate_plugin' ] );
}
/**
* Check legacy options.
*
* @return void
*/
public function check_legacy_options() {
// multisite?
if ( is_multisite() ) {
// get network options
$site_options = get_site_option( 'cookie_notice_options', $this->defaults['general'] );
// update legacy options
$site_options = $this->update_legacy_options( $site_options );
// any changes?
if ( $site_options !== false )
update_site_option( 'cookie_notice_options', $site_options );
}
// get options
$options = get_option( 'cookie_notice_options', $this->defaults['general'] );
// update legacy options
$options = $this->update_legacy_options( $options );
// any changes?
if ( $options !== false )
update_option( 'cookie_notice_options', $options );
}
/**
* Maybe change legacy options.
*
* @param array $options
* @return false|array
*/
public function update_legacy_options( $options ) {
$options_changed = false;
// check legacy parameters that were yes/no strings
foreach ( [ 'refuse_opt', 'on_scroll', 'on_click', 'deactivation_delete', 'see_more' ] as $param ) {
if ( array_key_exists( $param, $options ) && ! is_bool( $options[$param] ) ) {
$options[$param] = $options[$param] === 'yes';
$options_changed = true;
}
}
// check hide banner
if ( isset( $options['hide_banner'] ) ) {
if ( $options['hide_banner'] && ! isset( $options['conditional_active'] ) ) {
$options['conditional_active'] = true;
$options['conditional_display'] = 'hide';
$options['conditional_rules'] = [
1 => [
1 => [
'param' => 'user_type',
'operator' => 'equal',
'value' => 'logged_in'
]
]
];
}
unset( $options['hide_banner'] );
$options_changed = true;
}
if ( $options_changed )
return $options;
else
return false;
}
/**
* Setup plugin constants.
*
* @return void
*/
private function define_constants() {
define( 'COOKIE_NOTICE_URL', plugins_url( '', __FILE__ ) );
define( 'COOKIE_NOTICE_PATH', plugin_dir_path( __FILE__ ) );
define( 'COOKIE_NOTICE_BASENAME', plugin_basename( __FILE__ ) );
}
/**
* Set cookie compliance status data.
*
* @return void
*/
public function set_status_data() {
$default_data = $this->defaults['data'];
if ( is_multisite() ) {
if ( $this->is_plugin_network_active() ) {
// network
if ( $this->is_network_admin() ) {
if ( $this->network_options['global_override'] )
$status_data = get_site_option( 'cookie_notice_status', $default_data );
else
$status_data = $default_data;
// site
} else {
if ( $this->network_options['global_override'] )
$status_data = get_site_option( 'cookie_notice_status', $default_data );
else
$status_data = get_option( 'cookie_notice_status', $default_data );
}
} else {
// network
if ( $this->is_network_admin() )
$status_data = $default_data;
// site
else
$status_data = get_option( 'cookie_notice_status', $default_data );
}
} else
$status_data = get_option( 'cookie_notice_status', $default_data );
// old status format?
if ( ! is_array( $status_data ) ) {
// update config data
$status_data = $this->welcome_api->get_app_config( '', true );
} else {
// merge database data with default data
$status_data = array_merge( $default_data, $status_data );
}
if ( $status_data['threshold_exceeded'] )
$this->options['general']['app_blocking'] = false;
// set status data
$this->status_data = [
'status' => $this->check_status( $status_data['status'] ),
'subscription' => $this->check_subscription( $status_data['subscription'] ),
'threshold_exceeded' => (bool) $status_data['threshold_exceeded']
];
}
/**
* Get cookie compliance status.
*
* @return string
*/
public function get_status() {
return $this->status_data['status'];
}
/**
* Check cookie compliance status.
*
* @param string $status
* @return string
*/
public function check_status( $status ) {
$status = sanitize_key( $status );
return ! empty( $status ) && in_array( $status, [ 'active', 'pending' ], true ) ? $status : $this->defaults['data']['status'];
}
/**
* Get cookie compliance subscription.
*
* @return string
*/
public function get_subscription() {
return $this->status_data['subscription'];
}
/**
* Check cookie compliance subscription.
*
* @param string $subscription
* @return string
*/
public function check_subscription( $subscription ) {
$subscription = sanitize_key( $subscription );
return ! empty( $subscription ) && in_array( $subscription, [ 'basic', 'pro' ], true ) ? $subscription : $this->defaults['data']['subscription'];
}
/**
* Check whether the current threshold is exceeded.
*
* @return bool
*/
public function threshold_exceeded() {
return $this->status_data['threshold_exceeded'];
}
/**
* Get endpoint URL.
*
* @param string $type
* @param string $query
* @return string
*/
public function get_url( $type, $query = '' ) {
if ( $type === 'login' )
$url = $this->app_login_url;
elseif ( $type === 'dashboard' )
$url = $this->app_dashboard_url;
elseif ( $type === 'widget' )
$url = $this->app_widget_url;
elseif ( $type === 'host' )
$url = $this->app_host_url;
elseif ( $type === 'account_api' )
$url = $this->account_api_url;
elseif ( $type === 'designer_api' )
$url = $this->designer_api_url;
elseif ( $type === 'transactional_api' )
$url = $this->transactional_api_url;
return $url . ( $query !== '' ? $query : '' );
}
/**
* Get API key.
*
* @return string
*/
public function get_api_key() {
return $this->x_api_key;
}
/**
* Check whether the current request is for the network administrative interface.
*
* @return bool
*/
public function is_network_admin() {
return $this->network_admin;
}
/**
* Check whether the plugin is active for the entire network.
*
* @return bool
*/
public function is_plugin_network_active() {
return $this->plugin_network_active;
}
/**
* Set network data.
*
* @return void
*/
private function set_network_data() {
// load plugin.php file
if ( ! function_exists( 'is_plugin_active_for_network' ) )
require_once( ABSPATH . '/wp-admin/includes/plugin.php' );
$cn_network = isset( $_POST['cn_network'] ) ? (int) $_POST['cn_network'] : false;
// bypass is_network_admin() to handle AJAX requests properly.
$this->network_admin = is_multisite() && ( is_network_admin() || ( wp_doing_ajax() && $cn_network === 1 ) );
// check whether the plugin is active for the entire network.
$this->plugin_network_active = is_plugin_active_for_network( COOKIE_NOTICE_BASENAME );
}
/**
* Include required files.
*
* @return void
*/
private function includes() {
include_once( COOKIE_NOTICE_PATH . 'includes/bot-detect.php' );
include_once( COOKIE_NOTICE_PATH . 'includes/dashboard.php' );
include_once( COOKIE_NOTICE_PATH . 'includes/frontend.php' );
include_once( COOKIE_NOTICE_PATH . 'includes/functions.php' );
include_once( COOKIE_NOTICE_PATH . 'includes/settings.php' );
include_once( COOKIE_NOTICE_PATH . 'includes/welcome.php' );
include_once( COOKIE_NOTICE_PATH . 'includes/welcome-api.php' );
include_once( COOKIE_NOTICE_PATH . 'includes/welcome-frontend.php' );
}
/**
* Load textdomain.
*
* @return void
*/
public function load_textdomain() {
load_plugin_textdomain( 'cookie-notice', false, dirname( COOKIE_NOTICE_BASENAME ) . '/languages/' );
}
/**
* Plugin activation.
*
* @global object $wpdb
*
* @param bool $network
* @return void
*/
public function activation( $network ) {
// network activation?
if ( is_multisite() && $network ) {
// add network options
add_site_option( 'cookie_notice_options', $this->defaults['general'] );
add_site_option( 'cookie_notice_status', $this->defaults['data'] );
add_site_option( 'cookie_notice_version', $this->defaults['version'] );
global $wpdb;
// get all available sites
$blogs_ids = $wpdb->get_col( 'SELECT blog_id FROM ' . $wpdb->blogs );
foreach ( $blogs_ids as $blog_id ) {
// change to another site
switch_to_blog( (int) $blog_id );
// run current site activation process
$this->activate_site();
restore_current_blog();
}
} else
$this->activate_site();
}
/**
* Single site activation.
*
* @return void
*/
public function activate_site() {
// add default options
add_option( 'cookie_notice_options', $this->defaults['general'], '', false );
add_option( 'cookie_notice_status', $this->defaults['data'], '', false );
add_option( 'cookie_notice_version', $this->defaults['version'], '', false );
}
/**
* Plugin deactivation.
*
* @global object $wpdb
*
* @param bool $network
* @return void
*/
public function deactivation( $network ) {
// network deactivation?
if ( is_multisite() && $network ) {
$delete = $this->options['general']['global_override'] && $this->options['general']['deactivation_delete'];
// delete network options?
if ( $delete ) {
delete_site_option( 'cookie_notice_options' );
delete_site_option( 'cookie_notice_status' );
delete_site_option( 'cookie_notice_app_analytics' );
delete_site_option( 'cookie_notice_app_blocking' );
delete_site_option( 'cookie_notice_version' );
}
global $wpdb;
// get all available sites
$blogs_ids = $wpdb->get_col( 'SELECT blog_id FROM ' . $wpdb->blogs );
foreach ( $blogs_ids as $blog_id ) {
// change to another site
switch_to_blog( (int) $blog_id );
// run current site deactivation process
$this->deactivate_site( $delete );
restore_current_blog();
}
} else
$this->deactivate_site();
}
/**
* Single site deactivation.
*
* @param bool $force_deletion
* @return void
*/
public function deactivate_site( $force_deletion = false ) {
// delete settings?
if ( $force_deletion || $this->options['general']['deactivation_delete'] ) {
// delete options
delete_option( 'cookie_notice_options' );
delete_option( 'cookie_notice_status' );
delete_option( 'cookie_notice_app_analytics' );
delete_option( 'cookie_notice_app_blocking' );
delete_option( 'cookie_notice_version' );
// delete transients if any
delete_transient( 'cookie_notice_app_token' );
delete_transient( 'cookie_notice_app_quick_config' );
delete_transient( 'cookie_notice_app_subscriptions' );
}
// remove wp super cache cookie
$this->wpsc_delete_cookie();
}
/**
* Update notice.
*
* @return void
*/
public function update_notice() {
if ( ! current_user_can( 'install_plugins' ) )
return;
// bail an ajax
if ( wp_doing_ajax() )
return;
$network = $this->is_network_admin();
$current_update = 9;
// get current database version
if ( $network )
$current_db_version = get_site_option( 'cookie_notice_version', '1.0.0' );
else
$current_db_version = get_option( 'cookie_notice_version', '1.0.0' );
$this->db_version = $current_db_version;
if ( version_compare( $current_db_version, $this->defaults['version'], '<' ) ) {
if ( $this->options['general']['update_version'] < $current_update ) {
// check version, if update version is lower than plugin version, set update notice to true
$this->options['general']['update_version'] = $current_update;
$this->options['general']['update_notice'] = true;
// update options
if ( $network ) {
$this->options['general']['update_notice_diss'] = false;
update_site_option( 'cookie_notice_options', $this->options['general'] );
} else
update_option( 'cookie_notice_options', $this->options['general'] );
}
// update plugin version
if ( $network )
update_site_option( 'cookie_notice_version', $this->defaults['version'] );
else
update_option( 'cookie_notice_version', $this->defaults['version'], false );
}
// check page
$page = isset( $_GET['page'] ) ? sanitize_key( $_GET['page'] ) : '';
// if visiting settings, mark notice as read
if ( $page === 'cookie-notice' && ! empty( $_GET['welcome'] ) ) {
$this->options['general']['update_notice'] = false;
if ( $network ) {
$this->options['general']['update_notice_diss'] = true;
update_site_option( 'cookie_notice_options', $this->options['general'] );
} else
update_option( 'cookie_notice_options', $this->options['general'] );
}
if ( is_multisite() && ( ( $this->is_plugin_network_active() && ! $network && $this->network_options['global_override'] ) || ( $network && ! $this->is_plugin_network_active() ) ) )
$this->options['general']['update_notice'] = false;
// get cookie compliance status
$status = $this->get_status();
// show notice, if no compliance only
if ( $this->options['general']['update_notice'] === true && empty( $status ) ) {
$this->add_notice( '<div class="cn-notice-text"><h2>' . esc_html__( 'Facebook Tracking Pixel Illegal in EU?', 'cookie-notice' ) . '</h2><p>' . esc_html__( 'The Austrian Data Protection Authority recently declared that the use of Facebook\'s tracking pixel directly violates the GDPR. This decision could affect many websites in the European Union. To use Facebook Pixel, prior consent from visitors for tracking is required. Click "Run Compliance Check" to check if your website compliance with the latest privacy regulations.', 'cookie-notice' ) . '</p><p class="cn-notice-actions"><a href="' . esc_url( $network ? network_admin_url( 'admin.php?page=cookie-notice&welcome=1' ) : admin_url( 'admin.php?page=cookie-notice&welcome=1' ) ) . '" class="button button-primary cn-button">' . esc_html__( 'Run Compliance Check', 'cookie-notice' ) . '</a> <a href="#" class="button-link cn-notice-dismiss">' . esc_html__( 'Dismiss Notice', 'cookie-notice' ) . '</a></p></div>', 'error', 'div' );
}
// show threshold limit warning, compliance only
if ( $status === 'active' ) {
// get analytics data options
if ( $network )
$analytics = get_site_option( 'cookie_notice_app_analytics', [] );
else
$analytics = get_option( 'cookie_notice_app_analytics', [] );
if ( is_multisite() && ( ( $network && ! $this->is_plugin_network_active() && ! $this->network_options['global_override'] ) || ( ! $network && $this->is_plugin_network_active() && $this->network_options['global_override'] ) ) )
$allow_notice = false;
else
$allow_notice = true;
if ( ! empty( $analytics ) && $allow_notice ) {
// cycle usage data
$cycle_usage = [
'threshold' => ! empty( $analytics['cycleUsage']->threshold ) ? (int) $analytics['cycleUsage']->threshold : 0,
'visits' => ! empty( $analytics['cycleUsage']->visits ) ? (int) $analytics['cycleUsage']->visits : 0,
'end_date' => ! empty( $analytics['cycleUsage']->endDate ) ? date_create_from_format( '!Y-m-d', $analytics['cycleUsage']->endDate ) : date_create_from_format( 'Y-m-d H:i:s', current_time( 'mysql', true ) ),
'last_updated' => ! empty( $analytics['lastUpdated'] ) ? date_create_from_format( 'Y-m-d H:i:s', $analytics['lastUpdated'] ) : date_create_from_format( 'Y-m-d H:i:s', current_time( 'mysql', true ) )
];
// if threshold in use
if ( $cycle_usage['threshold'] ) {
// if threshold exceeded and there was no notice before
if ( $cycle_usage['visits'] >= $cycle_usage['threshold'] && $cycle_usage['last_updated']->getTimestamp() < $cycle_usage['end_date']->getTimestamp() && $this->options['general']['update_threshold_date'] < $cycle_usage['end_date']->getTimestamp() ) {
$date_format = get_option( 'date_format' );
$upgrade_link = $this->get_url( 'dashboard', '?app-id=' . $this->options['general']['app_id'] . '&open-modal=payment' );
$threshold = $cycle_usage['threshold'];
$cycle_date = date_i18n( $date_format, $cycle_usage['end_date']->getTimestamp() );
$this->add_notice( '<div class="cn-notice-text" data-delay="' . esc_attr( $cycle_usage['end_date']->getTimestamp() ) . '"><h2>' . esc_html__( 'Cookie Compliance Warning', 'cookie-notice') . '</h2><p>' . sprintf( __( 'Your website has reached the <b>%1$s visits usage limit for the Cookie Compliance Free Plan</b>. Compliance services such as Consent Record Storage, Autoblocking, and Consent Analytics have been deactivated until current usage cycle ends on %2$s.', 'cookie-notice' ), $threshold, $cycle_date ) . '<br>' . sprintf( __( 'To reactivate compliance services now, <a href="%s" target="_blank">upgrade your domain to a Pro plan.</a>', 'cookie-notice' ) . '</p></div>', $upgrade_link ), 'cn-threshold error is-dismissible', 'div' );
}
}
}
}
}
/**
* Add admin notice.
*
* @param string $html
* @param string $status
* @param string $container
* @return void
*/
private function add_notice( $html = '', $status = 'error', $container = '' ) {
$this->notices[] = [
'html' => $html,
'status' => $status,
'container' => ( ! empty( $container ) && in_array( $container, [ 'p', 'div' ] ) ? $container : '' )
];
add_action( 'admin_notices', [ $this, 'display_notice' ], 0 );
add_action( 'network_admin_notices', [ $this, 'display_notice' ], 0 );
}
/**
* Print admin notices.
*
* @return void
*/
public function display_notice() {
foreach( $this->notices as $notice ) {
echo '
<div id="cn-admin-notice" class="cn-notice notice notice-info ' . esc_attr( $notice['status'] ) . '">
' . ( ! empty( $notice['container'] ) ? '<' . esc_attr( $notice['container'] ) . ' class="cn-notice-container">' : '' ) . '
' . wp_kses_post( $notice['html'] ) . '
' . ( ! empty( $notice['container'] ) ? '</' . esc_attr( $notice['container'] ) . ' class="cn-notice-container">' : '' ) . '
</div>';
}
}
/**
* Dismiss admin notice.
*
* @return void
*/
public function ajax_dismiss_admin_notice() {
if ( ! current_user_can( 'install_plugins' ) )
return;
if ( wp_verify_nonce( $_POST['nonce'], 'cn_dismiss_notice' ) ) {
// get notice action
$notice_action = ! empty( $_POST['notice_action'] ) ? sanitize_key( $_POST['notice_action'] ) : 'dismiss';
$cn_network = isset( $_POST['cn_network'] ) ? (int) $_POST['cn_network'] : false;
// network?
$network = is_multisite() && $cn_network === 1;
switch ( $notice_action ) {
// threshold notice
case 'threshold':
// set delay period last cycle day
$delay = isset( $_POST['param'] ) ? (int) $_POST['param'] : 0;
$this->options['general']['update_threshold_date'] = $delay + DAY_IN_SECONDS;
// update options
if ( $network )
update_site_option( 'cookie_notice_options', $this->options['general'] );
else
update_option( 'cookie_notice_options', $this->options['general'] );
break;
// delay notice
case 'delay':
// set delay period to 1 week from now
$this->options['general']['update_delay_date'] = time() + 1209600;
// update options
if ( $network )
update_site_option( 'cookie_notice_options', $this->options['general'] );
else
update_option( 'cookie_notice_options', $this->options['general'] );
break;
// hide notice
case 'approve':
default:
$this->options['general']['update_notice'] = false;
$this->options['general']['update_delay_date'] = 0;
// update options
if ( $network ) {
$this->options['general']['update_notice_diss'] = true;
update_site_option( 'cookie_notice_options', $this->options['general'] );
} else
update_option( 'cookie_notice_options', $this->options['general'] );
}
}
exit;
}
/**
* Register shortcode.
*
* @return void
*/
public function register_shortcodes() {
add_shortcode( 'cookies_accepted', [ $this, 'cookies_accepted_shortcode' ] );
add_shortcode( 'cookies_revoke', [ $this, 'cookies_revoke_shortcode' ] );
add_shortcode( 'cookies_policy_link', [ $this, 'cookies_policy_link_shortcode' ] );
}
/**
* Register cookies accepted shortcode.
*
* @param array $args
* @param string $content
* @return string
*/
public function cookies_accepted_shortcode( $args, $content ) {
if ( $this->cookies_accepted() ) {
$scripts = html_entity_decode( trim( wp_kses( $content, $this->get_allowed_html() ) ) );
if ( ! empty( $scripts ) ) {
if ( preg_match_all( '/' . get_shortcode_regex() . '/', $content ) )
$scripts = do_shortcode( $scripts );
return $scripts;
}
}
return '';
}
/**
* Register cookies revoke shortcode.
*
* @param array $args
* @param string $content
* @return string
*/
public function cookies_revoke_shortcode( $args, $content ) {
// get options
$options = $this->options['general'];
// WPML >= 3.2
if ( defined( 'ICL_SITEPRESS_VERSION' ) && version_compare( ICL_SITEPRESS_VERSION, '3.2', '>=' ) )
$options['revoke_text'] = apply_filters( 'wpml_translate_single_string', $options['revoke_text'], 'Cookie Notice', 'Revoke button text' );
// WPML and Polylang compatibility
elseif ( function_exists( 'icl_t' ) )
$options['revoke_text'] = icl_t( 'Cookie Notice', 'Revoke button text', $options['revoke_text'] );
// defaults
$defaults = [
'title' => $options['revoke_text'],
'class' => $options['css_class']
];
// combine shortcode arguments
$args = shortcode_atts( $defaults, $args );
if ( Cookie_Notice()->get_status() === 'active' )
$shortcode = '<a href="#" class="cn-revoke-cookie cn-button-inline cn-revoke-inline' . esc_attr( $args['class'] !== '' ? ' ' . $args['class'] : '' ) . '" title="' . esc_attr( $args['title'] ) . '" data-hu-action="cookies-notice-revoke">' . esc_html( $args['title'] ) . '</a>';
else
$shortcode = '<a href="#" class="cn-revoke-cookie cn-button-inline cn-revoke-inline' . esc_attr( $args['class'] !== '' ? ' ' . $args['class'] : '' ) . '" title="' . esc_attr( $args['title'] ) . '">' . esc_html( $args['title'] ) . '</a>';
return $shortcode;
}
/**
* Register cookies policy link shortcode.
*
* @param array $args
* @param string $content
* @return string
*/
public function cookies_policy_link_shortcode( $args, $content ) {
// get options
$options = $this->options['general'];
// WPML >= 3.2
if ( defined( 'ICL_SITEPRESS_VERSION' ) && version_compare( ICL_SITEPRESS_VERSION, '3.2', '>=' ) ) {
$options['see_more_opt']['text'] = apply_filters( 'wpml_translate_single_string', $options['see_more_opt']['text'], 'Cookie Notice', 'Privacy policy text' );
$options['see_more_opt']['link'] = apply_filters( 'wpml_translate_single_string', $options['see_more_opt']['link'], 'Cookie Notice', 'Custom link' );
// WPML and Polylang compatibility
} elseif ( function_exists( 'icl_t' ) ) {
$options['see_more_opt']['text'] = icl_t( 'Cookie Notice', 'Privacy policy text', $options['see_more_opt']['text'] );
$options['see_more_opt']['link'] = icl_t( 'Cookie Notice', 'Custom link', $options['see_more_opt']['link'] );
}
if ( $options['see_more_opt']['link_type'] === 'page' ) {
// multisite with global override?
if ( is_multisite() && $this->is_plugin_network_active() && $this->network_options['global_override'] ) {
// get main site id
$main_site_id = get_main_site_id();
// switch to main site
switch_to_blog( $main_site_id );
// update page id for current language if needed
if ( function_exists( 'icl_object_id' ) )
$options['see_more_opt']['id'] = icl_object_id( $options['see_more_opt']['id'], 'page', true );
// get main site privacy policy link
$permalink = get_permalink( $options['see_more_opt']['id'] );
// restore current site
restore_current_blog();
} else {
// update page id for current language if needed
if ( function_exists( 'icl_object_id' ) )
$options['see_more_opt']['id'] = icl_object_id( $options['see_more_opt']['id'], 'page', true );
// get privacy policy link
$permalink = get_permalink( $options['see_more_opt']['id'] );
}
}
// defaults
$defaults = [
'title' => $options['see_more_opt']['text'] !== '' ? $options['see_more_opt']['text'] : '➜',
'link' => $options['see_more_opt']['link_type'] === 'custom' ? $options['see_more_opt']['link'] : $permalink,
'class' => $options['css_class']
];
// combine shortcode arguments
$args = shortcode_atts( $defaults, $args );
$shortcode = '<a href="' . esc_url( $args['link'] ) . '" target="' . esc_attr( $options['link_target'] ) . '" id="cn-more-info" class="cn-privacy-policy-link cn-link' . esc_attr( $args['class'] !== '' ? ' ' . $args['class'] : '' ) . '">' . esc_html( $args['title'] ) . '</a>';
return $shortcode;
}
/**
* Check if cookies are accepted.
*
* @return bool
*/
public static function cookies_accepted() {
if ( Cookie_Notice()->get_status() === 'active' ) {
// get cookie
$cookies = isset( $_COOKIE['hu-consent'] ) ? json_decode( stripslashes( $_COOKIE['hu-consent'] ), true ) : [];
// valid cookie?
if ( json_last_error() === JSON_ERROR_NONE && ! empty( $cookies ) && is_array( $cookies ) && isset( $cookies['consent'] ) )
$result = (bool) $cookies['consent'];
else
$result = false;
} else
$result = isset( $_COOKIE['cookie_notice_accepted'] ) && $_COOKIE['cookie_notice_accepted'] === 'true';
return (bool) apply_filters( 'cn_is_cookie_accepted', $result );
}
/**
* Check if cookies are set.
*
* @return bool
*/
public static function cookies_set() {
if ( Cookie_Notice()->get_status() === 'active' )
$result = isset( $_COOKIE['hu-consent'] );
else
$result = isset( $_COOKIE['cookie_notice_accepted'] );
return (bool) apply_filters( 'cn_is_cookie_set', $result );
}
/**
* Add WP Super Cache cookie.
*
* @return void
*/
public function wpsc_add_cookie() {
if ( Cookie_Notice()->get_status() === 'active' )
do_action( 'wpsc_add_cookie', 'hu-consent' );
else
do_action( 'wpsc_add_cookie', 'cookie_notice_accepted' );
}
/**
* Delete WP Super Cache cookie.
*
* @return void
*/
public function wpsc_delete_cookie() {
if ( Cookie_Notice()->get_status() === 'active' )
do_action( 'wpsc_delete_cookie', 'hu-consent' );
else
do_action( 'wpsc_delete_cookie', 'cookie_notice_accepted' );
}
/**
* Enqueue admin scripts and styles.
*
* @param string $page
* @return void
*/
public function admin_enqueue_scripts( $page ) {
// plugins page?
if ( $page === 'plugins.php' ) {
add_thickbox();
wp_enqueue_script( 'cookie-notice-admin-plugins', COOKIE_NOTICE_URL . '/js/admin-plugins.js', [ 'jquery' ], $this->defaults['version'] );
wp_enqueue_style( 'cookie-notice-admin-plugins', COOKIE_NOTICE_URL . '/css/admin-plugins.css', [], $this->defaults['version'] );
// prepare script data
$script_data = [
'deactivate' => esc_html__( 'Cookie Notice & Compliance - Deactivation survey', 'cookie-notice' ),
'nonce' => wp_create_nonce( 'cn-deactivate-plugin' )
];
wp_add_inline_script( 'cookie-notice-admin-plugins', 'var cnArgsPlugins = ' . wp_json_encode( $script_data ) . ";\n", 'before' );
}
// notice js and css
wp_enqueue_script( 'cookie-notice-admin-notice', COOKIE_NOTICE_URL . '/js/admin-notice.js', [ 'jquery' ], Cookie_Notice()->defaults['version'] );
// prepare script data
$script_data = [
'ajaxURL' => admin_url( 'admin-ajax.php' ),
'nonce' => wp_create_nonce( 'cn_dismiss_notice' ),
'network' => $this->is_network_admin()
];
wp_add_inline_script( 'cookie-notice-admin-notice', 'var cnArgsNotice = ' . wp_json_encode( $script_data ) . ";\n", 'before' );
wp_enqueue_style( 'cookie-notice-admin-notice', COOKIE_NOTICE_URL . '/css/admin-notice.css', [], Cookie_Notice()->defaults['version'] );
}
/**
* Set plugin links.
*
* @return void
*/
public function set_plugin_links() {
// filters
add_filter( 'plugin_action_links', [ $this, 'plugin_action_links' ], 10, 2 );
add_filter( 'network_admin_plugin_action_links', [ $this, 'plugin_action_links' ], 10, 2 );
}
/**
* Add links to settings page.
*
* @param array $links
* @param string $file
* @return array
*/
public function plugin_action_links( $links, $file ) {
if ( ! current_user_can( apply_filters( 'cn_manage_cookie_notice_cap', 'manage_options' ) ) )
return $links;
if ( $file === COOKIE_NOTICE_BASENAME ) {
if ( ! empty( $links['deactivate'] ) ) {
// link already contains class attribute?
if ( preg_match( '/<a.*?class=(\'|")(.*?)(\'|").*?>/is', $links['deactivate'], $result ) === 1 )
$links['deactivate'] = preg_replace( '/(<a.*?class=(?:\'|").*?)((?:\'|").*?>)/s', '$1 cn-deactivate-plugin-modal$2', $links['deactivate'] );
else
$links['deactivate'] = preg_replace( '/(<a.*?)>/s', '$1 class="cn-deactivate-plugin-modal">', $links['deactivate'] );
// link already contains href attribute?
if ( preg_match( '/<a.*?href=(\'|")(.*?)(\'|").*?>/is', $links['deactivate'], $result ) === 1 ) {
if ( ! empty( $result[2] ) )
$this->deactivaion_url = $result[2];
}
}
// skip settings link if plugin is activated from main site
if ( ! ( $this->is_network_admin() && ! $this->is_plugin_network_active() ) ) {
$url = $this->is_network_admin() ? network_admin_url( 'admin.php?page=cookie-notice' ) : admin_url( 'admin.php?page=cookie-notice' );
// put settings link at start
array_unshift( $links, sprintf( '<a href="%s">%s</a>', esc_url( $url ), esc_html__( 'Settings', 'cookie-notice' ) ) );
}
// get cookie compliance status
$status = $this->get_status();
if ( is_multisite() ) {
$check_status = empty( $status ) && ( ( $this->is_network_admin() && $this->is_plugin_network_active() && $this->network_options['global_override'] ) || ( ! $this->is_network_admin() && ( ( $this->is_plugin_network_active() && ! $this->network_options['global_override'] ) || ! $this->is_plugin_network_active() ) ) );
} else
$check_status = empty( $status );
// add upgrade link
if ( $check_status ) {
$url = $this->is_network_admin() ? network_admin_url( 'admin.php?page=cookie-notice&welcome=1' ) : admin_url( 'admin.php?page=cookie-notice&welcome=1' );
$links[] = sprintf( '<a href="%s" style="color: #20C19E; font-weight: bold">%s</a>', esc_url( $url ), esc_html__( 'Free Upgrade', 'cookie-notice' ) );
}
}
return $links;
}
/**
* Deactivation modal HTML template.
*
* @global string $pagenow
*
* @return void
*/
public function deactivate_plugin_template() {
global $pagenow;
// display only for plugins page
if ( $pagenow !== 'plugins.php' )
return;
echo '
<div id="cn-deactivation-modal" style="display: none">
<div id="cn-deactivation-container">
<div id="cn-deactivation-body">
<div class="cn-deactivation-options">
<p><em>' . esc_html__( "We're sorry to see you go. Could you please tell us what happened?", 'cookie-notice' ) . '</em></p>
<ul>';
foreach ( [
'1' => esc_html__( "I couldn't figure out how to make it work.", 'cookie-notice' ),
'2' => esc_html__( 'I found another plugin to use for the same task.', 'cookie-notice' ),
'3' => esc_html__( 'The Cookie Compliance banner is too big.', 'cookie-notice' ),
'4' => esc_html__( 'The Cookie Compliance consent choices (Silver, Gold, Platinum) are confusing.', 'cookie-notice' ),
'5' => esc_html__( 'The Cookie Compliance default settings are too strict.', 'cookie-notice' ),
'6' => esc_html__( 'The web application user interface is not clear to me.', 'cookie-notice' ),
'7' => esc_html__( "Support isn't timely.", 'cookie-notice' ),
'8' => esc_html__( 'Other', 'cookie-notice' )
] as $option => $text ) {
echo '
<li><label><input type="radio" name="cn_deactivation_option" value="' . esc_attr( $option ) . '" ' . checked( '8', $option, false ) . ' />' . esc_html( $text ) . '</label></li>';
}
echo '
</ul>
</div>
<div class="cn-deactivation-textarea">
<textarea name="cn_deactivation_other"></textarea>
</div>
</div>
<div id="cn-deactivation-footer">
<a href="" class="button cn-deactivate-plugin-cancel">' . esc_html__( 'Cancel', 'cookie-notice' ) . '</a>
<a href="' . esc_url( $this->deactivaion_url ) . '" class="button button-secondary cn-deactivate-plugin-simple">' . esc_html__( 'Deactivate', 'cookie-notice' ) . '</a>
<a href="' . esc_url( $this->deactivaion_url ) . '" class="button button-primary right cn-deactivate-plugin-data">' . esc_html__( 'Deactivate & Submit', 'cookie-notice' ) . '</a>
<span class="spinner"></span>
</div>
</div>
</div>';
}
/**
* Send data about deactivation of the plugin.
*
* @return void
*/
public function deactivate_plugin() {
// check permissions
if ( ! current_user_can( 'install_plugins' ) || wp_verify_nonce( $_POST['nonce'], 'cn-deactivate-plugin' ) === false )
return;
if ( isset( $_POST['option_id'] ) ) {
$option_id = (int) $_POST['option_id'];
// avoid fake submissions
if ( $option_id === 8 ) {
$other = isset( $_POST['other'] ) ? sanitize_textarea_field( $_POST['other'] ) : '';
// no reason?
if ( $other === '' )
wp_send_json_success();
}
wp_remote_post(
'https://hu-manity.co/wp-json/api/v1/forms/',
[
'timeout' => 15,
'blocking' => true,
'headers' => [],
'body' => [
'id' => 1,
'option' => $option_id,
'other' => $other,
'referrer' => get_site_url()
]
]
);
wp_send_json_success();
}
wp_send_json_error();
}
/**
* Get allowed script blocking HTML.
*
* @return array
*/
public function get_allowed_html() {
return apply_filters(
'cn_refuse_code_allowed_html',
array_merge(
wp_kses_allowed_html( 'post' ),
[
'script' => [
'type' => true,
'src' => true,
'charset' => true,
'async' => true
],
'noscript' => [],
'style' => [
'type' => true
],
'iframe' => [
'src' => true,
'height' => true,
'width' => true,
'frameborder' => true,
'allowfullscreen' => true
]
]
)
);
}
/**
* Merge multidimensional associative arrays.
* Works only with strings, integers and arrays as keys. Values can be any type but they have to have same type to be kept in the final array.
* Every array should have the same type of elements. Only keys from $defaults array will be kept in the final array unless $siblings are not empty.
* $siblings examples: array( '=>', 'only_first_level', 'first_level=>second_level', 'first_key=>next_key=>sibling' ) and so on.
* Single '=>' means that all siblings of the highest level will be kept in the final array.
*
* @param array $defaults Array with defaults values
* @param array $array Array to merge
* @param bool|array $siblings Whether to allow "string" siblings to copy from $array if they do not exist in $defaults, false otherwise
* @return array
*/
public function multi_array_merge( $defaults, $array, $siblings = false ) {
// make a copy for better performance and to prevent $default override in foreach
$copy = $defaults;
// prepare siblings for recursive deeper level
$new_siblings = [];
// allow siblings?
if ( ! empty( $siblings ) && is_array( $siblings ) ) {
foreach ( $siblings as $sibling ) {
// highest level siblings
if ( $sibling === '=>' ) {
// copy all non-existent string siblings
foreach( $array as $key => $value ) {
if ( is_string( $key ) && ! array_key_exists( $key, $defaults ) ) {
$defaults[$key] = null;
}
}
// sublevel siblings
} else {
// explode siblings
$ex = explode( '=>', $sibling );
// copy all non-existent siblings
foreach ( array_keys( $array[$ex[0]] ) as $key ) {
if ( ! array_key_exists( $key, $defaults[$ex[0]] ) )
$defaults[$ex[0]][$key] = null;
}
// more than one sibling child?
if ( count( $ex ) > 1 )
$new_siblings[$ex[0]] = [ substr_replace( $sibling, '', 0, strlen( $ex[0] . '=>' ) ) ];
// no more sibling children
else
$new_siblings[$ex[0]] = false;
}
}
}
// loop through first array
foreach ( $defaults as $key => $value ) {
// integer key?
if ( is_int( $key ) ) {
$copy = array_unique( array_merge( $defaults, $array ), SORT_REGULAR );
break;
// string key?
} elseif ( is_string( $key ) && isset( $array[$key] ) ) {
// string, boolean, integer or null values?
if ( ( is_string( $value ) && is_string( $array[$key] ) ) || ( is_bool( $value ) && is_bool( $array[$key] ) ) || ( is_int( $value ) && is_int( $array[$key] ) ) || is_null( $value ) )
$copy[$key] = $array[$key];
// arrays
elseif ( is_array( $value ) && isset( $array[$key] ) && is_array( $array[$key] ) ) {
if ( empty( $value ) )
$copy[$key] = $array[$key];
else
$copy[$key] = $this->multi_array_merge( $defaults[$key], $array[$key], ( isset( $new_siblings[$key] ) ? $new_siblings[$key] : false ) );
}
}
}
return $copy;
}
/**
* Indicate if current page is the Cookie Policy page.
*
* @return bool
*/
public function is_cookie_policy_page() {
// get privacy policy options
$see_more = $this->options['general']['see_more_opt'];
// custom link?
if ( $see_more['link_type'] !== 'page' )
return false;
// get current object
$current_page = sanitize_post( $GLOBALS['wp_the_query']->get_queried_object() );
// check if current page is privacy policy page
return $current_page->post_name === get_post_field( 'post_name', $see_more['id'] );
}
}
/**
* Initialize Cookie Notice.
*
* @return object
*/
function Cookie_Notice() {
static $instance;
// first call to instance() initializes the plugin
if ( $instance === null || ! ( $instance instanceof Cookie_Notice ) )
$instance = Cookie_Notice::instance();
return $instance;
}
Cookie_Notice();