PluginProbe ʕ •ᴥ•ʔ
CookieYes – Cookie Banner for Cookie Consent (Easy to setup GDPR/CCPA Compliant Cookie Notice) / 3.5.0
CookieYes – Cookie Banner for Cookie Consent (Easy to setup GDPR/CCPA Compliant Cookie Notice) v3.5.0
3.5.1 3.5.0 3.4.2 trunk 1.0.1 1.0.3 1.2 1.2.1 1.2.2 1.3 1.3.1 1.3.2 1.4 1.4.1 1.4.2 1.4.3 1.5 1.5.1 1.5.2 1.5.3 1.5.4 1.5.5 1.5.6 1.5.7 1.5.8 1.5.9 1.6.0 1.6.1 1.6.10 1.6.2 1.6.3 1.6.4 1.6.5 1.6.6 1.6.7 1.6.8 1.6.9 1.7.0 1.7.1 1.7.2 1.7.3 1.7.4 1.7.5 1.7.6 1.7.7 1.7.8 1.7.9 1.8.0 1.8.1 1.8.2 1.8.3 1.8.4 1.8.5 1.8.6 1.8.7 1.8.8 1.8.9 1.9.0 1.9.1 1.9.2 1.9.3 1.9.4 1.9.5 2.0.0 2.0.1 2.0.2 2.0.3 2.0.4 2.0.5 2.0.6 2.0.7 2.0.8 2.0.9 2.1.0 2.1.1 2.1.2 2.1.3 3.0.0 3.0.1 3.0.2 3.0.3 3.0.4 3.0.5 3.0.6 3.0.7 3.0.8 3.0.9 3.1.0 3.1.1 3.1.2 3.1.3 3.1.4 3.1.5 3.1.6 3.1.7 3.1.8 3.2.0 3.2.1 3.2.10 3.2.2 3.2.3 3.2.4 3.2.5 3.2.6 3.2.7 3.2.8 3.2.9 3.3.0 3.3.1 3.3.2 3.3.3 3.3.4 3.3.5 3.3.6 3.3.7 3.3.8 3.3.9 3.3.9.1 3.4.0 3.4.1
cookie-law-info / legacy / admin / modules / cli-policy-generator / data / data.policy-generator.php
cookie-law-info / legacy / admin / modules / cli-policy-generator / data Last commit date
data.block1.php 2 weeks ago data.block2.php 2 weeks ago data.block3.php 2 weeks ago data.block4.php 2 weeks ago data.block5.php 2 weeks ago data.policy-generator.php 2 weeks ago
data.policy-generator.php
43 lines
1 <?php
2
3 if ( ! defined( 'ABSPATH' ) ) {
4 exit;
5 }
6
7 /*
8 * Default text for Privacy Generator
9 *
10 **/
11 $cli_pg_default_data = array(
12 array(
13 'head' => 'About this cookie policy',
14 'body' => '',
15 'body_file' => 'data.block1.php',
16 'status' => 1,
17 ),
18 array(
19 'head' => 'What are cookies ?',
20 'body' => '',
21 'body_file' => 'data.block2.php',
22 'status' => 1,
23 ),
24 array(
25 'head' => 'How do we use cookies ?',
26 'body' => '',
27 'body_file' => 'data.block3.php',
28 'status' => 1,
29 ),
30 array(
31 'head' => 'What types of cookies do we use ?',
32 'body' => '',
33 'body_file' => 'data.block4.php',
34 'status' => 1,
35 ),
36 array(
37 'head' => 'How can I control the cookie preferences ?',
38 'body' => '',
39 'body_file' => 'data.block5.php',
40 'status' => 1,
41 ),
42 );
43