Plugin Directory

Changeset 3335926


Ignore:
Timestamp:
07/29/2025 12:03:25 PM (8 months ago)
Author:
adsimple
Message:

v2.1.1

Location:
adsimple-cookie-manager-for-wp/trunk
Files:
1 added
2 edited

Legend:

Unmodified
Added
Removed
  • adsimple-cookie-manager-for-wp/trunk/adsimple-cookie-manager.php

    r3320609 r3335926  
    33    *  Plugin Name:     Cookie Banner - Consent Manager by AdSimple (DSGVO/GDPR)
    44    *  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.0
     5    *  Version:         2.1.1
    66    *  Author:          AdSimple
    77    *  Author URI:      https://www.adsimple.at
     
    116116            AS_CM_Helpers_General::load_controller( 'shortcodes', 'AS_CM_Controllers_Shortcodes' );
    117117            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' );
    118119            /* END INIT CONTROLLERS */
    119120
     
    252253            self::handler_loading_base_part();
    253254            self::activate();
     255            self::register_wp_consent_api();
    254256        }
    255257
     
    327329
    328330        /**
     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        /**
    329339         * init environment error
    330340         *
  • adsimple-cookie-manager-for-wp/trunk/readme.txt

    r3320609 r3335926  
    55Requires at least: 4.2.0
    66Tested up to: 6.6.2
    7 Stable tag: 2.1.0
     7Stable tag: 2.1.1
    88Requires PHP: 5.4
    99License: GPLv2 or later
     
    4545
    4646♿ 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.
    4749
    4850With these features, the AdSimple Consent Manager ensures easy and effective management of user consents, keeping your website GDPR-compliant.
     
    160162== Changelog ==
    161163
     164= 2.1.1 =
     165
     166*   Release Date - 29th July 2025
     167*   Added: WP Consent API integration
     168
    162169= 2.1.0 =
    163170
Note: See TracChangeset for help on using the changeset viewer.