Plugin Directory

Changeset 3239467


Ignore:
Timestamp:
02/12/2025 02:52:42 PM (14 months ago)
Author:
nouchy
Message:

Preparing version 1.2.8 for testing

Location:
sirdata-cmp
Files:
4 edited

Legend:

Unmodified
Added
Removed
  • sirdata-cmp/readme.txt

    r3138217 r3239467  
    44Requires at least: 6.0
    55Requires PHP: 7.4
    6 Stable Tag: 1.2.6
     6Stable Tag: 1.2.8
    77License: GPLv3
    88License URI: http://www.gnu.org/licenses/gpl.html
    99Text Domain: sirdata-cmp
    1010
    11 Manage consent and handle data processing.
     11Easily manage cookie consent and GDPR compliance with Sirdata CMP.
    1212
    13 == Icons ==
    14 - icon-128x128.png
    15 - icon-256x256.png
     13== Description ==
     14
     15Sirdata CMP is a comprehensive consent management solution for WordPress that enables you to:
     16
     17- Comply with regulations (GDPR, ePrivacy, CCPA)
     18- Customize your cookie banner
     19- Manage cookie blocking
     20- Generate up-to-date cookie policy
     21
     22== Features ==
     23
     24**🚀 Easy Setup**
     25- Configuration in a few clicks
     26- Intuitive interface
     27- Multilingual support (EN/FR)
     28
     29**💫 Advanced Customization**
     30- Customizable design
     31- Configurable messages
     32- Flexible positioning
     33
     34**✅ Automated Compliance**
     35- GDPR compliance
     36
     37**⚡ Integrations**
     38- Google Tag Manager
     39- Google Consent Mode
     40- WordPress Consent API
     41
     42== Installation ==
     43
     441. Download and activate the plugin
     452. Register on Sirdata CMP
     463. Configure your settings
     474. The banner appears automatically
    1648
    1749== External Services ==
    1850
    19 This plugin relies on the following third-party service to function correctly:
     51This plugin relies on the following third-party service to function correctlyy:
    2052
    2153**Service Name**: SirdataCMP
     
    4173= 1.0 =
    4274* First version with only consent manager
     75= 1.2.7 =
     76* Adding autofilling of the partner ID and config ID
     77
     78== Copyright ==
     79
     80Sirdata CMP is a registered trademark of Sirdata.
     81
     82== Support ==
     83
     84Technical support available at https://cmp.sirdata.io/
  • sirdata-cmp/sirdata.php

    r3138217 r3239467  
    33Plugin Name: Sirdata CMP
    44Description: Manage consent frameworks and handle data processing. When a user interacts with consent prompts, their data may be sent to Sirdata for processing.
    5 Version: 1.2.6
     5Version: 1.2.8
    66Author: AC WEB AGENCY
    77Tested up to: 6.6.1
     
    344344            $response = json_decode($response_body);
    345345            if (isset($response->partner_id) && isset($response->cmp_config_id)) {
     346                // Save the partner_id and config_id automatically
     347                update_option('STCMP_custom_consent_partner_id', $response->partner_id);
     348                update_option('STCMP_custom_consent_config_id', $response->cmp_config_id);
    346349                $data_notices = 'account_created=true';
    347350            }
  • sirdata-cmp/trunk/readme.txt

    r3138217 r3239467  
    44Requires at least: 6.0
    55Requires PHP: 7.4
    6 Stable Tag: 1.2.6
     6Stable Tag: 1.2.8
    77License: GPLv3
    88License URI: http://www.gnu.org/licenses/gpl.html
    99Text Domain: sirdata-cmp
    1010
    11 Manage consent and handle data processing.
     11Easily manage cookie consent and GDPR compliance with Sirdata CMP.
    1212
    13 == Icons ==
    14 - icon-128x128.png
    15 - icon-256x256.png
     13== Description ==
     14
     15Sirdata CMP is a comprehensive consent management solution for WordPress that enables you to:
     16
     17- Comply with regulations (GDPR, ePrivacy, CCPA)
     18- Customize your cookie banner
     19- Manage cookie blocking
     20- Generate up-to-date cookie policy
     21
     22== Features ==
     23
     24**🚀 Easy Setup**
     25- Configuration in a few clicks
     26- Intuitive interface
     27- Multilingual support (EN/FR)
     28
     29**💫 Advanced Customization**
     30- Customizable design
     31- Configurable messages
     32- Flexible positioning
     33
     34**✅ Automated Compliance**
     35- GDPR compliance
     36
     37**⚡ Integrations**
     38- Google Tag Manager
     39- Google Consent Mode
     40- WordPress Consent API
     41
     42== Installation ==
     43
     441. Download and activate the plugin
     452. Register on Sirdata CMP
     463. Configure your settings
     474. The banner appears automatically
    1648
    1749== External Services ==
    1850
    19 This plugin relies on the following third-party service to function correctly:
     51This plugin relies on the following third-party service to function correctlyy:
    2052
    2153**Service Name**: SirdataCMP
     
    4173= 1.0 =
    4274* First version with only consent manager
     75= 1.2.7 =
     76* Adding autofilling of the partner ID and config ID
     77
     78== Copyright ==
     79
     80Sirdata CMP is a registered trademark of Sirdata.
     81
     82== Support ==
     83
     84Technical support available at https://cmp.sirdata.io/
  • sirdata-cmp/trunk/sirdata.php

    r3138217 r3239467  
    33Plugin Name: Sirdata CMP
    44Description: Manage consent frameworks and handle data processing. When a user interacts with consent prompts, their data may be sent to Sirdata for processing.
    5 Version: 1.2.6
     5Version: 1.2.8
    66Author: AC WEB AGENCY
    77Tested up to: 6.6.1
     
    344344            $response = json_decode($response_body);
    345345            if (isset($response->partner_id) && isset($response->cmp_config_id)) {
     346                // Save the partner_id and config_id automatically
     347                update_option('STCMP_custom_consent_partner_id', $response->partner_id);
     348                update_option('STCMP_custom_consent_config_id', $response->cmp_config_id);
    346349                $data_notices = 'account_created=true';
    347350            }
Note: See TracChangeset for help on using the changeset viewer.