Changeset 3203639
- Timestamp:
- 12/06/2024 01:16:49 PM (16 months ago)
- Location:
- uniconsent-cmp
- Files:
-
- 4 edited
- 24 copied
-
tags/1.5.5 (copied) (copied from uniconsent-cmp/trunk)
-
tags/1.5.5/README.txt (copied) (copied from uniconsent-cmp/trunk/README.txt) (3 diffs)
-
tags/1.5.5/admin (copied) (copied from uniconsent-cmp/trunk/admin)
-
tags/1.5.5/admin/class-unic-admin-pages.php (copied) (copied from uniconsent-cmp/trunk/admin/class-unic-admin-pages.php) (2 diffs)
-
tags/1.5.5/admin/class-unic-values.php (copied) (copied from uniconsent-cmp/trunk/admin/class-unic-values.php)
-
tags/1.5.5/admin/images/unic-logo.png (copied) (copied from uniconsent-cmp/trunk/admin/images/unic-logo.png)
-
tags/1.5.5/admin/index.php (copied) (copied from uniconsent-cmp/trunk/admin/index.php)
-
tags/1.5.5/admin/partials/unic-cmp.php (copied) (copied from uniconsent-cmp/trunk/admin/partials/unic-cmp.php)
-
tags/1.5.5/composer.json (copied) (copied from uniconsent-cmp/trunk/composer.json)
-
tags/1.5.5/includes (copied) (copied from uniconsent-cmp/trunk/includes)
-
tags/1.5.5/includes/class-unic-activator.php (copied) (copied from uniconsent-cmp/trunk/includes/class-unic-activator.php)
-
tags/1.5.5/includes/class-unic-cmp.php (copied) (copied from uniconsent-cmp/trunk/includes/class-unic-cmp.php) (2 diffs)
-
tags/1.5.5/includes/class-unic-deactivator.php (copied) (copied from uniconsent-cmp/trunk/includes/class-unic-deactivator.php)
-
tags/1.5.5/includes/class-unic-i18n.php (copied) (copied from uniconsent-cmp/trunk/includes/class-unic-i18n.php)
-
tags/1.5.5/includes/class-unic-loader.php (copied) (copied from uniconsent-cmp/trunk/includes/class-unic-loader.php)
-
tags/1.5.5/includes/index.php (copied) (copied from uniconsent-cmp/trunk/includes/index.php)
-
tags/1.5.5/index.php (copied) (copied from uniconsent-cmp/trunk/index.php)
-
tags/1.5.5/languages (copied) (copied from uniconsent-cmp/trunk/languages)
-
tags/1.5.5/public (copied) (copied from uniconsent-cmp/trunk/public)
-
tags/1.5.5/public/class-unic-public.php (copied) (copied from uniconsent-cmp/trunk/public/class-unic-public.php)
-
tags/1.5.5/public/index.php (copied) (copied from uniconsent-cmp/trunk/public/index.php)
-
tags/1.5.5/public/js/unic.js (copied) (copied from uniconsent-cmp/trunk/public/js/unic.js)
-
tags/1.5.5/uniconsent-cmp.php (copied) (copied from uniconsent-cmp/trunk/uniconsent-cmp.php) (2 diffs)
-
tags/1.5.5/uninstall.php (copied) (copied from uniconsent-cmp/trunk/uninstall.php)
-
trunk/README.txt (modified) (3 diffs)
-
trunk/admin/class-unic-admin-pages.php (modified) (2 diffs)
-
trunk/includes/class-unic-cmp.php (modified) (2 diffs)
-
trunk/uniconsent-cmp.php (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
uniconsent-cmp/tags/1.5.5/README.txt
r3147308 r3203639 1 1 === UniConsent CMP for IAB TCF GPP Consent Mode === 2 Version: 1.5. 42 Version: 1.5.5 3 3 Contributors: uniconsent 4 4 Tags: cookies, cookie banner, gdpr, cpra, eprivacy, cookie consent, iab, cmp … … 6 6 Tested up to: 6.6 7 7 Requires PHP: 7.4 8 Stable tag: 1.5. 48 Stable tag: 1.5.5 9 9 10 10 == Description == … … 116 116 == Changelog == 117 117 118 119 = 1.5.5 = 120 * Optimize and improvements 121 118 122 = 1.5.3 = 119 123 * Improve Google Consent Mode -
uniconsent-cmp/tags/1.5.5/admin/class-unic-admin-pages.php
r3132690 r3203639 13 13 14 14 private $unic_license; 15 16 15 private $unic_options; 17 18 16 private $unic_values; 19 20 17 private $unic_language; 21 22 18 private $unic_company; 23 24 19 private $unic_logo; 25 26 20 private $unic_policy_url; 21 private $unic_language_default = 'en'; 27 22 28 23 public function __construct() { 29 24 30 25 $this->unic_values = new UNIC_Values(); 31 32 $this->unic_language_default = "en";33 26 $this->unic_language = esc_attr( get_option( 'unic_language' ) ); 34 27 … … 44 37 45 38 public function unic_admin_notice_license() { 46 47 39 $unic_enable_iab = get_option( 'unic_enable_iab'); 48 40 } -
uniconsent-cmp/tags/1.5.5/includes/class-unic-cmp.php
r3147308 r3203639 20 20 $this->version = UNIC_VERSION; 21 21 } else { 22 $this->version = '1.5. 4';22 $this->version = '1.5.5'; 23 23 } 24 24 $this->plugin_name = 'uniconsent-cmp'; … … 33 33 34 34 require_once plugin_dir_path( dirname( __FILE__ ) ) . 'includes/class-unic-loader.php'; 35 36 35 require_once plugin_dir_path( dirname( __FILE__ ) ) . 'includes/class-unic-i18n.php'; 37 38 36 require_once plugin_dir_path( dirname( __FILE__ ) ) . 'admin/class-unic-values.php'; 39 40 37 require_once plugin_dir_path( dirname( __FILE__ ) ) . 'admin/class-unic-admin-pages.php'; 41 42 38 require_once plugin_dir_path( dirname( __FILE__ ) ) . 'public/class-unic-public.php'; 43 44 39 $this->loader = new UNIC_Loader(); 45 40 -
uniconsent-cmp/tags/1.5.5/uniconsent-cmp.php
r3147308 r3203639 5 5 * Plugin URI: https://www.uniconsent.com/wordpress 6 6 * Description: UniConsent CMP implements the Google Consent Mode, IAB TCF 2.2, IAB GPP for GDPR Google Ad Manager/Prebid.js/Amazon APS and increase advertising revenue. 7 * Version: 1.5. 47 * Version: 1.5.5 8 8 * Author: UniConsent 9 9 * Author URI: https://www.uniconsent.com/ … … 15 15 } 16 16 17 define( 'UNIC_CMP_VERSION', '1.5. 4' );17 define( 'UNIC_CMP_VERSION', '1.5.5' ); 18 18 19 19 function activate_unic_cmp() { -
uniconsent-cmp/trunk/README.txt
r3147308 r3203639 1 1 === UniConsent CMP for IAB TCF GPP Consent Mode === 2 Version: 1.5. 42 Version: 1.5.5 3 3 Contributors: uniconsent 4 4 Tags: cookies, cookie banner, gdpr, cpra, eprivacy, cookie consent, iab, cmp … … 6 6 Tested up to: 6.6 7 7 Requires PHP: 7.4 8 Stable tag: 1.5. 48 Stable tag: 1.5.5 9 9 10 10 == Description == … … 116 116 == Changelog == 117 117 118 119 = 1.5.5 = 120 * Optimize and improvements 121 118 122 = 1.5.3 = 119 123 * Improve Google Consent Mode -
uniconsent-cmp/trunk/admin/class-unic-admin-pages.php
r3132690 r3203639 13 13 14 14 private $unic_license; 15 16 15 private $unic_options; 17 18 16 private $unic_values; 19 20 17 private $unic_language; 21 22 18 private $unic_company; 23 24 19 private $unic_logo; 25 26 20 private $unic_policy_url; 21 private $unic_language_default = 'en'; 27 22 28 23 public function __construct() { 29 24 30 25 $this->unic_values = new UNIC_Values(); 31 32 $this->unic_language_default = "en";33 26 $this->unic_language = esc_attr( get_option( 'unic_language' ) ); 34 27 … … 44 37 45 38 public function unic_admin_notice_license() { 46 47 39 $unic_enable_iab = get_option( 'unic_enable_iab'); 48 40 } -
uniconsent-cmp/trunk/includes/class-unic-cmp.php
r3147308 r3203639 20 20 $this->version = UNIC_VERSION; 21 21 } else { 22 $this->version = '1.5. 4';22 $this->version = '1.5.5'; 23 23 } 24 24 $this->plugin_name = 'uniconsent-cmp'; … … 33 33 34 34 require_once plugin_dir_path( dirname( __FILE__ ) ) . 'includes/class-unic-loader.php'; 35 36 35 require_once plugin_dir_path( dirname( __FILE__ ) ) . 'includes/class-unic-i18n.php'; 37 38 36 require_once plugin_dir_path( dirname( __FILE__ ) ) . 'admin/class-unic-values.php'; 39 40 37 require_once plugin_dir_path( dirname( __FILE__ ) ) . 'admin/class-unic-admin-pages.php'; 41 42 38 require_once plugin_dir_path( dirname( __FILE__ ) ) . 'public/class-unic-public.php'; 43 44 39 $this->loader = new UNIC_Loader(); 45 40 -
uniconsent-cmp/trunk/uniconsent-cmp.php
r3147308 r3203639 5 5 * Plugin URI: https://www.uniconsent.com/wordpress 6 6 * Description: UniConsent CMP implements the Google Consent Mode, IAB TCF 2.2, IAB GPP for GDPR Google Ad Manager/Prebid.js/Amazon APS and increase advertising revenue. 7 * Version: 1.5. 47 * Version: 1.5.5 8 8 * Author: UniConsent 9 9 * Author URI: https://www.uniconsent.com/ … … 15 15 } 16 16 17 define( 'UNIC_CMP_VERSION', '1.5. 4' );17 define( 'UNIC_CMP_VERSION', '1.5.5' ); 18 18 19 19 function activate_unic_cmp() {
Note: See TracChangeset
for help on using the changeset viewer.