PluginProbe ʕ •ᴥ•ʔ
Cookiebot by Usercentrics – Automatic Cookie Banner for GDPR/CCPA & Google Consent Mode / trunk
Cookiebot by Usercentrics – Automatic Cookie Banner for GDPR/CCPA & Google Consent Mode vtrunk
4.7.2 4.7.1 trunk 2.3.0 2.4.0 2.4.1 2.4.2 2.5.0 3.0.0 3.0.1 3.1.0 3.10.0 3.10.1 3.11.1 3.11.2 3.11.3 3.2.0 3.3.0 3.3.1 3.4.0 3.4.1 3.4.2 3.5.0 3.6.0 3.6.1 3.6.2 3.6.5 3.6.6 3.7.0 3.7.1 3.8.0 3.9.0 4.0.0 4.0.1 4.0.2 4.0.3 4.1.0 4.1.1 4.2.0 4.2.1 4.2.10 4.2.11 4.2.12 4.2.13 4.2.14 4.2.2 4.2.3 4.2.4 4.2.5 4.2.6 4.2.7 4.2.8 4.2.9 4.3.0 4.3.1 4.3.10 4.3.11 4.3.12 4.3.2 4.3.3 4.3.4 4.3.5 4.3.6 4.3.7 4.3.7.1 4.3.8 4.3.9 4.3.9.1 4.4.0 4.4.1 4.4.2 4.5.0 4.5.1 4.5.10 4.5.11 4.5.2 4.5.3 4.5.4 4.5.5 4.5.6 4.5.7 4.5.8 4.5.9 4.6.0 4.6.1 4.6.2 4.6.3 4.6.4 4.6.5 4.6.6 4.6.7 4.7.0
cookiebot / uninstall.php
cookiebot Last commit date
assets 1 week ago documentation 3 years ago langs 6 months ago src 1 week ago tests 1 month ago vendor 3 years ago AGENTS.md 1 month ago CLAUDE.md 1 month ago LICENSE.txt 4 years ago README.md 1 month ago composer.json 1 month ago composer.lock 4 years ago cookiebot.php 1 week ago logo.svg 1 year ago readme.txt 1 week ago uninstall.php 1 year ago
uninstall.php
61 lines
1 <?php // exit if uninstall constant is not defined
2 if ( ! defined( 'WP_UNINSTALL_PLUGIN' ) ) {
3 exit;
4 }
5
6 // All new and legacy config params
7 // phpcs:ignore
8 // phpcs:ignore
9 $options = array(
10 'cookiebot-cbid',
11 'cookiebot-auth-token',
12 'cookiebot-user-data',
13 'cookiebot-configuration',
14 'cookiebot-scan-id',
15 'cookiebot-scan-status',
16 'cookiebot-banner-enabled',
17 'cookiebot_banner_live_dismissed',
18 'cookiebot-uc-auto-blocking-mode',
19 'cookiebot-uc-onboarded-via-signup',
20
21 'cookiebot-ruleset-id',
22 'cookiebot-language',
23 'cookiebot-front-language',
24 'cookiebot-nooutput',
25 'cookiebot-nooutput-admin',
26 'cookiebot-output-logged-in',
27 'cookiebot-ignore-scripts',
28 'cookiebot-autoupdate',
29 'cookiebot-script-tag-uc-attribute',
30 'cookiebot-script-tag-cd-attribute',
31 'cookiebot-cookie-blocking-mode',
32 'cookiebot-iab',
33 'cookiebot-tcf-version',
34 'cookiebot-tcf-purposes',
35 'cookiebot-tcf-special-purposes',
36 'cookiebot-tcf-features',
37 'cookiebot-tcf-special-features',
38 'cookiebot-tcf-vendors',
39 'cookiebot-tcf-disallowed',
40 'cookiebot-tcf-ac-vendors',
41 'cookiebot-ccpa',
42 'cookiebot-ccpa-domain-group-id',
43 'cookiebot-gtm',
44 'cookiebot-gtm-id',
45 'cookiebot-gtm-cookies',
46 'cookiebot-data-layer',
47 'cookiebot-gcm',
48 'cookiebot-gcm-first-run',
49 'cookiebot-gcm-url-passthrough',
50 'cookiebot-gcm-cookies',
51 'cookiebot-multiple-config',
52 'cookiebot-second-banner-regions',
53 'cookiebot-second-banner-id',
54 'cookiebot-multiple-banners',
55 );
56 // Delete all config params
57 // phpcs:ignore
58 foreach ( $options as $option ) {
59 delete_option( $option );
60 }
61