Changeset 3335926
- Timestamp:
- 07/29/2025 12:03:25 PM (8 months ago)
- Location:
- adsimple-cookie-manager-for-wp/trunk
- Files:
-
- 1 added
- 2 edited
-
adsimple-cookie-manager.php (modified) (4 diffs)
-
includes/controllers/extensions/consent_api.php (added)
-
readme.txt (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
-
adsimple-cookie-manager-for-wp/trunk/adsimple-cookie-manager.php
r3320609 r3335926 3 3 * Plugin Name: Cookie Banner - Consent Manager by AdSimple (DSGVO/GDPR) 4 4 * Description: With this Cookie Banner WordPress plugin, you can install a cookie banner on your WordPress website in just a few steps. 5 * Version: 2.1. 05 * Version: 2.1.1 6 6 * Author: AdSimple 7 7 * Author URI: https://www.adsimple.at … … 116 116 AS_CM_Helpers_General::load_controller( 'shortcodes', 'AS_CM_Controllers_Shortcodes' ); 117 117 AS_CM_Helpers_General::load_controller( 'extensions/rocket', 'AS_CM_Controllers_Extensions_Rocket' ); 118 AS_CM_Helpers_General::load_controller( 'extensions/consent_api', 'AS_CM_Controllers_Extensions_Consent_API' ); 118 119 /* END INIT CONTROLLERS */ 119 120 … … 252 253 self::handler_loading_base_part(); 253 254 self::activate(); 255 self::register_wp_consent_api(); 254 256 } 255 257 … … 327 329 328 330 /** 331 * Tell the consent API we're following the api. 332 */ 333 protected function register_wp_consent_api() { 334 $plugin = plugin_basename(__FILE__); 335 add_filter("wp_consent_api_registered_$plugin", function(){ return true; }); 336 } 337 338 /** 329 339 * init environment error 330 340 * -
adsimple-cookie-manager-for-wp/trunk/readme.txt
r3320609 r3335926 5 5 Requires at least: 4.2.0 6 6 Tested up to: 6.6.2 7 Stable tag: 2.1. 07 Stable tag: 2.1.1 8 8 Requires PHP: 5.4 9 9 License: GPLv2 or later … … 45 45 46 46 ♿ WCAG 2.1 Accessibility Compliance – The cookie banner is designed to meet Web Content Accessibility Guidelines (WCAG) 2.1 standards, ensuring accessibility for users with disabilities across the European Accessibility Act (EAA) requirements. 47 48 🔌 WP Consent API Compatibility – Our plugin is compatible with the WordPress Consent API, allowing seamless integration with other WordPress plugins that support this standard for consent management. 47 49 48 50 With these features, the AdSimple Consent Manager ensures easy and effective management of user consents, keeping your website GDPR-compliant. … … 160 162 == Changelog == 161 163 164 = 2.1.1 = 165 166 * Release Date - 29th July 2025 167 * Added: WP Consent API integration 168 162 169 = 2.1.0 = 163 170
Note: See TracChangeset
for help on using the changeset viewer.