Plugin Directory

Changeset 3121607


Ignore:
Timestamp:
07/18/2024 03:58:41 PM (21 months ago)
Author:
iubenda
Message:

Tagging Beta

Location:
iubenda-cookie-law-solution/tags/beta
Files:
3 added
3 edited

Legend:

Unmodified
Added
Removed
  • iubenda-cookie-law-solution/tags/beta/includes/class-iubenda-forms.php

    r3075491 r3121607  
    1212
    1313/**
    14  * Iubenda_Forms class.
     14 * Iubenda Forms Handler.
    1515 *
    16  * @class Iubenda_Forms
     16 * Handles various integrations and functionality for Iubenda forms.
     17 *
     18 * @package Iubenda
    1719 */
    1820class Iubenda_Forms {
     
    3335
    3436    /**
     37     * Iubenda WooCommerce Form Consent class.
     38     *
     39     * @var WooCommerce_Form_Consent
     40     */
     41    public $woocommerce_form_consent;
     42
     43    /**
    3544     * Class constructor.
    3645     */
    3746    public function __construct() {
     47        // Initialize WooCommerce Form Consent.
     48        $this->woocommerce_form_consent = new WooCommerce_Form_Consent();
     49
    3850        // actions.
    3951        add_action( 'plugins_loaded', array( $this, 'init' ) );
     
    4153        add_action( 'init', array( $this, 'register_post_status' ) );
    4254        add_action( 'wp_enqueue_scripts', array( $this, 'wp_enqueue_scripts' ) );
     55
    4356        // Save cons for non ajax forms.
    4457        add_action( 'wpforms_process_complete', array( $this, 'process_entry_for_wp_forms' ), 10, 2 );
     58
     59        // Modify WooCommerce checkbox attributes for integration with MailChimp.
    4560        add_filter( 'mc4wp_integration_woocommerce_checkbox_attributes', array( $this, 'mc4wp_integration_woocommerce_checkbox_attributes' ) );
    4661    }
  • iubenda-cookie-law-solution/tags/beta/iubenda_cookie_solution.php

    r3102847 r3121607  
    44 * Plugin URI: https://www.iubenda.com
    55 * Description: The iubenda plugin is an <strong>all-in-one</strong>, extremely easy to use 360° compliance solution, with text crafted by actual lawyers, that quickly <strong>scans your site and auto-configures to match your specific setup</strong>.  It supports the GDPR (DSGVO, RGPD), UK-GDPR, ePrivacy, LGPD, USPR, CalOPPA, PECR and more.
    6  * Version: 3.10.5
     6 * Version: 3.10.6
    77 * Author: iubenda
    88 * Author URI: https://www.iubenda.com
     
    4646 *
    4747 * @class   iubenda
    48  * @version 3.10.5
     48 * @version 3.10.6
    4949 */
    5050class iubenda {
     
    139139     * @var string
    140140     */
    141     public $version = '3.10.5';
     141    public $version = '3.10.6';
    142142
    143143    /**
     
    558558        include_once IUBENDA_PLUGIN_PATH . 'includes/class-sync-script-appender.php';
    559559        include_once IUBENDA_PLUGIN_PATH . 'includes/class-radar-dashboard-widget.php';
     560        include_once IUBENDA_PLUGIN_PATH . 'integrations/cons/class-woocommerce-form-consent.php';
    560561    }
    561562
  • iubenda-cookie-law-solution/tags/beta/readme.txt

    r3100111 r3121607  
    66Requires PHP: 7.0.0
    77Tested up to: 6.5
    8 Stable tag: 3.10.5
     8Stable tag: 3.10.6
    99License: MIT License
    1010License URI: http://opensource.org/licenses/MIT
     
    267267== Changelog ==
    268268
     269= 3.10.6 =
     270* Fixed: Consents not sent with WooCommerce checkout blocks in version 8.3+.
     271* Fixed: Duplicate CS Configuration echo on multiple wp_enqueue_scripts calls
     272
    269273= 3.10.5 =
    270274* Fixed: special character encoding in configuration script
     
    870874== Upgrade Notice ==
    871875
    872 = 3.10.5 =
    873 * Fixed: special character encoding in configuration script
    874 * Update outdated product names.
     876= 3.10.6 =
     877* Fixed: Consents not sent with WooCommerce checkout blocks in version 8.3+.
     878* Fixed: Duplicate CS Configuration echo on multiple wp_enqueue_scripts calls
Note: See TracChangeset for help on using the changeset viewer.