Changeset 2979522 for gdpr-cookie-compliance/trunk/moove-gdpr.php
- Timestamp:
- 10/16/2023 11:47:46 AM (2 years ago)
- File:
-
- 1 edited
-
gdpr-cookie-compliance/trunk/moove-gdpr.php (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
-
gdpr-cookie-compliance/trunk/moove-gdpr.php
r2961581 r2979522 5 5 * Plugin URI: https://wordpress.org/plugins/gdpr-cookie-compliance/ 6 6 * 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. 77 * Version: 4.12.8 8 8 * Author: Moove Agency 9 9 * Domain Path: /languages … … 19 19 } // Exit if accessed directly 20 20 21 define( 'MOOVE_GDPR_VERSION', '4.12. 7' );21 define( 'MOOVE_GDPR_VERSION', '4.12.8' ); 22 22 if ( ! defined( 'MOOVE_SHOP_URL' ) ) : 23 23 define( 'MOOVE_SHOP_URL', 'https://shop.mooveagency.com' ); … … 110 110 */ 111 111 function gdpr_cookie_compliance_load_libs() { 112 /**113 * Database Controller114 */115 include_once dirname( __FILE__ ) . DIRECTORY_SEPARATOR . 'controllers' . DIRECTORY_SEPARATOR . 'class-moove-gdpr-db-controller.php';116 112 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'; 121 122 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'; 130 127 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'; 135 136 136 /**137 * Options page138 */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'; 140 141 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'; 146 146 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; 156 163 }
Note: See TracChangeset
for help on using the changeset viewer.