settings.php
97.8 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
1738
1739
1740
1741
1742
1743
1744
1745
1746
1747
1748
1749
1750
1751
1752
1753
1754
1755
1756
1757
1758
1759
1760
1761
1762
1763
1764
1765
1766
1767
1768
1769
1770
1771
1772
1773
1774
1775
1776
1777
1778
1779
1780
1781
1782
1783
1784
1785
1786
1787
1788
1789
1790
1791
1792
1793
1794
1795
1796
1797
1798
1799
1800
1801
1802
1803
1804
1805
1806
1807
1808
1809
1810
1811
1812
1813
1814
1815
1816
1817
1818
1819
1820
1821
1822
1823
1824
1825
1826
1827
1828
1829
1830
1831
1832
1833
1834
1835
1836
1837
1838
1839
1840
1841
1842
1843
1844
1845
1846
1847
1848
1849
1850
1851
1852
1853
1854
1855
1856
1857
1858
1859
1860
1861
1862
1863
1864
1865
1866
1867
1868
1869
1870
1871
1872
1873
1874
1875
1876
1877
1878
1879
1880
1881
1882
1883
1884
1885
1886
1887
1888
1889
1890
1891
1892
1893
1894
1895
1896
1897
1898
1899
1900
1901
1902
1903
1904
1905
1906
1907
1908
1909
1910
1911
1912
1913
1914
1915
1916
1917
1918
1919
1920
1921
1922
1923
1924
1925
1926
1927
1928
1929
1930
1931
1932
1933
1934
1935
1936
1937
1938
1939
1940
1941
1942
1943
1944
1945
1946
1947
1948
1949
1950
1951
1952
1953
1954
1955
1956
1957
1958
1959
1960
1961
1962
1963
1964
1965
1966
1967
1968
1969
1970
1971
1972
1973
1974
1975
1976
1977
1978
1979
1980
1981
1982
1983
1984
1985
1986
1987
1988
1989
1990
1991
1992
1993
1994
1995
1996
1997
1998
1999
2000
2001
2002
2003
2004
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
2025
2026
2027
2028
2029
2030
2031
2032
2033
2034
2035
2036
2037
2038
2039
2040
2041
2042
2043
2044
2045
2046
2047
2048
2049
2050
2051
2052
2053
2054
2055
2056
2057
2058
2059
2060
2061
2062
2063
2064
2065
2066
2067
2068
2069
2070
2071
2072
2073
2074
2075
2076
2077
2078
2079
2080
2081
2082
2083
2084
2085
2086
2087
2088
2089
2090
2091
2092
2093
2094
2095
2096
2097
2098
2099
2100
2101
2102
2103
2104
2105
2106
2107
2108
2109
2110
2111
2112
2113
2114
2115
2116
2117
2118
2119
2120
2121
2122
2123
2124
2125
2126
2127
2128
2129
2130
2131
2132
2133
2134
2135
2136
2137
2138
2139
2140
2141
2142
2143
2144
2145
2146
2147
2148
2149
2150
2151
2152
2153
2154
2155
2156
2157
2158
2159
2160
2161
2162
2163
2164
2165
2166
2167
2168
2169
2170
2171
2172
2173
2174
2175
2176
2177
2178
2179
2180
2181
2182
2183
2184
2185
2186
2187
2188
2189
2190
2191
2192
2193
2194
2195
2196
2197
2198
2199
2200
2201
2202
2203
2204
2205
2206
2207
2208
2209
2210
2211
2212
2213
2214
2215
2216
2217
2218
2219
2220
2221
2222
2223
2224
2225
2226
2227
2228
2229
2230
2231
2232
2233
2234
2235
2236
2237
2238
2239
2240
2241
2242
2243
2244
2245
2246
2247
2248
2249
2250
2251
2252
2253
2254
2255
2256
2257
2258
2259
2260
2261
2262
2263
2264
2265
2266
2267
2268
2269
2270
2271
2272
2273
2274
2275
2276
2277
2278
2279
2280
2281
2282
2283
2284
2285
2286
2287
2288
2289
2290
2291
2292
2293
2294
2295
2296
2297
<?php
// exit if accessed directly
if ( ! defined( 'ABSPATH' ) )
exit;
/**
* Cookie_Notice_Settings class.
*
* @class Cookie_Notice_Settings
*/
class Cookie_Notice_Settings {
public $parameters = [];
public $operators = [];
public $conditional_display_types = [];
public $positions = [];
public $styles = [];
public $revoke_opts = [];
public $links = [];
public $link_targets = [];
public $link_positions = [];
public $colors = [];
public $times = [];
public $effects = [];
public $script_placements = [];
public $level_names = [];
public $text_strings = [];
private $analytics_app_data = [];
/**
* Class constructor.
*
* @return void
*/
public function __construct() {
// actions
add_action( 'admin_menu', [ $this, 'admin_menu_options' ] );
add_action( 'network_admin_menu', [ $this, 'admin_menu_options' ] );
add_action( 'after_setup_theme', [ $this, 'load_defaults' ] );
add_action( 'admin_init', [ $this, 'load_modules' ] );
add_action( 'admin_init', [ $this, 'validate_network_options' ], 9 );
add_action( 'admin_init', [ $this, 'register_settings' ] );
add_action( 'admin_enqueue_scripts', [ $this, 'admin_enqueue_scripts' ] );
add_action( 'admin_print_styles', [ $this, 'admin_print_styles' ] );
add_action( 'wp_ajax_cn_purge_cache', [ $this, 'ajax_purge_cache' ] );
add_action( 'wp_ajax_cn-get-group-rules-values', [ $this, 'get_group_rule_values' ] );
add_action( 'admin_notices', [ $this, 'settings_errors' ] );
add_action( 'network_admin_notices', [ $this, 'settings_errors' ] );
}
/**
* Load additional modules.
*
* @return void
*/
public function load_modules() {
if ( Cookie_Notice()->options['general']['caching_compatibility'] ) {
// wp fastest cache
if ( cn_is_plugin_active( 'wpfastestcache' ) )
include_once( COOKIE_NOTICE_PATH . 'includes/modules/wp-fastest-cache/wp-fastest-cache.php' );
}
}
/**
* Load plugin defaults.
*
* @return void
*/
public function load_defaults() {
$this->parameters = [
'page_type' => __( 'Page Type', 'cookie-notice' ),
'page' => __( 'Page', 'cookie-notice' ),
'post_type' => __( 'Post Type', 'cookie-notice' ),
'post_type_archive' => __( 'Post Type Archive', 'cookie-notice' ),
'user_type' => __( 'User Type', 'cookie-notice' )
];
$this->operators = [
'equal' => __( 'is equal to', 'cookie-notice' ),
'not_equal' => __( 'is not equal to', 'cookie-notice' )
];
$this->conditional_display_types = [
'hide' => __( 'Hide the banner', 'cookie-notice' ),
'show' => __( 'Show the banner', 'cookie-notice' )
];
$this->positions = [
'top' => __( 'Top', 'cookie-notice' ),
'bottom' => __( 'Bottom', 'cookie-notice' )
];
$this->styles = [
'none' => __( 'None', 'cookie-notice' ),
'wp-default' => __( 'Light', 'cookie-notice' ),
'bootstrap' => __( 'Dark', 'cookie-notice' )
];
$this->revoke_opts = [
'automatic' => __( 'Automatic', 'cookie-notice' ),
'manual' => __( 'Manual', 'cookie-notice' )
];
$this->links = [
'page' => __( 'Page link', 'cookie-notice' ),
'custom' => __( 'Custom link', 'cookie-notice' )
];
$this->link_targets = [ '_blank', '_self' ];
$this->link_positions = [
'banner' => __( 'Banner', 'cookie-notice' ),
'message' => __( 'Message', 'cookie-notice' )
];
$this->colors = [
'text' => __( 'Text color', 'cookie-notice' ),
'button' => __( 'Button color', 'cookie-notice' ),
'bar' => __( 'Bar color', 'cookie-notice' )
];
$this->times = apply_filters(
'cn_cookie_expiry',
[
'hour' => [ __( 'An hour', 'cookie-notice' ), 3600 ],
'day' => [ __( '1 day', 'cookie-notice' ), 86400 ],
'week' => [ __( '1 week', 'cookie-notice' ), 604800 ],
'month' => [ __( '1 month', 'cookie-notice' ), 2592000 ],
'3months' => [ __( '3 months', 'cookie-notice' ), 7862400 ],
'6months' => [ __( '6 months', 'cookie-notice' ), 15811200 ],
'year' => [ __( '1 year', 'cookie-notice' ), 31536000 ],
'infinity' => [ __( 'infinity', 'cookie-notice' ), 2147483647 ]
]
);
$this->effects = [
'none' => __( 'None', 'cookie-notice' ),
'fade' => __( 'Fade', 'cookie-notice' ),
'slide' => __( 'Slide', 'cookie-notice' )
];
$this->script_placements = [
'header' => __( 'Header', 'cookie-notice' ),
'footer' => __( 'Footer', 'cookie-notice' )
];
$this->level_names = [
1 => [
1 => __( 'Silver', 'cookie-notice' ),
2 => __( 'Gold', 'cookie-notice' ),
3 => __( 'Platinum', 'cookie-notice' )
],
2 => [
1 => __( 'Private', 'cookie-notice' ),
2 => __( 'Balanced', 'cookie-notice' ),
3 => __( 'Personalized', 'cookie-notice' )
],
3 => [
1 => __( 'Reject All', 'cookie-notice' ),
2 => __( 'Accept Some', 'cookie-notice' ),
3 => __( 'Accept All', 'cookie-notice' )
]
];
$this->text_strings = [
'saveBtnText' => __( 'Save my preferences', 'cookie-notice' ),
'privacyBtnText' => __( 'Privacy policy', 'cookie-notice' ),
'dontSellBtnText' => __( 'Do Not Sell', 'cookie-notice' ),
'customizeBtnText' => __( 'Preferences', 'cookie-notice' ),
'headingText' => __( "We believe your data is your property and support your right to privacy and transparency.", 'cookie-notice' ),
'bodyText' => __( "Select a Data Access Level and Duration to choose how we use and share your data.", 'cookie-notice' ),
'levelBodyText_1' => __( 'Highest level of privacy. Data accessed for necessary site operations only. Data shared with 3rd parties to ensure the site is secure and works on your device.', 'cookie-notice' ),
'levelBodyText_2' => __( 'Balanced experience. Data accessed for content personalisation and site optimisation. Data shared with 3rd parties may be used to track and store your preferences for this site.', 'cookie-notice' ),
'levelBodyText_3' => __( 'Highest level of personalisation. Data accessed to make ads and media more relevant. Data shared with 3rd parties may be use to track you on this site and other sites you visit.', 'cookie-notice' ),
'levelNameText_1' => $this->level_names[1][1],
'levelNameText_2' => $this->level_names[1][2],
'levelNameText_3' => $this->level_names[1][3],
'monthText' => __( 'month', 'cookie-notice' ),
'monthsText' => __( 'months', 'cookie-notice' )
];
// get main instance
$cn = Cookie_Notice();
// set default text strings
$cn->defaults['general']['message_text'] = __( 'We use cookies to ensure that we give you the best experience on our website. If you continue to use this site we will assume that you are happy with it.', 'cookie-notice' );
$cn->defaults['general']['accept_text'] = __( 'Ok', 'cookie-notice' );
$cn->defaults['general']['refuse_text'] = __( 'No', 'cookie-notice' );
$cn->defaults['general']['revoke_message_text'] = __( 'You can revoke your consent any time using the Revoke consent button.', 'cookie-notice' );
$cn->defaults['general']['revoke_text'] = __( 'Revoke consent', 'cookie-notice' );
$cn->defaults['general']['see_more_opt']['text'] = __( 'Privacy policy', 'cookie-notice' );
// set translation strings on plugin activation
if ( $cn->options['general']['translate'] === true ) {
$cn->options['general']['translate'] = false;
$cn->options['general']['message_text'] = $cn->defaults['general']['message_text'];
$cn->options['general']['accept_text'] = $cn->defaults['general']['accept_text'];
$cn->options['general']['refuse_text'] = $cn->defaults['general']['refuse_text'];
$cn->options['general']['revoke_message_text'] = $cn->defaults['general']['revoke_message_text'];
$cn->options['general']['revoke_text'] = $cn->defaults['general']['revoke_text'];
$cn->options['general']['see_more_opt']['text'] = $cn->defaults['general']['see_more_opt']['text'];
if ( $cn->is_network_admin() )
update_site_option( 'cookie_notice_options', $cn->options['general'] );
else
update_option( 'cookie_notice_options', $cn->options['general'] );
}
// WPML >= 3.2
if ( defined( 'ICL_SITEPRESS_VERSION' ) && version_compare( ICL_SITEPRESS_VERSION, '3.2', '>=' ) ) {
$this->register_wpml_strings();
// WPML and Polylang compatibility
} elseif ( function_exists( 'icl_register_string' ) ) {
icl_register_string( 'Cookie Notice', 'Message in the notice', $cn->options['general']['message_text'] );
icl_register_string( 'Cookie Notice', 'Button text', $cn->options['general']['accept_text'] );
icl_register_string( 'Cookie Notice', 'Refuse button text', $cn->options['general']['refuse_text'] );
icl_register_string( 'Cookie Notice', 'Revoke message text', $cn->options['general']['revoke_message_text'] );
icl_register_string( 'Cookie Notice', 'Revoke button text', $cn->options['general']['revoke_text'] );
icl_register_string( 'Cookie Notice', 'Privacy policy text', $cn->options['general']['see_more_opt']['text'] );
icl_register_string( 'Cookie Notice', 'Custom link', $cn->options['general']['see_more_opt']['link'] );
}
}
/**
* Add submenu.
*
* @return void
*/
public function admin_menu_options() {
if ( current_action() === 'network_admin_menu' && ! Cookie_Notice()->is_plugin_network_active() )
return;
add_menu_page( __( 'Cookie Notice', 'cookie-notice' ), __( 'Cookies', 'cookie-notice' ), apply_filters( 'cn_manage_cookie_notice_cap', 'manage_options' ), 'cookie-notice', [ $this, 'options_page' ], 'none', '99.300' );
add_submenu_page( 'cookie-notice', __( 'Cookie Notice - Settings', 'cookie-notice' ), __( 'Settings', 'cookie-notice' ), apply_filters( 'cn_manage_cookie_notice_cap', 'manage_options' ), 'cookie-notice', [ $this, 'options_page' ] );
add_submenu_page( 'cookie-notice', __( 'Cookie Notice - Consent Logs', 'cookie-notice' ), __( 'Consent Logs', 'cookie-notice' ), apply_filters( 'cn_manage_cookie_notice_cap', 'manage_options' ), 'cookie-notice&tab=consent-logs', [ $this, 'options_page' ] );
// highlight submenus
add_filter( 'submenu_file', [ $this, 'submenu_file' ], 10, 2 );
}
/**
* Highlight submenu items.
*
* @param string|null $submenu_file
* @param string $parent_file
* @return string|null
*/
public function submenu_file( $submenu_file, $parent_file ) {
if ( $parent_file === 'cookie-notice' ) {
$tab = isset( $_GET['tab'] ) ? sanitize_key( $_GET['tab'] ) : 'settings';
if ( $tab !== 'settings' )
return 'cookie-notice&tab=' . $tab;
}
return $submenu_file;
}
/**
* Options page output.
*
* @return void
*/
public function options_page() {
// get main instance
$cn = Cookie_Notice();
// get cookie compliance status
$status = $cn->get_status();
echo '
<div class="wrap">
<h2>' . esc_html__( 'Cookie Notice & Compliance for GDPR/CCPA', 'cookie-notice' ) . '</h2>';
// set tabs
$tabs = [
'settings' => __( 'Settings', 'cookie-notice' ),
'consent-logs' => __( 'Consent Logs', 'cookie-notice' )
];
// reset tabs
reset( $tabs );
// get first default tab
$first_tab = key( $tabs );
// sanitize current tab
$tab = isset( $_GET['tab'] ) ? sanitize_key( $_GET['tab'] ) : $first_tab;
// get current tab
$tab = ! empty( $tab ) && array_key_exists( $tab, $tabs ) ? $tab : $first_tab;
echo '
<h2 class="nav-tab-wrapper cn-nav-tab-wrapper">';
foreach ( $tabs as $key => $label ) {
if ( $cn->is_network_admin() )
$tab_url = network_admin_url( 'admin.php?page=cookie-notice&tab=' . $key );
else
$tab_url = admin_url( 'admin.php?page=cookie-notice&tab=' . $key );
echo '
<a class="nav-tab' . ( $tab === $key ? ' nav-tab-active' : '' ) . '" href="' . esc_url( $tab_url ) . '">' . esc_html( $label ) . '</a>';
}
echo '
</h2>';
if ( $tab === 'consent-logs' ) {
echo '
<div class="cookie-notice-settings">';
$this->display_options_sidebar();
echo '
<form action="#">
<div class="cn-options">';
do_settings_sections( 'cookie_notice_consent_logs' );
if ( $cn->is_network_admin() )
$allow_consent_logs = true;
elseif ( $cn->is_plugin_network_active() && $cn->network_options['global_override'] )
$allow_consent_logs = false;
else
$allow_consent_logs = true;
if ( $allow_consent_logs ) {
if ( $status === 'active' ) {
// include wp list table class if needed
if ( ! class_exists( 'WP_List_Table' ) )
include_once( ABSPATH . 'wp-admin/includes/class-wp-list-table.php' );
// include consent logs list table
include_once( COOKIE_NOTICE_PATH . '/includes/consent-logs-list-table.php' );
// initialize list table
$list_table = new Cookie_Notice_Consent_Logs_List_Table();
$list_table->views();
$list_table->prepare_items();
$list_table->display();
} else {
if ( $cn->is_network_admin() )
$upgrade_url = network_admin_url( 'admin.php?page=cookie-notice&welcome=1' );
else
$upgrade_url = admin_url( 'admin.php?page=cookie-notice&welcome=1' );
echo '
<div id="cn-consent-logs-disabled">
<img id="cn-consent-logs-bg" src="' . esc_url( COOKIE_NOTICE_URL ) . '/img/consent-logs.png" alt="Consent Logs" />
<div id="cn-consent-logs-upgrade">
<div id="cn-consent-logs-modal">
<h2>' . esc_html__( 'Record and view Consent Log entries inside WordPress', 'cookie-notice' ) . '</h2>
<p>' . esc_html__( 'Automatically store a record of each consent.', 'cookie-notice' ) . '</p>
<p>' . esc_html__( 'Monitor consent activity directly in your WordPress dashboard.', 'cookie-notice' ) . '</p>
<p><a href="' . esc_url( $upgrade_url ) . '" class="button button-primary button-hero cn-button">' . esc_html__( 'Upgrade to Cookie Compliance', 'cookie-notice' ) . '</a></p>
</div>
</div>
</div>';
}
}
echo '
</div>
</form>
</div>';
} elseif ( $tab === 'settings' ) {
echo '
<div class="cookie-notice-settings">';
$this->display_options_sidebar();
// multisite?
if ( is_multisite() ) {
// network admin?
if ( $cn->is_network_admin() ) {
$form_class = ( $cn->is_plugin_network_active() && ! $cn->options['general']['global_override'] ? 'cn-options-disabled' : '' );
$form_page = 'admin.php?page=cookie-notice';
$hidden_input = '<input type="hidden" name="cn-network-settings" value="true" />';
// single network site
} else {
$form_class = ( $cn->is_plugin_network_active() && $cn->network_options['global_override'] ? 'cn-options-disabled cn-options-submit-disabled' : '' );
$form_page = 'options.php';
$hidden_input = '';
}
// single site
} else {
$form_class = '';
$form_page = 'options.php';
$hidden_input = '';
}
echo '
<form action="' . esc_attr( $form_page ) . '" method="post"' . ( $form_class !== '' ? ' class="' . esc_attr( $form_class ) . '"' : '' ) . '>';
settings_fields( 'cookie_notice_options' );
if ( $hidden_input !== '' ) {
$allowed_html = [
'input' => [
'type' => true,
'name' => true,
'value' => true
]
];
echo wp_kses( $hidden_input, $allowed_html );
}
echo '
<div class="cn-options">';
do_settings_sections( 'cookie_notice_options' );
echo ' </div>
<p class="submit">';
submit_button( '', 'primary', 'save_cookie_notice_options', false );
echo ' ';
submit_button( esc_html__( 'Reset to defaults', 'cookie-notice' ), 'secondary', 'reset_cookie_notice_options', false );
echo '
</p>
</form>
</div>
<div class="clear"></div>
</div>';
}
}
/**
* Display options sidebar HTML.
*
* @return void
*/
public function display_options_sidebar() {
// get main instance
$cn = Cookie_Notice();
// get cookie compliance status
$status = $cn->get_status();
// get subscription
$subscription = $cn->get_subscription();
echo '
<div class="cookie-notice-sidebar">
<div class="cookie-notice-credits">
<div class="inside">
<div class="inner">';
// compliance enabled
if ( $status === 'active' ) {
echo '
<div class="cn-pricing-info">
<div class="cn-pricing-head">
<p>' . esc_html__( 'Your Cookie Compliance plan:', 'cookie-notice' ) . '</p>
<h2>' . esc_html( $subscription === 'pro' ? __( 'Professional', 'cookie-notice' ) : __( 'Basic', 'cookie-notice' ) ) . '</h2>
</div>
<div class="cn-pricing-body">
<p class="cn-active"><span class="cn-icon"></span>' . esc_html__( 'GDPR, CCPA, LGPD, PECR requirements', 'cookie-notice' ) . '</p>
<p class="cn-active"><span class="cn-icon"></span>' . esc_html__( 'Consent Analytics Dashboard', 'cookie-notice' ) . '</p>
<p class="' . ( $subscription === 'pro' ? 'cn-active' : 'cn-inactive' ) . '"><span class="cn-icon"></span>' . sprintf( esc_html__( '%sUnlimited%s visits', 'cookie-notice' ), '<b>', '</b>' ) . '</p>
<p class="' . ( $subscription === 'pro' ? 'cn-active' : 'cn-inactive' ) . '"><span class="cn-icon"></span>' . sprintf( esc_html__( '%sLifetime%s consent storage', 'cookie-notice' ), '<b>', '</b>' ) . '</p>
<p class="' . ( $subscription === 'pro' ? 'cn-active' : 'cn-inactive' ) . '"><span class="cn-icon"></span>' . sprintf( esc_html__( '%sGoogle & Facebook%s consent modes', 'cookie-notice' ), '<b>', '</b>' ) . '</p>
<p class="' . ( $subscription === 'pro' ? 'cn-active' : 'cn-inactive' ) . '"><span class="cn-icon"></span>' . sprintf( esc_html__( '%sGeolocation%s support', 'cookie-notice' ), '<b>', '</b>' ) . '</p>
<p class="' . ( $subscription === 'pro' ? 'cn-active' : 'cn-inactive' ) . '"><span class="cn-icon"></span>' . sprintf( esc_html__( '%sUnlimited%s languages', 'cookie-notice' ), '<b>', '</b>' ) . '</p>
<p class="' . ( $subscription === 'pro' ? 'cn-active' : 'cn-inactive' ) . '"><span class="cn-icon"></span>' . sprintf( esc_html__( '%sPriority%s Support', 'cookie-notice' ), '<b>', '</b>' ) . '</p>
</div>';
if ( $subscription !== 'pro' ) {
echo '
<div class="cn-pricing-footer">
<a href="' . esc_url( $cn->get_url( 'host', '?utm_campaign=upgrade+to+pro&utm_source=wordpress&utm_medium=link#/en/cc/dashboard?app-id=' . $cn->options['general']['app_id'] . '&open-modal=payment' ) ) . '" class="button button-secondary button-hero cn-button" target="_blank">' . esc_html__( 'Upgrade to Pro', 'cookie-notice' ) . '</a>
</div>';
}
echo '
</div>';
// compliance disabled
} else {
echo '
<h1><b>' . esc_html__( 'Protect your business', 'cookie-notice' ) . '</b></h1>
<h2>' . esc_html__( 'with Cookie Compliance™', 'cookie-notice' ) . '</h2>
<div class="cn-lead">
<p>' . esc_html__( 'Deliver better consent experiences and comply with GDPR, CCPA and other data privacy laws more effectively.', 'cookie-notice' ) . '</p>
</div>
<img alt="' . esc_html__( 'Cookie Compliance dashboard', 'cookie-notice' ) . '" src="' . esc_url( COOKIE_NOTICE_URL ) . '/img/screen-compliance.png">
<p><a href="https://cookie-compliance.co/?utm_campaign=learn+more&utm_source=wordpress&utm_medium=banner" class="button button-secondary button-hero cn-button" target="_blank">' . esc_html__( 'Learn more', 'cookie-notice' ) . '</a></p>';
}
echo '
</div>
</div>
</div>';
echo '
<div class="cookie-notice-faq">
<h2>' . esc_html__( 'F.A.Q.', 'cookie-notice' ) . '</h2>
<div class="cn-toggle-container">
<label for="cn-faq-1" class="cn-toggle-item">
<input id="cn-faq-1" type="checkbox" />
<span class="cn-toggle-heading">' . esc_html__( 'Does the Cookie Notice make my site fully compliant with GDPR/CCPA and other privacy regulations?', 'cookie-notice' ) . '</span>
<span class="cn-toggle-body">' . esc_html__( 'It is not possible to provide the required technical compliance features using only a WordPress plugin. Features like consent record storage, purpose categories and script blocking that bring your site into full compliance with privacy regulations are only available through the Cookie Compliance integration.', 'cookie-notice' ) . '
</label>
<label for="cn-faq-2" class="cn-toggle-item">
<input id="cn-faq-2" type="checkbox" />
<span class="cn-toggle-heading">' . esc_html__( 'Does the Cookie Compliance integration make my site fully compliant with GDPR/CCPA?', 'cookie-notice' ) . '</span>
<span class="cn-toggle-body">' . esc_html__( 'Yes! The plugin + web application version includes technical compliance features to meet requirements for over 100 countries and legal jurisdictions.', 'cookie-notice' ) . '</span>
</label>
<label for="cn-faq-3" class="cn-toggle-item">
<input id="cn-faq-3" type="checkbox" />
<span class="cn-toggle-heading">' . esc_html__( 'Is Cookie Compliance free?', 'cookie-notice' ) . '</span>
<span class="cn-toggle-body">' . esc_html__( 'Yes, but with limits. Cookie Compliance includes both free and paid plans to choose from depending on your needs and your website monthly traffic.', 'cookie-notice' ) . '</span>
</label>
<label for="cn-faq-4" class="cn-toggle-item">
<input id="cn-faq-4" type="checkbox" />
<span class="cn-toggle-heading">' . esc_html__( 'Where can I find pricing options?', 'cookie-notice' ) . '</span>
<span class="cn-toggle-body">' . esc_html__( 'You can learn more about the features and pricing by visiting the Cookie Compliance website here:', 'cookie-notice' ) . ' <a href="https://cookie-compliance.co/?utm_campaign=pricing+options&utm_source=wordpress&utm_medium=textlink" target="_blank">https://cookie-compliance.co</a></span>
</label>
</div>
</div>';
echo '
</div>';
}
/**
* Register plugin settings.
*
* @return void
*/
public function register_settings() {
register_setting( 'cookie_notice_options', 'cookie_notice_options', [ $this, 'validate_options' ] );
// get main instance
$cn = Cookie_Notice();
$status = $cn->get_status();
if ( $cn->is_network_admin() )
$cb = '';
elseif ( $cn->is_plugin_network_active() && $cn->network_options['global_override'] )
$cb = [ $this, 'cn_network_section' ];
else
$cb = '';
add_settings_section( 'cookie_notice_consent_logs', esc_html__( 'Consent Logs', 'cookie-notice' ), $cb, 'cookie_notice_consent_logs', [ 'before_section' => '<div class="%s">', 'after_section' => '</div>', 'section_class' => 'cn-section-container logs-section' ] );
// multisite?
if ( is_multisite() ) {
// network admin?
if ( $cn->is_network_admin() ) {
// network section
add_settings_section( 'cookie_notice_network', esc_html__( 'Network Settings', 'cookie-notice' ), '', 'cookie_notice_options', [ 'before_section' => '<div class="%s">', 'after_section' => '</div>', 'section_class' => 'cn-section-container network-section' ] );
add_settings_field( 'cn_global_override', esc_html__( 'Global Settings Override', 'cookie-notice' ), [ $this, 'cn_global_override' ], 'cookie_notice_options', 'cookie_notice_network' );
add_settings_field( 'cn_global_cookie', esc_html__( 'Global Cookie', 'cookie-notice' ), [ $this, 'cn_global_cookie' ], 'cookie_notice_options', 'cookie_notice_network' );
} elseif ( $cn->is_plugin_network_active() && $cn->network_options['global_override'] ) {
// network section
add_settings_section( 'cookie_notice_network', esc_html__( 'Network Settings', 'cookie-notice' ), [ $this, 'cn_network_section' ], 'cookie_notice_options', [ 'before_section' => '<div class="%s">', 'after_section' => '</div>', 'section_class' => 'cn-section-container network-section' ] );
add_settings_field( 'cn_dummy', '', '__return_empty_string', 'cookie_notice_options', 'cookie_notice_network' );
// get default status data
$default_data = $cn->defaults['data'];
// get real status of current site, not network since global_override is on
$status_data = get_option( 'cookie_notice_status', $default_data );
// old status format?
if ( ! is_array( $status_data ) ) {
// old value saved as string
if ( is_string( $status_data ) && $cn->check_status( $status_data ) ) {
// update status
$default_data['status'] = $status_data;
}
// set data
$status_data = $default_data;
}
// get valid status
$status = $cn->check_status( $status_data['status'] );
}
}
// compliance enabled
if ( $status === 'active' ) {
// compliance section
add_settings_section( 'cookie_notice_compliance', esc_html__( 'Compliance Settings', 'cookie-notice' ), '', 'cookie_notice_options', [ 'before_section' => '<div class="%s">', 'after_section' => '</div>', 'section_class' => 'cn-section-container compliance-section' ] );
add_settings_field( 'cn_app_status', esc_html__( 'Compliance status', 'cookie-notice' ), [ $this, 'cn_app_status' ], 'cookie_notice_options', 'cookie_notice_compliance' );
add_settings_field( 'cn_app_id', esc_html__( 'App ID', 'cookie-notice' ), [ $this, 'cn_app_id' ], 'cookie_notice_options', 'cookie_notice_compliance' );
add_settings_field( 'cn_app_key', esc_html__( 'App Key', 'cookie-notice' ), [ $this, 'cn_app_key' ], 'cookie_notice_options', 'cookie_notice_compliance' );
// configuration section
add_settings_section( 'cookie_notice_configuration', esc_html__( 'Miscellaneous Settings', 'cookie-notice' ), '', 'cookie_notice_options', [ 'before_section' => '<div class="%s">', 'after_section' => '</div>', 'section_class' => 'cn-section-container misc-section' ] );
add_settings_field( 'cn_app_blocking', esc_html__( 'Autoblocking', 'cookie-notice' ), [ $this, 'cn_app_blocking' ], 'cookie_notice_options', 'cookie_notice_configuration' );
add_settings_field( 'cn_debug_mode', esc_html__( 'Debug mode', 'cookie-notice' ), [ $this, 'cn_debug_mode' ], 'cookie_notice_options', 'cookie_notice_configuration' );
add_settings_field( 'cn_caching_compatibility', esc_html__( 'Caching compatibility', 'cookie-notice' ), [ $this, 'cn_caching_compatibility' ], 'cookie_notice_options', 'cookie_notice_configuration' );
add_settings_field( 'cn_app_purge_cache', esc_html__( 'Cache', 'cookie-notice' ), [ $this, 'cn_app_purge_cache' ], 'cookie_notice_options', 'cookie_notice_configuration' );
add_settings_field( 'cn_amp_support', esc_html__( 'AMP Support', 'cookie-notice' ), [ $this, 'cn_amp_support' ], 'cookie_notice_options', 'cookie_notice_configuration' );
add_settings_field( 'cn_conditional_display', esc_html__( 'Conditional display', 'cookie-notice' ), [ $this, 'cn_conditional_display' ], 'cookie_notice_options', 'cookie_notice_configuration' );
add_settings_field( 'cn_deactivation_delete', esc_html__( 'Deactivation', 'cookie-notice' ), [ $this, 'cn_deactivation_delete' ], 'cookie_notice_options', 'cookie_notice_configuration' );
// compliance disabled
} else {
// compliance section
add_settings_section( 'cookie_notice_compliance', esc_html__( 'Compliance Settings', 'cookie-notice' ), '', 'cookie_notice_options', [ 'before_section' => '<div class="%s">', 'after_section' => '</div>', 'section_class' => 'cn-section-container compliance-section' ] );
add_settings_field( 'cn_app_status', esc_html__( 'Compliance status', 'cookie-notice' ), [ $this, 'cn_app_status' ], 'cookie_notice_options', 'cookie_notice_compliance' );
add_settings_field( 'cn_app_id', esc_html__( 'App ID', 'cookie-notice' ), [ $this, 'cn_app_id' ], 'cookie_notice_options', 'cookie_notice_compliance' );
add_settings_field( 'cn_app_key', esc_html__( 'App Key', 'cookie-notice' ), [ $this, 'cn_app_key' ], 'cookie_notice_options', 'cookie_notice_compliance' );
// configuration section
add_settings_section( 'cookie_notice_configuration', esc_html__( 'Notice Settings', 'cookie-notice' ), '', 'cookie_notice_options', [ 'before_section' => '<div class="%s">', 'after_section' => '</div>', 'section_class' => 'cn-section-container notice-section' ] );
add_settings_field( 'cn_message_text', esc_html__( 'Message', 'cookie-notice' ), [ $this, 'cn_message_text' ], 'cookie_notice_options', 'cookie_notice_configuration' );
add_settings_field( 'cn_accept_text', esc_html__( 'Button text', 'cookie-notice' ), [ $this, 'cn_accept_text' ], 'cookie_notice_options', 'cookie_notice_configuration' );
add_settings_field( 'cn_see_more', esc_html__( 'Privacy policy', 'cookie-notice' ), [ $this, 'cn_see_more' ], 'cookie_notice_options', 'cookie_notice_configuration' );
add_settings_field( 'cn_refuse_opt', esc_html__( 'Refuse consent', 'cookie-notice' ), [ $this, 'cn_refuse_opt' ], 'cookie_notice_options', 'cookie_notice_configuration' );
add_settings_field( 'cn_revoke_opt', esc_html__( 'Revoke consent', 'cookie-notice' ), [ $this, 'cn_revoke_opt' ], 'cookie_notice_options', 'cookie_notice_configuration' );
add_settings_field( 'cn_refuse_code', esc_html__( 'Script blocking', 'cookie-notice' ), [ $this, 'cn_refuse_code' ], 'cookie_notice_options', 'cookie_notice_configuration' );
add_settings_field( 'cn_redirection', esc_html__( 'Reloading', 'cookie-notice' ), [ $this, 'cn_redirection' ], 'cookie_notice_options', 'cookie_notice_configuration' );
add_settings_field( 'cn_on_scroll', esc_html__( 'On scroll', 'cookie-notice' ), [ $this, 'cn_on_scroll' ], 'cookie_notice_options', 'cookie_notice_configuration' );
add_settings_field( 'cn_on_click', esc_html__( 'On click', 'cookie-notice' ), [ $this, 'cn_on_click' ], 'cookie_notice_options', 'cookie_notice_configuration' );
add_settings_field( 'cn_time', esc_html__( 'Accepted expiry', 'cookie-notice' ), [ $this, 'cn_time' ], 'cookie_notice_options', 'cookie_notice_configuration' );
add_settings_field( 'cn_time_rejected', esc_html__( 'Rejected expiry', 'cookie-notice' ), [ $this, 'cn_time_rejected' ], 'cookie_notice_options', 'cookie_notice_configuration' );
add_settings_field( 'cn_conditional_display', esc_html__( 'Conditional display', 'cookie-notice' ), [ $this, 'cn_conditional_display' ], 'cookie_notice_options', 'cookie_notice_configuration' );
add_settings_field( 'cn_script_placement', esc_html__( 'Script placement', 'cookie-notice' ), [ $this, 'cn_script_placement' ], 'cookie_notice_options', 'cookie_notice_configuration' );
add_settings_field( 'cn_deactivation_delete', esc_html__( 'Deactivation', 'cookie-notice' ), [ $this, 'cn_deactivation_delete' ], 'cookie_notice_options', 'cookie_notice_configuration' );
// design section
add_settings_section( 'cookie_notice_design', esc_html__( 'Notice Design', 'cookie-notice' ), '', 'cookie_notice_options', [ 'before_section' => '<div class="%s">', 'after_section' => '</div>', 'section_class' => 'cn-section-container design-section' ] );
add_settings_field( 'cn_position', esc_html__( 'Position', 'cookie-notice' ), [ $this, 'cn_position' ], 'cookie_notice_options', 'cookie_notice_design' );
add_settings_field( 'cn_hide_effect', esc_html__( 'Animation', 'cookie-notice' ), [ $this, 'cn_hide_effect' ], 'cookie_notice_options', 'cookie_notice_design' );
add_settings_field( 'cn_colors', esc_html__( 'Colors', 'cookie-notice' ), [ $this, 'cn_colors' ], 'cookie_notice_options', 'cookie_notice_design' );
add_settings_field( 'cn_css_class', esc_html__( 'Button class', 'cookie-notice' ), [ $this, 'cn_css_class' ], 'cookie_notice_options', 'cookie_notice_design' );
}
}
/**
* Network settings override option.
*
* @return void
*/
public function cn_global_override() {
echo '
<div id="cn_global_override">
<label><input type="checkbox" name="cookie_notice_options[global_override]" value="1" ' . checked( true, Cookie_Notice()->options['general']['global_override'], false ) . ' />' . esc_html__( 'Enable global network settings override.', 'cookie-notice' ) . '</label>
<p class="description">' . esc_html__( 'Every site in the network will use the same settings. Site administrators will not be able to change them.', 'cookie-notice' ) . '</p>
</div>';
}
/**
* Network cookie acceptance option.
*
* @return void
*/
public function cn_global_cookie() {
$multi_folders = is_multisite() && ! is_subdomain_install();
// multisite with path-based network?
if ( $multi_folders )
$desc = __( 'This option works only for domain-based networks.', 'cookie-notice' );
else
$desc = '';
echo '
<div id="cn_global_cookie">
<label><input type="checkbox" name="cookie_notice_options[global_cookie]" value="1" ' . checked( true, Cookie_Notice()->options['general']['global_cookie'], false ) . ' ' . disabled( $multi_folders, true, false ) . ' />' . esc_html__( 'Enable global network cookie consent.', 'cookie-notice' ) . '</label>
<p class="description">' . esc_html__( 'Cookie consent in one of the network sites results in a consent in all of the sites on the network.', 'cookie-notice' ) . ( $desc !== '' ? ' ' . esc_html( $desc ) : '' ) . '</p>
</div>';
}
/**
* Network settings section.
*
* @return void
*/
public function cn_network_section() {
echo '
<p>' . esc_html__( 'Global network settings override is active. Every site will use the same network settings. Please contact super administrator if you want to have more control over the settings.', 'cookie-notice' ) . '</p>';
}
/**
* Compliance status.
*
* @return void
*/
public function cn_app_status() {
// get main instance
$cn = Cookie_Notice();
// get cookie compliance status
$app_status = $cn->get_status();
// get threshold status
$threshold_exceeded = $cn->threshold_exceeded();
switch ( $app_status ) {
case 'active':
echo '
<div id="cn_app_status">
<div class="cn_compliance_status"><span class="cn-status-label">' . esc_html__( 'Notice', 'cookie-notice' ) . '</span>: <span class="cn-status cn-active"><span class="cn-icon"></span> ' . esc_html__( 'Active', 'cookie-notice' ) . '</span></div>
<div class="cn_compliance_status"><span class="cn-status-label">' . esc_html__( 'Autoblocking', 'cookie-notice' ) . '</span>: <span class="cn-status ' . ( $threshold_exceeded ? 'cn-pending' : 'cn-active' ) . '"><span class="cn-icon"></span> ' . esc_html__( 'Active', 'cookie-notice' ) . '</span></div>
<div class="cn_compliance_status"><span class="cn-status-label">' . esc_html__( 'Cookie Categories', 'cookie-notice' ) . '</span>: <span class="cn-status cn-active"><span class="cn-icon"></span> ' . esc_html__( 'Active', 'cookie-notice' ) . '</span></div>
<div class="cn_compliance_status"><span class="cn-status-label">' . esc_html__( 'Proof-of-Consent', 'cookie-notice' ) . '</span>: <span class="cn-status cn-active"><span class="cn-icon"></span> ' . esc_html__( 'Active', 'cookie-notice' ) . '</span></div>
</div>
<div id="cn_app_actions">
<a href="' . esc_url( $cn->get_url( 'host', '?utm_campaign=configure&utm_source=wordpress&utm_medium=button#/en/cc/login' ) ) . '" class="button button-primary button-hero cn-button" target="_blank">' . esc_html__( 'Log in & Configure', 'cookie-notice' ) . '</a>
<p class="description">' . esc_html__( 'Log into the Cookie Compliance™ web application to configure the appearance and functionality of the banner.', 'cookie-notice' ) . '</p>
</div>';
break;
case 'pending':
echo '
<div id="cn_app_status">
<div class="cn_compliance_status"><span class="cn-status-label">' . esc_html__( 'Notice', 'cookie-notice' ) . '</span>: <span class="cn-status cn-active"><span class="cn-icon"></span> ' . esc_html__( 'Active', 'cookie-notice' ) . '</span></div>
<div class="cn_compliance_status"><span class="cn-status-label">' . esc_html__( 'Autoblocking', 'cookie-notice' ) . '</span>: <span class="cn-status cn-pending"><span class="cn-icon"></span> ' . esc_html__( 'Pending', 'cookie-notice' ) . '</span></div>
<div class="cn_compliance_status"><span class="cn-status-label">' . esc_html__( 'Cookie Categories', 'cookie-notice' ) . '</span>: <span class="cn-status cn-pending"><span class="cn-icon"></span> ' . esc_html__( 'Pending', 'cookie-notice' ) . '</span></div>
<div class="cn_compliance_status"><span class="cn-status-label">' . esc_html__( 'Proof-of-Consent', 'cookie-notice' ) . '</span>: <span class="cn-status cn-pending"><span class="cn-icon"></span> ' . esc_html__( 'Pending', 'cookie-notice' ) . '</span></div>
</div>
<div id="cn_app_actions">
<a href="' . esc_url( $cn->get_url( 'host', '?utm_campaign=configure&utm_source=wordpress&utm_medium=button#/en/cc/login' ) ) . '" class="button button-primary button-hero cn-button" target="_blank">' . esc_html__( 'Log in & configure', 'cookie-notice' ) . '</a>
<p class="description">' . esc_html__( 'Log into the Cookie Compliance™ web application and complete the setup process.', 'cookie-notice' ) . '</p>
</div>';
break;
default:
if ( $cn->is_network_admin() )
$url = network_admin_url( 'admin.php?page=cookie-notice' );
else
$url = admin_url( 'admin.php?page=cookie-notice' );
echo '
<div id="cn_app_status">
<div class="cn_compliance_status"><span class="cn-status-label">' . esc_html__( 'Notice', 'cookie-notice' ) . '</span>: <span class="cn-status cn-active"><span class="cn-icon"></span> ' . esc_html__( 'Active', 'cookie-notice' ) . '</span></div>
<div class="cn_compliance_status"><span class="cn-status-label">' . esc_html__( 'Autoblocking', 'cookie-notice' ) . '</span>: <span class="cn-status cn-inactive"><span class="cn-icon"></span> ' . esc_html__( 'Inactive', 'cookie-notice' ) . '</span></div>
<div class="cn_compliance_status"><span class="cn-status-label">' . esc_html__( 'Cookie Categories', 'cookie-notice' ) . '</span>: <span class="cn-status cn-inactive"><span class="cn-icon"></span> ' . esc_html__( 'Inactive', 'cookie-notice' ) . '</span></div>
<div class="cn_compliance_status"><span class="cn-status-label">' . esc_html__( 'Proof-of-Consent', 'cookie-notice' ) . '</span>: <span class="cn-status cn-inactive"><span class="cn-icon"></span> ' . esc_html__( 'Inactive', 'cookie-notice' ) . '</span></div>
</div>
<div id="cn_app_actions">
<a href="' . esc_url( $url ) . '" class="button button-primary button-hero cn-button cn-run-welcome">' . esc_html__( 'Add Compliance features', 'cookie-notice' ) . '</a>
<p class="description">' . sprintf( esc_html__( 'Sign up to %s and add GDPR, CCPA and other international data privacy laws compliance features.', 'cookie-notice' ), '<a href="https://cookie-compliance.co/?utm_campaign=sign-up&utm_source=wordpress&utm_medium=textlink" target="_blank">Cookie Compliance™</a>' ) . '</p>
</div>';
break;
}
}
/**
* App ID option.
*
* @return void
*/
public function cn_app_id() {
echo '
<div id="cn_app_id">
<input type="text" class="regular-text" name="cookie_notice_options[app_id]" value="' . esc_attr( Cookie_Notice()->options['general']['app_id'] ) . '" />
<p class="description">' . esc_html__( 'Enter your Cookie Compliance™ application ID.', 'cookie-notice' ) . '</p>
</div>';
}
/**
* App key option.
*
* @return void
*/
public function cn_app_key() {
echo '
<div id="cn_app_key">
<input type="password" class="regular-text" name="cookie_notice_options[app_key]" value="' . esc_attr( Cookie_Notice()->options['general']['app_key'] ) . '" />
<p class="description">' . esc_html__( 'Enter your Cookie Compliance™ application secret key.', 'cookie-notice' ) . '</p>
</div>';
}
/**
* App autoblocking option.
*
* @return void
*/
public function cn_app_blocking() {
// get main instance
$cn = Cookie_Notice();
$threshold_exceeded = $cn->threshold_exceeded();
echo '
<div id="cn_app_blocking"' . ( $threshold_exceeded ? ' class="cn-option-disabled"' : '' ) . '>
<label><input type="checkbox" name="cookie_notice_options[app_blocking]" value="1" ' . checked( true, $cn->options['general']['app_blocking'], false ) . ' ' . disabled( $threshold_exceeded, true, false ) . ' />' . esc_html__( 'Enable to automatically block 3rd party scripts before user consent is set.', 'cookie-notice' ) . '</label>' .
( $threshold_exceeded ? '<p class="description"><span class="cn-warning">*</span> ' . esc_html__( 'This option has been temporarily disabled because your website has reached the usage limit for the Cookie Compliance Basic plan. It will become available again when the current visits cycle resets or you upgrade your website to a Professional plan.', 'cookie-notice' ) . '</p>' : '' ) .
'</div>';
}
/**
* Purge cache option.
*
* @return void
*/
public function cn_app_purge_cache() {
echo '
<div id="cn_app_purge_cache">
<div class="cn-button-container">
<a href="#" class="button button-secondary">' . esc_html__( 'Purge Cache', 'cookie-notice' ) . '</a>
</div>
<p class="description">' . esc_html__( 'Click the Purge Cache button to refresh the app configuration.', 'cookie-notice' ) . '</p>
</div>';
}
/**
* Conditional display option.
*
* @return void
*/
public function cn_conditional_display() {
// get main instance
$cn = Cookie_Notice();
echo '
<fieldset id="cn_conditional_display">
<label><input id="cn_conditional_display_opt" type="checkbox" name="cookie_notice_options[conditional_active]" value="1" ' . checked( true, $cn->options['general']['conditional_active'], false ) . ' />' . esc_html__( 'Enable conditional display of the banner.', 'cookie-notice' ) . '</label>
<div id="cn_conditional_display_opt_container"' . ( $cn->options['general']['conditional_active'] === false ? ' style="display: none"' : '' ) . ' class="cn_fieldset_content">
<div>
<select name="cookie_notice_options[conditional_display]">';
foreach ( $this->conditional_display_types as $type => $label ) {
echo '
<option value="' . esc_attr( $type ) . '" ' . selected( $type, $cn->options['general']['conditional_display'] ) . '>' . esc_html( $label ) . '</option>';
}
echo '
</select>
<p class="description">' . esc_html__( 'Determine what should happen when the following conditions are met.', 'cookie-notice' ) . '</p>
</div>';
// get allowed html
$allowed_html = wp_kses_allowed_html( 'post' );
$allowed_html['select'] = [
'name' => true,
'class' => true
];
$allowed_html['option'] = [
'value' => true,
'selected' => true
];
add_filter( 'safe_style_css', [ $this, 'allow_style_attributes' ] );
echo wp_kses( $this->conditional_display( $cn->options['general']['conditional_rules'] ), $allowed_html );
remove_filter( 'safe_style_css', [ $this, 'allow_style_attributes' ] );
echo '
</div>
</fieldset>';
}
/**
* Debug mode option.
*
* @return void
*/
public function cn_debug_mode() {
echo '
<div id="cn_debug_mode">
<label><input type="checkbox" name="cookie_notice_options[debug_mode]" value="1" ' . checked( true, Cookie_Notice()->options['general']['debug_mode'], false ) . ' />' . esc_html__( 'Enable to run the consent banner in debug mode.', 'cookie-notice' ) . '</label>
</div>';
}
/**
* AMP support option.
*
* @return void
*/
public function cn_amp_support() {
$amp_enabled = cn_is_plugin_active( 'amp' );
echo '
<div id="cn_amp_support">
<label><input type="checkbox" name="cookie_notice_options[amp_support]" value="1" ' . checked( true, Cookie_Notice()->options['general']['amp_support'] && $amp_enabled, false ) . ' ' . disabled( ! $amp_enabled, true, false ) . ' />' . esc_html__( 'Enable to support AMP.', 'cookie-notice' ) . '</label>
<p class="description">' . ( ! $amp_enabled ? esc_html__( 'No compatible Google AMP plugins found.', 'cookie-notice' ) : esc_html__( 'Allows you to activate consent banner support for Google AMP.', 'cookie-notice' ) ) . '</p>
</div>';
}
/**
* Caching compatibility option.
*
* @return void
*/
public function cn_caching_compatibility() {
// get main instance
$cn = Cookie_Notice();
$plugins_html = '';
// get active caching plugins
$active_plugins = cn_get_active_caching_plugins();
if ( ! empty( $active_plugins ) ) {
$active_plugins_html = [];
$plugins_html .= '<p class="description">' . esc_html__( 'Currently detected active caching plugins', 'cookie-notice' ) . ': ';
foreach ( $active_plugins as $plugin ) {
$active_plugins_html[] = '<code>' . esc_html( $plugin ) . '</code>';
}
$plugins_html .= implode( ', ', $active_plugins_html ) . '.</p>';
} else
$plugins_html .= '<p class="description">' . esc_html__( 'No compatible cache plugins found.', 'cookie-notice' ) . '</p>';
echo '
<div id="cn_caching_compatibility">
<label><input type="checkbox" name="cookie_notice_options[caching_compatibility]" value="1" ' . checked( true, $cn->options['general']['caching_compatibility'] && ! empty( $active_plugins ), false ) . ' ' . disabled( empty( $active_plugins ), true, false ) . ' />' . esc_html__( 'Enable to apply changes improving compatibility with caching plugins.', 'cookie-notice' ) . '</label>' . $plugins_html . '
</div>';
}
/**
* Cookie notice message option.
*
* @return void
*/
public function cn_message_text() {
echo '
<div id="cn_message_text">
<textarea name="cookie_notice_options[message_text]" class="large-text" cols="50" rows="5">' . esc_textarea( Cookie_Notice()->options['general']['message_text'] ) . '</textarea>
<p class="description">' . esc_html__( 'Enter the cookie notice message.', 'cookie-notice' ) . '</p>
</div>';
}
/**
* Accept cookie label option.
*
* @return void
*/
public function cn_accept_text() {
echo '
<div id="cn_accept_text">
<input type="text" class="regular-text" name="cookie_notice_options[accept_text]" value="' . esc_attr( Cookie_Notice()->options['general']['accept_text'] ) . '" />
<p class="description">' . esc_html__( 'The text of the option to accept the notice and make it disappear.', 'cookie-notice' ) . '</p>
</div>';
}
/**
* Toggle third party non functional cookies option.
*
* @return void
*/
public function cn_refuse_opt() {
// get main instance
$cn = Cookie_Notice();
echo '
<fieldset>
<label><input id="cn_refuse_opt" type="checkbox" name="cookie_notice_options[refuse_opt]" value="1" ' . checked( true, $cn->options['general']['refuse_opt'], false ) . ' />' . esc_html__( 'Enable to give to the user the possibility to refuse third party non functional cookies.', 'cookie-notice' ) . '</label>
<div id="cn_refuse_opt_container"' . ( $cn->options['general']['refuse_opt'] === false ? ' style="display: none"' : '' ) . ' class="cn_fieldset_content">
<div id="cn_refuse_text">
<input type="text" class="regular-text" name="cookie_notice_options[refuse_text]" value="' . esc_attr( $cn->options['general']['refuse_text'] ) . '" />
<p class="description">' . esc_html__( 'The text of the button to refuse the consent.', 'cookie-notice' ) . '</p>
</div>
</div>
</fieldset>';
}
/**
* Non functional cookies code option.
*
* @return void
*/
public function cn_refuse_code() {
// get main instance
$cn = Cookie_Notice();
$allowed_html = $cn->get_allowed_html();
$active = ! empty( $cn->options['general']['refuse_code'] ) && empty( $cn->options['general']['refuse_code_head'] ) ? 'body' : 'head';
echo '
<div id="cn_refuse_code">
<div id="cn_refuse_code_fields">
<h2 class="nav-tab-wrapper">
<a id="refuse_head-tab" class="nav-tab' . ( $active === 'head' ? ' nav-tab-active' : '' ) . '" href="#refuse_head">' . esc_html__( 'Head', 'cookie-notice' ) . '</a>
<a id="refuse_body-tab" class="nav-tab' . ( $active === 'body' ? ' nav-tab-active' : '' ) . '" href="#refuse_body">' . esc_html__( 'Body', 'cookie-notice' ) . '</a>
</h2>
<div id="refuse_head" class="refuse-code-tab' . ( $active === 'head' ? ' active' : '' ) . '">
<p class="description">' . esc_html__( 'The code to be used in your site header, before the closing head tag.', 'cookie-notice' ) . '</p>
<textarea name="cookie_notice_options[refuse_code_head]" class="large-text" cols="50" rows="8">' . html_entity_decode( trim( wp_kses( $cn->options['general']['refuse_code_head'], $allowed_html ) ) ) . '</textarea>
</div>
<div id="refuse_body" class="refuse-code-tab' . ( $active === 'body' ? ' active' : '' ) . '">
<p class="description">' . esc_html__( 'The code to be used in your site footer, before the closing body tag.', 'cookie-notice' ) . '</p>
<textarea name="cookie_notice_options[refuse_code]" class="large-text" cols="50" rows="8">' . html_entity_decode( trim( wp_kses( $cn->options['general']['refuse_code'], $allowed_html ) ) ) . '</textarea>
</div>
</div>
<p class="description">' . esc_html__( 'Enter non functional cookies Javascript code here (for e.g. Google Analitycs) to be used after the notice is accepted.', 'cookie-notice' ) . '</br>' . sprintf( esc_html__( 'To get the user consent status use the %scn_cookies_accepted()%s function.', 'cookie-notice' ), '<code>', '</code>' ) . '</p>
</div>';
}
/**
* Revoke cookies option.
*
* @return void
*/
public function cn_revoke_opt() {
// get main instance
$cn = Cookie_Notice();
echo '
<fieldset id="cn_revoke_opt">
<label><input id="cn_revoke_cookies" type="checkbox" name="cookie_notice_options[revoke_cookies]" value="1" ' . checked( true, $cn->options['general']['revoke_cookies'], false ) . ' />' . sprintf( esc_html__( 'Enable to give to the user the possibility to revoke their consent %s(requires "Refuse consent" option enabled)%s.', 'cookie-notice' ), '<i>', '</i>' ) . '</label>
<div id="cn_revoke_opt_container"' . ( $cn->options['general']['revoke_cookies'] ? '' : ' style="display: none"' ) . ' class="cn_fieldset_content">
<textarea name="cookie_notice_options[revoke_message_text]" class="large-text" cols="50" rows="2">' . esc_textarea( $cn->options['general']['revoke_message_text'] ) . '</textarea>
<p class="description">' . esc_html__( 'Enter the revoke message.', 'cookie-notice' ) . '</p>
<input type="text" class="regular-text" name="cookie_notice_options[revoke_text]" value="' . esc_attr( $cn->options['general']['revoke_text'] ) . '" />
<p class="description">' . esc_html__( 'The text of the button to revoke the consent.', 'cookie-notice' ) . '</p>';
foreach ( $this->revoke_opts as $value => $label ) {
echo '
<label><input id="cn_revoke_cookies-' . esc_attr( $value ) . '" type="radio" name="cookie_notice_options[revoke_cookies_opt]" value="' . esc_attr( $value ) . '" ' . checked( $value, $cn->options['general']['revoke_cookies_opt'], false ) . ' />' . esc_html( $label ) . '</label>';
}
echo '
<p class="description">' . sprintf( esc_html__( 'Select the method for displaying the revoke button - automatic (in the banner) or manual using %s[cookies_revoke]%s shortcode.', 'cookie-notice' ), '<code>', '</code>' ) . '</p>
</div>
</fieldset>';
}
/**
* Redirection on cookie accept option.
*
* @return void
*/
public function cn_redirection() {
echo '
<div id="cn_redirection">
<label><input type="checkbox" name="cookie_notice_options[redirection]" value="1" ' . checked( true, Cookie_Notice()->options['general']['redirection'], false ) . ' />' . esc_html__( 'Enable to reload the page after the notice is accepted.', 'cookie-notice' ) . '</label>
</div>';
}
/**
* Privacy policy link option.
*
* @global string $wp_version
*
* @return void
*/
public function cn_see_more() {
// get main instance
$cn = Cookie_Notice();
// get published pages
$pages = get_pages(
[
'sort_order' => 'ASC',
'sort_column' => 'post_title',
'hierarchical' => 0,
'child_of' => 0,
'parent' => -1,
'offset' => 0,
'post_type' => 'page',
'post_status' => 'publish'
]
);
echo '
<fieldset>
<label><input id="cn_see_more" type="checkbox" name="cookie_notice_options[see_more]" value="1" ' . checked( true, $cn->options['general']['see_more'], false ) . ' />' . esc_html__( 'Enable privacy policy link.', 'cookie-notice' ) . '</label>
<div id="cn_see_more_opt"' . ( $cn->options['general']['see_more'] === false ? ' style="display: none"' : '' ) . ' class="cn_fieldset_content">
<input type="text" class="regular-text" name="cookie_notice_options[see_more_opt][text]" value="' . esc_attr( $cn->options['general']['see_more_opt']['text'] ) . '" />
<p class="description">' . esc_html__( 'The text of the privacy policy button.', 'cookie-notice' ) . '</p>
<div id="cn_see_more_opt_custom_link">';
foreach ( $this->links as $value => $label ) {
echo '
<label><input id="cn_see_more_link-' . esc_attr( $value ) . '" type="radio" name="cookie_notice_options[see_more_opt][link_type]" value="' . esc_attr( $value ) . '" ' . checked( $value, $cn->options['general']['see_more_opt']['link_type'], false ) . ' />' . esc_html( $label ) . '</label>';
}
echo '
</div>
<p class="description">' . esc_html__( 'Select where to redirect user for more information.', 'cookie-notice' ) . '</p>
<div id="cn_see_more_opt_page"' . ( $cn->options['general']['see_more_opt']['link_type'] === 'custom' ? ' style="display: none"' : '' ) . '>
<select name="cookie_notice_options[see_more_opt][id]">
<option value="0" ' . selected( 0, $cn->options['general']['see_more_opt']['id'], false ) . '>' . esc_html__( '-- select page --', 'cookie-notice' ) . '</option>';
if ( $pages ) {
foreach ( $pages as $page ) {
echo '
<option value="' . esc_attr( $page->ID ) . '" ' . selected( $page->ID, $cn->options['general']['see_more_opt']['id'], false ) . '>' . esc_html( $page->post_title ) . '</option>';
}
}
echo '
</select>
<p class="description">' . esc_html__( 'Select from one of your site\'s pages.', 'cookie-notice' ) . '</p>';
global $wp_version;
if ( version_compare( $wp_version, '4.9.6', '>=' ) ) {
echo '
<label><input id="cn_see_more_opt_sync" type="checkbox" name="cookie_notice_options[see_more_opt][sync]" value="1" ' . checked( true, $cn->options['general']['see_more_opt']['sync'], false ) . ' />' . esc_html__( 'Synchronize with WordPress Privacy Policy page.', 'cookie-notice' ) . '</label>';
}
echo '
</div>
<div id="cn_see_more_opt_link"' . ( $cn->options['general']['see_more_opt']['link_type'] === 'page' ? ' style="display: none"' : '' ) . '>
<input type="text" class="regular-text" name="cookie_notice_options[see_more_opt][link]" value="' . esc_attr( $cn->options['general']['see_more_opt']['link'] ) . '" />
<p class="description">' . esc_html__( 'Enter the full URL starting with http(s)://', 'cookie-notice' ) . '</p>
</div>
<div id="cn_see_more_link_target">';
foreach ( $this->link_targets as $target ) {
echo '
<label><input id="cn_see_more_link_target-' . esc_attr( $target ) . '" type="radio" name="cookie_notice_options[link_target]" value="' . esc_attr( $target ) . '" ' . checked( $target, $cn->options['general']['link_target'], false ) . ' />' . esc_html( $target ) . '</label>';
}
echo '
<p class="description">' . esc_html__( 'Select the privacy policy link target.', 'cookie-notice' ) . '</p>
</div>
<div id="cn_see_more_link_position">';
foreach ( $this->link_positions as $position => $label ) {
echo '
<label><input id="cn_see_more_link_position-' . esc_attr( $position ) . '" type="radio" name="cookie_notice_options[link_position]" value="' . esc_attr( $position ) . '" ' . checked( $position, $cn->options['general']['link_position'], false ) . ' />' . esc_html( $label ) . '</label>';
}
echo '
<p class="description">' . esc_html__( 'Select the privacy policy link position.', 'cookie-notice' ) . '</p>
</div>
</div>
</fieldset>';
}
/**
* Expiration time option.
*
* @return void
*/
public function cn_time() {
echo '
<div id="cn_time">
<select name="cookie_notice_options[time]">';
foreach ( $this->times as $time => $arr ) {
echo '
<option value="' . esc_attr( $time ) . '" ' . selected( $time, Cookie_Notice()->options['general']['time'] ) . '>' . esc_html( $arr[0] ) . '</option>';
}
echo '
</select>
<p class="description">' . esc_html__( 'The amount of time that the cookie should be stored for when user accepts the notice.', 'cookie-notice' ) . '</p>
</div>';
}
/**
* Expiration time option.
*
* @return void
*/
public function cn_time_rejected() {
echo '
<div id="cn_time_rejected">
<select name="cookie_notice_options[time_rejected]">';
foreach ( $this->times as $time => $arr ) {
echo '
<option value="' . esc_attr( $time ) . '" ' . selected( $time, Cookie_Notice()->options['general']['time_rejected'] ) . '>' . esc_html( $arr[0] ) . '</option>';
}
echo '
</select>
<p class="description">' . esc_html__( 'The amount of time that the cookie should be stored for when the user doesn\'t accept the notice.', 'cookie-notice' ) . '</p>
</div>';
}
/**
* Script placement option.
*
* @return void
*/
public function cn_script_placement() {
echo '
<div id="cn_script_placement">';
foreach ( $this->script_placements as $value => $label ) {
echo '
<label><input id="cn_script_placement-' . esc_attr( $value ) . '" type="radio" name="cookie_notice_options[script_placement]" value="' . esc_attr( $value ) . '" ' . checked( $value, Cookie_Notice()->options['general']['script_placement'], false ) . ' />' . esc_html( $label ) . '</label>';
}
echo '
<p class="description">' . esc_html__( 'Select where all the plugin scripts should be placed.', 'cookie-notice' ) . '</p>
</div>';
}
/**
* Position option.
*
* @return void
*/
public function cn_position() {
echo '
<div id="cn_position">';
foreach ( $this->positions as $value => $label ) {
echo '
<label><input id="cn_position-' . esc_attr( $value ) . '" type="radio" name="cookie_notice_options[position]" value="' . esc_attr( $value ) . '" ' . checked( $value, Cookie_Notice()->options['general']['position'], false ) . ' />' . esc_html( $label ) . '</label>';
}
echo '
<p class="description">' . esc_html__( 'Select location for the notice.', 'cookie-notice' ) . '</p>
</div>';
}
/**
* Animation effect option.
*
* @return void
*/
public function cn_hide_effect() {
echo '
<div id="cn_hide_effect">';
foreach ( $this->effects as $value => $label ) {
echo '
<label><input id="cn_hide_effect-' . esc_attr( $value ) . '" type="radio" name="cookie_notice_options[hide_effect]" value="' . esc_attr( $value ) . '" ' . checked( $value, Cookie_Notice()->options['general']['hide_effect'], false ) . ' />' . esc_html( $label ) . '</label>';
}
echo '
<p class="description">' . esc_html__( 'Select the animation style.', 'cookie-notice' ) . '</p>
</div>';
}
/**
* On scroll option.
*
* @return void
*/
public function cn_on_scroll() {
// get main instance
$cn = Cookie_Notice();
echo '
<fieldset>
<label><input id="cn_on_scroll" type="checkbox" name="cookie_notice_options[on_scroll]" value="1" ' . checked( true, $cn->options['general']['on_scroll'], false ) . ' />' . esc_html__( 'Enable to accept the notice when user scrolls.', 'cookie-notice' ) . '</label>
<div id="cn_on_scroll_offset"' . ( $cn->options['general']['on_scroll'] === false || $cn->options['general']['on_scroll'] == false ? ' style="display: none"' : '' ) . ' class="cn_fieldset_content">
<input type="number" min="0" class="small-text" name="cookie_notice_options[on_scroll_offset]" value="' . esc_attr( $cn->options['general']['on_scroll_offset'] ) . '" /> <span>px</span>
<p class="description">' . esc_html__( 'Number of pixels user has to scroll to accept the notice and make it disappear.', 'cookie-notice' ) . '</p>
</div>
</fieldset>';
}
/**
* On click option.
*
* @return void
*/
public function cn_on_click() {
echo '
<div id="cn_on_click">
<label><input type="checkbox" name="cookie_notice_options[on_click]" value="1" ' . checked( true, Cookie_Notice()->options['general']['on_click'], false ) . ' />' . esc_html__( 'Enable to accept the notice on any click on the page.', 'cookie-notice' ) . '</label>
</div>';
}
/**
* Delete plugin data on deactivation option.
*
* @return void
*/
public function cn_deactivation_delete() {
echo '
<div id="cn_deactivation_delete">
<label><input type="checkbox" name="cookie_notice_options[deactivation_delete]" value="1" ' . checked( true, Cookie_Notice()->options['general']['deactivation_delete'], false ) . '/>' . esc_html__( 'Enable if you want all plugin data to be deleted on deactivation.', 'cookie-notice' ) . '</label>
</div>';
}
/**
* CSS style option.
*
* @return void
*/
public function cn_css_class() {
echo '
<div id="cn_css_class">
<input type="text" class="regular-text" name="cookie_notice_options[css_class]" value="' . esc_attr( Cookie_Notice()->options['general']['css_class'] ) . '" />
<p class="description">' . esc_html__( 'Enter additional button CSS classes separated by spaces.', 'cookie-notice' ) . '</p>
</div>';
}
/**
* Colors option.
*
* @return void
*/
public function cn_colors() {
// get main instance
$cn = Cookie_Notice();
echo '
<fieldset>
<div id="cn_colors">';
foreach ( $this->colors as $value => $label ) {
echo '
<div id="cn_colors-' . esc_attr( $value ) . '"><label>' . esc_html( $label ) . '</label><br />
<input class="cn_color" type="text" name="cookie_notice_options[colors][' . esc_attr( $value ) . ']" value="' . esc_attr( $cn->options['general']['colors'][$value] ) . '" />
</div>';
}
echo '
<div id="cn_colors-bar_opacity"><label>' . esc_html__( 'Bar opacity', 'cookie-notice' ) . '</label><br />
<div><input id="cn_colors_bar_opacity_range" class="cn_range" type="range" min="50" max="100" step="1" name="cookie_notice_options[colors][bar_opacity]" value="' . (int) $cn->options['general']['colors']['bar_opacity'] . '" onchange="cn_colors_bar_opacity_text.value = cn_colors_bar_opacity_range.value" /><input id="cn_colors_bar_opacity_text" class="small-text" type="number" onchange="cn_colors_bar_opacity_range.value = cn_colors_bar_opacity_text.value" min="50" max="100" value="' . (int) $cn->options['general']['colors']['bar_opacity'] . '" /></div>
</div>';
echo '
</div>
</fieldset>';
}
/**
* Validate options.
*
* @param array $input
* @return array
*/
public function validate_options( $input ) {
if ( ! current_user_can( apply_filters( 'cn_manage_cookie_notice_cap', 'manage_options' ) ) )
return $input;
// get main instance
$cn = Cookie_Notice();
$is_network = $cn->is_network_admin();
if ( isset( $_POST['save_cookie_notice_options'] ) ) {
// app id
$input['app_id'] = isset( $input['app_id'] ) ? sanitize_key( $input['app_id'] ) : $cn->defaults['general']['app_id'];
// app key
$input['app_key'] = isset( $input['app_key'] ) ? sanitize_key( $input['app_key'] ) : $cn->defaults['general']['app_key'];
// set app status
if ( ! empty( $input['app_id'] ) && ! empty( $input['app_key'] ) ) {
$app_data = $cn->welcome_api->get_app_config( $input['app_id'], true );
if ( $cn->check_status( $app_data['status'] ) === 'active' && $cn->options['general']['app_id'] !== $input['app_id'] ) {
// get_app_analytics requires fresh app data
$this->analytics_app_data = [
'id' => $input['app_id'],
'key' => $input['app_key']
];
// update analytics data
$cn->welcome_api->get_app_analytics( $input['app_id'], true );
$this->analytics_app_data = [];
}
} else {
if ( $is_network )
update_site_option( 'cookie_notice_status', $cn->defaults['data'] );
else
update_option( 'cookie_notice_status', $cn->defaults['data'] );
}
// app blocking
$input['app_blocking'] = isset( $input['app_blocking'] ) && ! $cn->threshold_exceeded();
// conditional display
$input['conditional_active'] = isset( $input['conditional_active'] );
$input['conditional_display'] = isset( $input['conditional_display'] ) ? sanitize_key( $input['conditional_display'] ) : $cn->defaults['general']['conditional_display'];
if ( ! in_array( $input['conditional_display'], array_keys( $this->conditional_display_types ), true ) )
$input['conditional_display'] = $cn->defaults['general']['conditional_display'];
if ( ! empty( $input['conditional_rules'] ) && is_array( $input['conditional_rules'] ) ) {
$group_id = $rule_id = 1;
$rules = [];
foreach ( $input['conditional_rules'] as $group_number => $group ) {
// skips template data or empty groups
if ( (int) $group_number <= 0 || empty( $group ) )
continue;
foreach ( $group as $rule ) {
$param = sanitize_key( $rule['param'] );
$operator = sanitize_key( $rule['operator'] );
$value = sanitize_key( $rule['value'] );
if ( $this->check_rule( $param, $operator, $value ) ) {
$rules[$group_id][$rule_id++] = [
'param' => $param,
'operator' => $operator,
'value' => $value
];
}
}
$rule_id = 1;
$group_id++;
}
$input['conditional_rules'] = $rules;
} else
$input['conditional_rules'] = [];
// debug mode
$input['debug_mode'] = isset( $input['debug_mode'] );
// amp support
$input['amp_support'] = isset( $input['amp_support'] ) && cn_is_plugin_active( 'amp' );
// get active caching plugins
$active_plugins = cn_get_active_caching_plugins();
// caching compatibility
$input['caching_compatibility'] = isset( $input['caching_compatibility'] ) && ! empty( $active_plugins );
// position
if ( isset( $input['position'] ) ) {
$input['position'] = sanitize_key( $input['position'] );
if ( ! array_key_exists( $input['position'], $this->positions ) )
$input['position'] = $cn->defaults['general']['position'];
} else
$input['position'] = $cn->defaults['general']['position'];
// text color
if ( isset( $input['colors']['text'] ) ) {
$input['colors']['text'] = sanitize_hex_color( $input['colors']['text'] );
if ( empty( $input['colors']['text'] ) )
$input['colors']['text'] = $cn->defaults['general']['colors']['text'];
} else
$input['colors']['text'] = $cn->defaults['general']['colors']['text'];
// button color
if ( isset( $input['colors']['button'] ) ) {
$input['colors']['button'] = sanitize_hex_color( $input['colors']['button'] );
if ( empty( $input['colors']['button'] ) )
$input['colors']['button'] = $cn->defaults['general']['colors']['button'];
} else
$input['colors']['button'] = $cn->defaults['general']['colors']['button'];
// bar color
if ( isset( $input['colors']['bar'] ) ) {
$input['colors']['bar'] = sanitize_hex_color( $input['colors']['bar'] );
if ( empty( $input['colors']['bar'] ) )
$input['colors']['bar'] = $cn->defaults['general']['colors']['bar'];
} else
$input['colors']['bar'] = $cn->defaults['general']['colors']['bar'];
// bar opacity
$input['colors']['bar_opacity'] = isset( $input['colors']['bar_opacity'] ) ? (int) $input['colors']['bar_opacity'] : $cn->defaults['general']['colors']['bar_opacity'];
if ( $input['colors']['bar_opacity'] < 50 || $input['colors']['bar_opacity'] > 100 )
$input['colors']['bar_opacity'] = $cn->defaults['general']['colors']['bar_opacity'];
// message text
if ( isset( $input['message_text'] ) ) {
add_filter( 'safe_style_css', [ $this, 'allow_style_attributes' ] );
$input['message_text'] = wp_kses_post( trim( $input['message_text'] ) );
remove_filter( 'safe_style_css', [ $this, 'allow_style_attributes' ] );
if ( $input['message_text'] === '' )
$input['message_text'] = $cn->defaults['general']['message_text'];
} else
$input['message_text'] = $cn->defaults['general']['message_text'];
// accept button text
if ( isset( $input['accept_text'] ) ) {
$input['accept_text'] = sanitize_text_field( $input['accept_text'] );
if ( $input['accept_text'] === '' )
$input['accept_text'] = $cn->defaults['general']['accept_text'];
} else
$input['accept_text'] = $cn->defaults['general']['accept_text'];
// refuse button text
if ( isset( $input['refuse_text'] ) ) {
$input['refuse_text'] = sanitize_text_field( $input['refuse_text'] );
if ( $input['refuse_text'] === '' )
$input['refuse_text'] = $cn->defaults['general']['refuse_text'];
} else
$input['refuse_text'] = $cn->defaults['general']['refuse_text'];
// revoke message text
if ( isset( $input['revoke_message_text'] ) ) {
add_filter( 'safe_style_css', [ $this, 'allow_style_attributes' ] );
$input['revoke_message_text'] = wp_kses_post( trim( $input['revoke_message_text'] ) );
remove_filter( 'safe_style_css', [ $this, 'allow_style_attributes' ] );
if ( $input['revoke_message_text'] === '' )
$input['revoke_message_text'] = $cn->defaults['general']['revoke_message_text'];
} else
$input['revoke_message_text'] = $cn->defaults['general']['revoke_message_text'];
// revoke button text
if ( isset( $input['revoke_text'] ) ) {
$input['revoke_text'] = sanitize_text_field( $input['revoke_text'] );
if ( $input['revoke_text'] === '' )
$input['revoke_text'] = $cn->defaults['general']['revoke_text'];
} else
$input['revoke_text'] = $cn->defaults['general']['revoke_text'];
// refuse consent
$input['refuse_opt'] = isset( $input['refuse_opt'] );
// revoke consent
$input['revoke_cookies'] = isset( $input['revoke_cookies'] );
// revoke consent type
if ( isset( $input['revoke_cookies_opt'] ) ) {
$input['revoke_cookies_opt'] = sanitize_key( $input['revoke_cookies_opt'] );
if ( ! array_key_exists( $input['revoke_cookies_opt'], $this->revoke_opts ) )
$input['revoke_cookies_opt'] = $cn->defaults['general']['revoke_cookies_opt'];
} else
$input['revoke_cookies_opt'] = $cn->defaults['general']['revoke_cookies_opt'];
// get allowed html
$allowed_html = $cn->get_allowed_html();
// body refuse code
if ( isset( $input['refuse_code'] ) )
$input['refuse_code'] = wp_kses( trim( $input['refuse_code'] ), $allowed_html );
else
$input['refuse_code'] = $cn->defaults['general']['refuse_code'];
// head refuse code
if ( isset( $input['refuse_code_head'] ) )
$input['refuse_code_head'] = wp_kses( trim( $input['refuse_code_head'] ), $allowed_html );
else
$input['refuse_code_head'] = $cn->defaults['general']['refuse_code_head'];
// css button class(es)
if ( isset( $input['css_class'] ) ) {
$input['css_class'] = trim( $input['css_class'] );
if ( $input['css_class'] !== '' ) {
// more than 1 class?
if ( strpos( $input['css_class'], ' ' ) !== false ) {
// get unique valid html classes
$input['css_class'] = array_unique( array_filter( array_map( 'sanitize_html_class', explode( ' ', $input['css_class'] ) ) ) );
if ( ! empty( $input['css_class'] ) )
$input['css_class'] = implode( ' ', $input['css_class'] );
else
$input['css_class'] = $cn->defaults['general']['css_class'];
// single class
} else
$input['css_class'] = sanitize_html_class( $input['css_class'] );
}
} else
$input['css_class'] = $cn->defaults['general']['css_class'];
// accepted expiry
if ( isset( $input['time'] ) ) {
$input['time'] = sanitize_key( $input['time'] );
if ( ! array_key_exists( $input['time'], $this->times ) )
$input['time'] = $cn->defaults['general']['time'];
} else
$input['time'] = $cn->defaults['general']['time'];
// rejected expiry
if ( isset( $input['time_rejected'] ) ) {
$input['time_rejected'] = sanitize_key( $input['time_rejected'] );
if ( ! array_key_exists( $input['time_rejected'], $this->times ) )
$input['time_rejected'] = $cn->defaults['general']['time_rejected'];
} else
$input['time_rejected'] = $cn->defaults['general']['time_rejected'];
// script placement
if ( isset( $input['script_placement'] ) ) {
$input['script_placement'] = sanitize_key( $input['script_placement'] );
if ( ! array_key_exists( $input['script_placement'], $this->script_placements ) )
$input['script_placement'] = $cn->defaults['general']['script_placement'];
} else
$input['script_placement'] = $cn->defaults['general']['script_placement'];
// hide effect
if ( isset( $input['hide_effect'] ) ) {
$input['hide_effect'] = sanitize_key( $input['hide_effect'] );
if ( ! array_key_exists( $input['hide_effect'], $this->effects ) )
$input['hide_effect'] = $cn->defaults['general']['hide_effect'];
} else
$input['hide_effect'] = $cn->defaults['general']['hide_effect'];
// reloading
$input['redirection'] = isset( $input['redirection'] );
// on scroll
$input['on_scroll'] = isset( $input['on_scroll'] );
// on scroll offset
$input['on_scroll_offset'] = isset( $input['on_scroll_offset'] ) ? (int) $input['on_scroll_offset'] : $cn->defaults['general']['on_scroll_offset'];
if ( $input['on_scroll_offset'] < 0 )
$input['on_scroll_offset'] = 0;
// on click
$input['on_click'] = isset( $input['on_click'] );
// deactivation
$input['deactivation_delete'] = isset( $input['deactivation_delete'] );
// privacy policy
$input['see_more'] = isset( $input['see_more'] );
// privacy policy link text
if ( isset( $input['see_more_opt']['text'] ) ) {
$input['see_more_opt']['text'] = sanitize_text_field( $input['see_more_opt']['text'] );
if ( $input['see_more_opt']['text'] === '' )
$input['see_more_opt']['text'] = $cn->defaults['general']['see_more_opt']['text'];
} else
$input['see_more_opt']['text'] = $cn->defaults['general']['see_more_opt']['text'];
// privacy policy link type
if ( isset( $input['see_more_opt']['link_type'] ) ) {
$input['see_more_opt']['link_type'] = sanitize_key( $input['see_more_opt']['link_type'] );
if ( ! array_key_exists( $input['see_more_opt']['link_type'], $this->links ) )
$input['see_more_opt']['link_type'] = $cn->defaults['general']['see_more_opt']['link_type'];
} else
$input['see_more_opt']['link_type'] = $cn->defaults['general']['see_more_opt']['link_type'];
if ( $input['see_more_opt']['link_type'] === 'custom' )
$input['see_more_opt']['link'] = $input['see_more'] && isset( $input['see_more_opt']['link'] ) ? esc_url_raw( $input['see_more_opt']['link'] ) : '';
elseif ( $input['see_more_opt']['link_type'] === 'page' ) {
$input['see_more_opt']['id'] = $input['see_more'] && isset( $input['see_more_opt']['id'] ) ? (int) $input['see_more_opt']['id'] : 0;
$input['see_more_opt']['sync'] = isset( $input['see_more_opt']['sync'] );
if ( $input['see_more_opt']['sync'] )
update_option( 'wp_page_for_privacy_policy', $input['see_more_opt']['id'] );
}
// privacy policy link target
if ( isset( $input['link_target'] ) ) {
$input['link_target'] = sanitize_key( $input['link_target'] );
if ( ! array_key_exists( $input['link_target'], $this->link_targets ) )
$input['link_target'] = $cn->defaults['general']['link_target'];
} else
$input['link_target'] = $cn->defaults['general']['link_target'];
// policy policy link position
if ( isset( $input['link_position'] ) ) {
$input['link_position'] = sanitize_key( $input['link_position'] );
if ( ! array_key_exists( $input['link_position'], $this->link_positions ) )
$input['link_position'] = $cn->defaults['general']['link_position'];
} else
$input['link_position'] = $cn->defaults['general']['link_position'];
// message link position?
if ( $input['see_more'] && $input['link_position'] === 'message' && strpos( $input['message_text'], '[cookies_policy_link' ) === false )
$input['message_text'] .= ' [cookies_policy_link]';
$input['update_version'] = $cn->options['general']['update_version'];
$input['update_notice'] = $cn->options['general']['update_notice'];
$input['translate'] = false;
// WPML >= 3.2
if ( defined( 'ICL_SITEPRESS_VERSION' ) && version_compare( ICL_SITEPRESS_VERSION, '3.2', '>=' ) ) {
do_action( 'wpml_register_single_string', 'Cookie Notice', 'Message in the notice', $input['message_text'] );
do_action( 'wpml_register_single_string', 'Cookie Notice', 'Button text', $input['accept_text'] );
do_action( 'wpml_register_single_string', 'Cookie Notice', 'Refuse button text', $input['refuse_text'] );
do_action( 'wpml_register_single_string', 'Cookie Notice', 'Revoke message text', $input['revoke_message_text'] );
do_action( 'wpml_register_single_string', 'Cookie Notice', 'Revoke button text', $input['revoke_text'] );
do_action( 'wpml_register_single_string', 'Cookie Notice', 'Privacy policy text', $input['see_more_opt']['text'] );
if ( $input['see_more_opt']['link_type'] === 'custom' )
do_action( 'wpml_register_single_string', 'Cookie Notice', 'Custom link', $input['see_more_opt']['link'] );
}
add_settings_error( 'cn_cookie_notice_options', 'save_cookie_notice_options', esc_html__( 'Settings saved.', 'cookie-notice' ), 'updated' );
} elseif ( isset( $_POST['reset_cookie_notice_options'] ) ) {
$input = $cn->defaults['general'];
add_settings_error( 'cn_cookie_notice_options', 'reset_cookie_notice_options', esc_html__( 'Settings restored to defaults.', 'cookie-notice' ), 'updated' );
// network area?
if ( $is_network ) {
// set app data
update_site_option( 'cookie_notice_status', $cn->defaults['data'] );
} else {
// set app data
update_option( 'cookie_notice_status', $cn->defaults['data'] );
}
}
return $input;
}
/**
* Validate network options.
*
* @return void
*/
public function validate_network_options() {
if ( ! current_user_can( apply_filters( 'cn_manage_cookie_notice_cap', 'manage_options' ) ) )
return;
// get main instance
$cn = Cookie_Notice();
// global network page?
if ( $cn->is_network_admin() && isset( $_POST['cn-network-settings'] ) ) {
// network settings
if ( ! empty( $_POST['cookie_notice_options'] ) && check_admin_referer( 'cookie_notice_options-options', '_wpnonce' ) !== false ) {
if ( isset( $_POST['save_cookie_notice_options'] ) ) {
// need to check it early for get_app_config and get_app_analytics
$cn->network_options['global_override'] = isset( $_POST['cookie_notice_options']['global_override'] );
// validate options
$data = $this->validate_options( $_POST['cookie_notice_options'] );
// check network settings
$data['global_override'] = $cn->network_options['global_override'];
$data['global_cookie'] = isset( $_POST['cookie_notice_options']['global_cookie'] );
$data['update_notice_diss'] = $cn->options['general']['update_notice_diss'];
if ( $data['global_override'] && ! $cn->options['general']['update_notice_diss'] )
$data['update_notice'] = true;
else
$data['update_notice'] = false;
// update database
update_site_option( 'cookie_notice_options', $data );
// update settings
$cn->options['general'] = $cn->network_options = $cn->multi_array_merge( $cn->defaults['general'], get_site_option( 'cookie_notice_options', $cn->defaults['general'] ) );
} elseif ( isset( $_POST['reset_cookie_notice_options'] ) ) {
$cn->defaults['general']['update_notice'] = false;
$cn->defaults['general']['update_notice_diss'] = false;
// silent options validation
$this->validate_options( $cn->defaults['general'] );
// update database
update_site_option( 'cookie_notice_options', $cn->defaults['general'] );
// update settings
$cn->options['general'] = $cn->network_options = $cn->defaults['general'];
}
}
// update status of cookie compliance
$cn->set_status_data();
}
}
/**
* Load scripts and styles - admin.
*
* @return void
*/
public function admin_enqueue_scripts( $page ) {
// get main instance
$cn = Cookie_Notice();
if ( $page === 'toplevel_page_cookie-notice' ) {
wp_enqueue_script( 'cookie-notice-admin', COOKIE_NOTICE_URL . '/js/admin' . ( ! ( defined( 'SCRIPT_DEBUG' ) && SCRIPT_DEBUG ) ? '.min' : '' ) . '.js', [ 'jquery', 'wp-color-picker' ], $cn->defaults['version'] );
// prepare script data
$script_data = [
'ajaxURL' => admin_url( 'admin-ajax.php' ),
'nonce' => wp_create_nonce( 'cn-purge-cache' ),
'nonceConditional' => wp_create_nonce( 'cn-get-group-values' ),
'nonceConsentLogs' => wp_create_nonce( 'cn-get-consent-logs' ),
'consentLogsTemplate' => $cn->consent_logs->get_single_row_template(),
'consentLogsError' => $cn->consent_logs->get_error_template(),
'network' => $cn->is_network_admin(),
'resetToDefaults' => esc_html__( 'Are you sure you want to reset these settings to defaults?', 'cookie-notice' )
];
wp_add_inline_script( 'cookie-notice-admin', 'var cnArgs = ' . wp_json_encode( $script_data ) . ";\n", 'before' );
wp_enqueue_style( 'wp-color-picker' );
}
wp_enqueue_style( 'cookie-notice-admin', COOKIE_NOTICE_URL . '/css/admin' . ( ! ( defined( 'SCRIPT_DEBUG' ) && SCRIPT_DEBUG ) ? '.min' : '' ) . '.css', [], $cn->defaults['version'] );
}
/**
* Load admin style inline, for menu icon only.
*
* @return void
*/
public function admin_print_styles() {
echo '
<style>
a.toplevel_page_cookie-notice .wp-menu-image {
background-image: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiIHN0YW5kYWxvbmU9Im5vIj8+PCFET0NUWVBFIHN2ZyBQVUJMSUMgIi0vL1czQy8vRFREIFNWRyAxLjEvL0VOIiAiaHR0cDovL3d3dy53My5vcmcvR3JhcGhpY3MvU1ZHLzEuMS9EVEQvc3ZnMTEuZHRkIj48c3ZnIHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiIHZpZXdCb3g9IjAgMCAzMjEgMzIxIiB2ZXJzaW9uPSIxLjEiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgeG1sbnM6eGxpbms9Imh0dHA6Ly93d3cudzMub3JnLzE5OTkveGxpbmsiIHhtbDpzcGFjZT0icHJlc2VydmUiIHhtbG5zOnNlcmlmPSJodHRwOi8vd3d3LnNlcmlmLmNvbS8iIHN0eWxlPSJmaWxsLXJ1bGU6ZXZlbm9kZDtjbGlwLXJ1bGU6ZXZlbm9kZDtzdHJva2UtbGluZWpvaW46cm91bmQ7c3Ryb2tlLW1pdGVybGltaXQ6MjsiPjxwYXRoIGQ9Ik0zMTcuMjc4LDEzMC40NTFjLTAuODEyLC00LjMwMiAtNC4zMDEsLTcuNTYyIC04LjY0MiwtOC4wODFjLTQuMzU0LC0wLjUyMiAtOC41MDYsMS44MjkgLTEwLjMwNyw1LjgyMmMtMy4xNyw3LjAwMyAtMTAuMTMzLDExLjg3MyAtMTguMjA1LDExLjg2NGMtOC45NTUsMC4wMjIgLTE2LjUxNywtNi4wMjEgLTE5LjAzOCwtMTQuMzE1Yy0xLjUyMSwtNS4wNjMgLTYuNzI0LC04LjA2NCAtMTEuODY1LC02Ljg2M2MtMy4xNjMsMC43NDEgLTYuMTU0LDEuMTcyIC05LjEyNSwxLjE3MmMtMjIuMDM5LC0wLjA0MyAtMzkuOTc2LC0xNy45NzkgLTQwLjAxNSwtNDAuMDE5Yy0wLC0yLjk3IDAuNDMsLTUuOTYyIDEuMTY5LC05LjExM2MxLjIxMiwtNS4xNDEgLTEuNzk5LC0xMC4zNTMgLTYuODYsLTExLjg3M2MtOC4yOTUsLTIuNTEzIC0xNC4zMzcsLTEwLjA3NSAtMTQuMzE5LC0xOS4wMjljLTAuMDA5LC04LjA4MiA0Ljg2NCwtMTUuMDM2IDExLjg2NywtMTguMjA4YzMuOTkxLC0xLjc5OCA2LjM0MSwtNS45NjMgNS44MjIsLTEwLjMwNGMtMC41MjIsLTQuMzUxIC0zLjc4MywtNy44NDMgLTguMDg0LC04LjY1MmMtOS41NDMsLTEuNzkyIC0xOS40MjYsLTIuODUyIC0yOS42MTEsLTIuODUyYy04OC4yOTUsMC4wMjIgLTE2MC4wNDMsNzEuNzcgLTE2MC4wNjUsMTYwLjA2NWMwLjAyMiw4OC4yOTUgNzEuNzcsMTYwLjA0MyAxNjAuMDY1LDE2MC4wNjVjODguMjk1LC0wLjAyMiAxNjAuMDQzLC03MS43NyAxNjAuMDY1LC0xNjAuMDY1Yy0wLC0xMC4xODQgLTEuMDYzLC0yMC4wNjcgLTIuODUyLC0yOS42MTRabS01OC4yMjMsMTI4LjYwNGMtMjUuNDAxLDI1LjM4IC02MC4zNTUsNDEuMDY2IC05OC45OSw0MS4wNjZjLTM4LjYzNSwwIC03My41ODgsLTE1LjY4NiAtOTguOTg5LC00MS4wNjZjLTI1LjM4LC0yNS40MDEgLTQxLjA2NiwtNjAuMzU1IC00MS4wNjYsLTk4Ljk5Yy0wLC0zOC42MzUgMTUuNjg2LC03My41ODggNDEuMDY2LC05OC45ODljMjUuNDAxLC0yNS4zOCA2MC4zNTQsLTQxLjA2NiA5OC45ODksLTQxLjA2NmMxLjgwMSwwIDMuNTYsMC4xODkgNS4zNTIsMC4yNjhjLTMuMzQzLDUuODIzIC01LjM0MywxMi41MjcgLTUuMzUyLDE5LjczOGMwLjAxOCwxNC45MzUgOC4zMDQsMjcuNzQyIDIwLjM3OSwzNC41NzVjLTAuMTkyLDEuNzggLTAuMzczLDMuNTYgLTAuMzczLDUuNDRjMC4wMjIsMzMuMTI1IDI2LjkwMyw2MC4wMDcgNjAuMDI1LDYwLjAyNWMxLjg4LDAgMy42NjQsLTAuMTggNS40NDMsLTAuMzY5YzYuODMzLDEyLjA2NSAxOS42MjgsMjAuMzU2IDM0LjU3MiwyMC4zNzhjNy4yMTUsLTAuMDA5IDEzLjkxNiwtMi4wMTEgMTkuNzQxLC01LjM1MmMwLjA4LDEuNzggMC4yNjksMy41NTEgMC4yNjksNS4zNTJjLTAsMzguNjM1IC0xNS42ODYsNzMuNTg5IC00MS4wNjYsOTguOTlabS01OC45NzQsLTE4Ljk1OWMtMCwxMS4wNTIgLTguOTU4LDIwLjAxIC0yMC4wMSwyMC4wMWMtMTEuMDQ4LC0wIC0yMC4wMDUsLTguOTU4IC0yMC4wMDUsLTIwLjAxYy0wLC0xMS4wNDkgOC45NTcsLTIwLjAwNiAyMC4wMDUsLTIwLjAwNmMxMS4wNTIsLTAgMjAuMDEsOC45NTcgMjAuMDEsMjAuMDA2Wm0tODAuMDMxLC0xMC4wMDVjMCw1LjUyNiAtNC40NzksMTAuMDA1IC0xMC4wMDUsMTAuMDA1Yy01LjUyNiwtMCAtMTAuMDA1LC00LjQ3OSAtMTAuMDA1LC0xMC4wMDVjMCwtNS41MjMgNC40NzksLTEwLjAwMSAxMC4wMDUsLTEwLjAwMWM1LjUyNiwtMCAxMC4wMDUsNC40NzggMTAuMDA1LDEwLjAwMVptMTQwLjA1NSwtMjAuMDA2YzAsNS41MjYgLTQuNDc5LDEwLjAwNSAtMTAuMDA1LDEwLjAwNWMtNS41MjUsMCAtMTAuMDA1LC00LjQ3OSAtMTAuMDA1LC0xMC4wMDVjMCwtNS41MjYgNC40OCwtMTAuMDA1IDEwLjAwNSwtMTAuMDA1YzUuNTI2LDAgMTAuMDA1LDQuNDc5IDEwLjAwNSwxMC4wMDVabS0xNjAuMDY0LC01MC4wMmMtMCwxMS4wNDggLTguOTU3LDIwLjAwNiAtMjAuMDEsMjAuMDA2Yy0xMS4wNDgsMCAtMjAuMDA1LC04Ljk1OCAtMjAuMDA1LC0yMC4wMDZjLTAsLTExLjA1MiA4Ljk1NywtMjAuMDEgMjAuMDA1LC0yMC4wMWMxMS4wNTMsMCAyMC4wMSw4Ljk1OCAyMC4wMSwyMC4wMVptODAuMDMsMTAuMDA1YzAsNS41MjMgLTQuNDc4LDEwLjAwMSAtMTAuMDAxLDEwLjAwMWMtNS41MjYsMCAtMTAuMDA1LC00LjQ3OCAtMTAuMDA1LC0xMC4wMDFjMCwtNS41MjYgNC40NzksLTEwLjAwNSAxMC4wMDUsLTEwLjAwNWM1LjUyMywwIDEwLjAwMSw0LjQ3OSAxMC4wMDEsMTAuMDA1Wm0xMTUuNDkzLC02OS40MDZjMCw1LjUyNiAtNC40NzksMTAuMDA1IC0xMC4wMDUsMTAuMDA1Yy01LjUyNiwtMCAtMTAuMDA1LC00LjQ3OSAtMTAuMDA1LC0xMC4wMDVjMCwtNS41MjYgNC40NzksLTEwLjAwNSAxMC4wMDUsLTEwLjAwNWM1LjUyNiwtMCAxMC4wMDUsNC40NzkgMTAuMDA1LDEwLjAwNVptLTM1LjUyMywtMTkuODc0Yy0wLDExLjUwMyAtOS4zMjUsMjAuODI4IC0yMC44MjgsMjAuODI4Yy0xMS41MDQsLTAgLTIwLjgyOSwtOS4zMjUgLTIwLjgyOSwtMjAuODI4Yy0wLC0xMS41MDMgOS4zMjUsLTIwLjgyOCAyMC44MjksLTIwLjgyOGMxMS41MDMsLTAgMjAuODI4LDkuMzI1IDIwLjgyOCwyMC44MjhabS0xMTkuOTg1LC0wLjc1OWMtMCwxMS4wNTIgLTguOTU3LDIwLjAxIC0yMC4wMDYsMjAuMDFjLTExLjA1MiwtMCAtMjAuMDA5LC04Ljk1OCAtMjAuMDA5LC0yMC4wMWMtMCwtMTEuMDQ4IDguOTU3LC0yMC4wMDYgMjAuMDA5LC0yMC4wMDZjMTEuMDQ5LC0wIDIwLjAwNiw4Ljk1OCAyMC4wMDYsMjAuMDA2WiIgc3R5bGU9ImZpbGw6I2ZmZjtmaWxsLXJ1bGU6bm9uemVybzsiLz48L3N2Zz4=);
background-position: center center;
background-repeat: no-repeat;
background-size: 18px auto;
}
</style>
';
}
/**
* Register WPML (>= 3.2) strings if needed.
*
* @global object $wpdb
*
* @return void
*/
private function register_wpml_strings() {
// get main instance
$cn = Cookie_Notice();
global $wpdb;
// prepare strings
$strings = [
'Message in the notice' => $cn->options['general']['message_text'],
'Button text' => $cn->options['general']['accept_text'],
'Refuse button text' => $cn->options['general']['refuse_text'],
'Revoke message text' => $cn->options['general']['revoke_message_text'],
'Revoke button text' => $cn->options['general']['revoke_text'],
'Privacy policy text' => $cn->options['general']['see_more_opt']['text'],
'Custom link' => $cn->options['general']['see_more_opt']['link']
];
// get query results
$results = $wpdb->get_col( $wpdb->prepare( "SELECT name FROM " . $wpdb->prefix . "icl_strings WHERE context = %s", 'Cookie Notice' ) );
// check results
foreach( $strings as $string => $value ) {
// string does not exist?
if ( ! in_array( $string, $results, true ) ) {
// register string
do_action( 'wpml_register_single_string', 'Cookie Notice', $string, $value );
}
}
}
/**
* Display errors and notices.
*
* @global string $pagenow
*
* @return void
*/
public function settings_errors() {
global $pagenow;
// force display notices in top menu settings page
if ( $pagenow === 'options-general.php' )
return;
settings_errors( 'cn_cookie_notice_options' );
}
/**
* Save compliance config caching.
*
* @return void
*/
public function ajax_purge_cache() {
// valid nonce?
if ( ! check_ajax_referer( 'cn-purge-cache', 'nonce' ) )
exit;
// check capability
if ( ! current_user_can( apply_filters( 'cn_manage_cookie_notice_cap', 'manage_options' ) ) )
exit;
// request for new config data
Cookie_Notice()->welcome_api->get_app_config( '', true );
// force new config on frontend
if ( Cookie_Notice()->is_network_admin() )
set_site_transient( 'cookie_notice_config_update', current_time( 'timestamp', true ), 600 );
else
set_transient( 'cookie_notice_config_update', current_time( 'timestamp', true ), 600 );
exit;
}
/**
* Generate conditions.
*
* @param array $groups
* @return string
*/
public function conditional_display( $groups ) {
$group_template = '
<div%s>
<table class="widefat">
<tbody>
%s
</tbody>
</table>
<h4 class="or-rules">' . esc_html__( 'or', 'cookie-notice' ) . '</h4>
</div>';
$rule_template = '
<tr data-rule-id="__RULE_ID__" %s>
<td class="param">
<select class="rule-type" name="cookie_notice_options[conditional_rules][__GROUP_ID__][__RULE_ID__][param]">
%s
</select>
</td>
<td class="operator">
<select name="cookie_notice_options[conditional_rules][__GROUP_ID__][__RULE_ID__][operator]">
%s
</select>
</td>
<td class="value">
<span class="spinner" style="display: none"></span>
<select name="cookie_notice_options[conditional_rules][__GROUP_ID__][__RULE_ID__][value]">
%s
</select>
</td>
<td class="remove">
<a href="#" class="dashicons dashicons-no-alt remove-rule"></a>
</td>
</tr>';
$html = sprintf(
$group_template,
' class="rules-group" id="rules-group-template" style="display: none"',
sprintf(
$rule_template,
' class="rule_template"',
$this->prepare_parameters(),
$this->prepare_operators(),
$this->prepare_values( 'page_type' )
)
) . '
<div id="cookie-notice-conditions">
<table class="widefat">
<tbody>
<tr>
<td>
<div id="rules-groups">';
if ( ! empty( $groups ) ) {
foreach ( $groups as $group_id => $group ) {
$html_rules = '';
foreach ( $group as $rule_id => $rule ) {
$html_rules .= sprintf(
str_replace(
[ '__GROUP_ID__', '__RULE_ID__' ],
[ (int) $group_id, (int) $rule_id ],
$rule_template
),
'',
$this->prepare_parameters( $rule['param'] ),
$this->prepare_operators( $rule['operator'] ),
$this->prepare_values( $rule['param'], $rule['value'] )
);
}
$html .= sprintf( str_replace( '__GROUP_ID__', $group_id, $group_template ), ' class="rules-group" id="rules-group-' . $group_id . '"', $html_rules );
}
}
$html .= ' </div>
<a class="add-rule-group button button-primary" href="#">' . esc_html__( '+ Add rule', 'cookie-notice' ) . '</a>
<p class="description">' . esc_html__( 'Create a set of rules to define the exact conditions for displaying or hiding the banner.', 'cookie-notice' ) . '</p>
</td>
</tr>
</tbody>
</table>
</div>';
return $html;
}
/**
* Prepare condition parameters.
*
* @param string $selected
* @return string
*/
public function prepare_parameters( $selected = 'page_type' ) {
$html = '';
foreach ( $this->parameters as $id => $element ) {
$html .= '<option value="' . esc_attr( $id ) . '" ' . selected( $id, $selected, false ) . '>' . esc_html( $element ) . '</option>';
}
return $html;
}
/**
* Prepare condition operators.
*
* @param string $selected
* @return string
*/
public function prepare_operators( $selected = 'equal' ) {
$html = '';
foreach ( $this->operators as $id => $operator ) {
$html .= '<option value="' . esc_attr( $id ) . '" ' . selected( $id, $selected, false ) . '>' . esc_html( $operator ) . '</option>';
}
return $html;
}
/**
* Prepare condition values.
*
* @param string $type
* @param string $selected
* @return string
*/
public function prepare_values( $type = '', $selected = '' ) {
$type = sanitize_key( $type );
$selected = sanitize_key( $selected );
$html = '';
switch ( sanitize_key( $type ) ) {
case 'page':
$pages = $this->get_pages();
if ( ! empty( $pages ) ) {
foreach ( $pages as $page_id => $page_title ) {
$html .= '<option value="' . esc_attr( $page_id ) . '" ' . selected( $page_id, $selected, false ) . '>' . esc_html( $page_title ) . '</option>';
}
}
break;
case 'page_type':
$page_types = $this->get_page_types();
if ( ! empty( $page_types ) ) {
foreach ( $page_types as $page_type => $label ) {
$html .= '<option value="' . esc_attr( $page_type ) . '" ' . selected( $page_type, $selected, false ) . '>' . esc_html( $label ) . '</option>';
}
}
break;
case 'post_type':
$post_types = $this->get_post_types();
if ( ! empty( $post_types ) ) {
foreach ( $post_types as $post_type => $label ) {
$html .= '<option value="' . esc_attr( $post_type ) . '" ' . selected( $post_type, $selected, false ) . '>' . esc_html( $label ) . '</option>';
}
}
break;
case 'user_type':
$user_types = $this->get_user_types();
if ( ! empty( $user_types ) ) {
foreach ( $user_types as $user_type => $username ) {
$html .= '<option value="' . esc_attr( $user_type ) . '" ' . selected( $user_type, $selected, false ) . '>' . esc_html( $username ).'</option>';
}
}
break;
case 'post_type_archive':
$post_type_archives = $this->get_post_type_archives();
if ( ! empty( $post_type_archives ) ) {
foreach ( $post_type_archives as $post_type => $archive_name ) {
$html .= '<option value="' . esc_attr( $post_type ) . '" ' . selected( $post_type, $selected, false ) . '>' . esc_html( $archive_name ) . '</option>';
}
} else
$html .= '<option value="__none__">' . esc_html__( '-- no public archives --', 'cookie-notice' ) . '</option>';
}
return $html;
}
/**
* Check condition rule.
*
* @param string $type
* @param string $operator
* @param string $value
* @return bool
*/
public function check_rule( $type = '', $operator = '', $value = '' ) {
if ( ! isset( $this->operators[$operator] ) )
return false;
switch( $type ) {
case 'page':
$pages = $this->get_pages();
$valid_rule = ! empty( $pages[$value] );
break;
case 'page_type':
$page_types = $this->get_page_types();
$valid_rule = ! empty( $page_types[$value] );
break;
case 'post_type':
$post_types = $this->get_post_types();
$valid_rule = ! empty( $post_types[$value] );
break;
case 'user_type':
$user_types = $this->get_user_types();
$valid_rule = ! empty( $user_types[$value] );
break;
case 'post_type_archive':
$post_type_archives = $this->get_post_type_archives();
$valid_rule = ! empty( $post_type_archives[$value] );
break;
default:
$valid_rule = false;
}
return $valid_rule;
}
/**
* Get page types.
*
* @return array
*/
public function get_pages() {
$pages = [];
// default arguments
$args = [
'post_type' => 'page',
'post__not_in' => [],
'nopaging' => true,
'posts_per_page' => -1,
'orderby' => 'title',
'order' => 'asc',
'suppress_filters' => false,
'no_found_rows' => true,
'cache_results' => false,
'post_status' => [ 'publish', 'private', 'future' ]
];
// get static home pages
$homepage = (int) get_option( 'page_for_posts', 0 );
$posts_page = (int) get_option( 'page_on_front', 0 );
// check homepage
if ( $homepage > 0 )
$args['post__not_in'][] = $homepage;
// check posts page
if ( $posts_page > 0 )
$args['post__not_in'][] = $posts_page;
$query = new WP_Query( $args );
if ( ! empty( $query->posts ) ) {
foreach ( $query->posts as $page ) {
$page_id = (int) $page->ID;
$pages[$page_id] = trim( $page->post_title ) === '' ? sprintf( __( 'Untitled Page %d', 'cookie-notice' ), $page_id ) : $page->post_title;
}
}
return $pages;
}
/**
* Get page types.
*
* @return array
*/
public function get_page_types() {
return [
'front' => __( 'Front Page', 'cookie-notice' ),
'home' => __( 'Home Page', 'cookie-notice' )
];
}
/**
* Get user types.
*
* @return array
*/
public function get_user_types() {
return [
'logged_in' => __( 'Logged in', 'cookie-notice' ),
'guest' => __( 'Guest', 'cookie-notice' )
];
}
/**
* Get public post types.
*
* @return array
*/
public function get_post_types() {
// get public post types
$post_types = get_post_types(
[
'public' => true
],
'objects',
'and'
);
$data = [];
if ( ! empty( $post_types ) ) {
foreach ( $post_types as $key => $post_type ) {
$data[$key] = $post_type->labels->singular_name;
}
}
asort( $data, SORT_STRING );
return $data;
}
/**
* Get public post type archives.
*
* @return array
*/
public function get_post_type_archives() {
// get public post types with archives
$post_types = get_post_types(
[
'has_archive' => true,
'public' => true
],
'objects',
'and'
);
$archives = [];
if ( ! empty( $post_types ) ) {
foreach ( $post_types as $key => $post_type ) {
$archives[$key] = $post_type->labels->name;
}
}
// sort archives alphabetically
asort( $archives, SORT_STRING );
return $archives;
}
/**
* Get group rule values.
*
* @return void
*/
public function get_group_rule_values() {
if ( isset( $_POST['action'], $_POST['cn_param'], $_POST['cn_nonce'] ) && wp_verify_nonce( $_POST['cn_nonce'], 'cn-get-group-values' ) !== false ) {
echo wp_json_encode(
[
'select' => $this->prepare_values( sanitize_key( $_POST['cn_param'] ) )
]
);
}
exit;
}
/**
*
*/
public function get_analytics_app_data() {
return $this->analytics_app_data;
}
/**
* Add new properties to style safe list.
*
* @param array $styles
* @return array
*/
public function allow_style_attributes( $styles ) {
$styles[] = 'display';
return $styles;
}
}