Plugin Directory


Ignore:
Timestamp:
10/16/2023 11:47:46 AM (2 years ago)
Author:
MooveAgency
Message:

Version 4.12.8 released

Location:
gdpr-cookie-compliance
Files:
97 added
2 edited

Legend:

Unmodified
Added
Removed
  • gdpr-cookie-compliance/trunk/moove-gdpr.php

    r2961581 r2979522  
    55 *  Plugin URI: https://wordpress.org/plugins/gdpr-cookie-compliance/
    66 *  Description: Our plugin is useful in preparing your site for the following data protection and privacy regulations: GDPR, CCPA, PIPEDA, AAP, LGPD and others.
    7  *  Version: 4.12.7
     7 *  Version: 4.12.8
    88 *  Author: Moove Agency
    99 *  Domain Path: /languages
     
    1919} // Exit if accessed directly
    2020
    21 define( 'MOOVE_GDPR_VERSION', '4.12.7' );
     21define( 'MOOVE_GDPR_VERSION', '4.12.8' );
    2222if ( ! defined( 'MOOVE_SHOP_URL' ) ) :
    2323    define( 'MOOVE_SHOP_URL', 'https://shop.mooveagency.com' );
     
    110110 */
    111111function gdpr_cookie_compliance_load_libs() {
    112     /**
    113      * Database Controller
    114      */
    115     include_once dirname( __FILE__ ) . DIRECTORY_SEPARATOR . 'controllers' . DIRECTORY_SEPARATOR . 'class-moove-gdpr-db-controller.php';
    116112
    117     /**
    118      * View
    119      */
    120     include_once dirname( __FILE__ ) . DIRECTORY_SEPARATOR . 'class-gdpr-view.php';
     113    if ( current_user_can('edit_posts') && isset( $_GET['elementor-preview'] ) && intval( $_GET['elementor-preview'] ) ) :
     114        /**
     115         * Prevent loading the GDPR plugin in Elementor previews
     116         */
     117    else :
     118        /**
     119         * Database Controller
     120         */
     121        include_once dirname( __FILE__ ) . DIRECTORY_SEPARATOR . 'controllers' . DIRECTORY_SEPARATOR . 'class-moove-gdpr-db-controller.php';
    121122
    122     /**
    123      * Modules View
    124      */
    125     include_once dirname( __FILE__ ) . DIRECTORY_SEPARATOR . 'class-gdpr-modules-view.php';
    126     /**
    127      * Modules
    128      */
    129     include_once dirname( __FILE__ ) . DIRECTORY_SEPARATOR . 'class-gdpr-modules.php';
     123        /**
     124         * View
     125         */
     126        include_once dirname( __FILE__ ) . DIRECTORY_SEPARATOR . 'class-gdpr-view.php';
    130127
    131     /**
    132      * Content
    133      */
    134     include_once dirname( __FILE__ ) . DIRECTORY_SEPARATOR . 'class-moove-gdpr-content.php';
     128        /**
     129         * Modules View
     130         */
     131        include_once dirname( __FILE__ ) . DIRECTORY_SEPARATOR . 'class-gdpr-modules-view.php';
     132        /**
     133         * Modules
     134         */
     135        include_once dirname( __FILE__ ) . DIRECTORY_SEPARATOR . 'class-gdpr-modules.php';
    135136
    136     /**
    137      * Options page
    138     */
    139     include_once dirname( __FILE__ ) . DIRECTORY_SEPARATOR . 'class-moove-gdpr-options.php';
     137        /**
     138         * Content
     139        */
     140        include_once dirname( __FILE__ ) . DIRECTORY_SEPARATOR . 'class-moove-gdpr-content.php';
    140141
    141     /**
    142      * Controllers
    143      */
    144     include_once dirname( __FILE__ ) . DIRECTORY_SEPARATOR . 'controllers' . DIRECTORY_SEPARATOR . 'class-moove-gdpr-controller.php';
    145     include_once dirname( __FILE__ ) . DIRECTORY_SEPARATOR . 'controllers' . DIRECTORY_SEPARATOR . 'class-moove-gdpr-license-manager.php';
     142        /**
     143         * Options page
     144         */
     145        include_once dirname( __FILE__ ) . DIRECTORY_SEPARATOR . 'class-moove-gdpr-options.php';
    146146
    147     /**
    148      * Custom Functions
    149      */
    150     include_once dirname( __FILE__ ) . DIRECTORY_SEPARATOR . 'gdpr-functions.php';
    151    
    152     /**
    153      * Actions
    154      */
    155     include_once dirname( __FILE__ ) . DIRECTORY_SEPARATOR . 'class-moove-gdpr-actions.php';
     147        /**
     148         * Controllers
     149         */
     150        include_once dirname( __FILE__ ) . DIRECTORY_SEPARATOR . 'controllers' . DIRECTORY_SEPARATOR . 'class-moove-gdpr-controller.php';
     151        include_once dirname( __FILE__ ) . DIRECTORY_SEPARATOR . 'controllers' . DIRECTORY_SEPARATOR . 'class-moove-gdpr-license-manager.php';
     152
     153        /**
     154         * Custom Functions
     155         */
     156        include_once dirname( __FILE__ ) . DIRECTORY_SEPARATOR . 'gdpr-functions.php';
     157       
     158        /**
     159         * Actions
     160         */
     161        include_once dirname( __FILE__ ) . DIRECTORY_SEPARATOR . 'class-moove-gdpr-actions.php';
     162    endif;
    156163}
  • gdpr-cookie-compliance/trunk/readme.txt

    r2961581 r2979522  
    33Donate link: https://www.mooveagency.com/wordpress-plugins/gdpr-cookie-compliance/
    44Tags: GDPR, CCPA, DSGVO, cookie banner, cookie notice
    5 Stable tag: 4.12.7
     5Stable tag: 4.12.8
    66Requires at least: 4.5
    77Tested up to: 6.3
     
    277277
    278278== Changelog ==
     279= 4.12.8: 16 October 2023 =
     280* Restricted loading plugin to Elementor previews
     281
    279282= 4.12.7: 1 September 2023 =
    280283* Licence functions improved
Note: See TracChangeset for help on using the changeset viewer.