Changeset 3250301
- Timestamp:
- 03/04/2025 10:33:09 AM (13 months ago)
- Location:
- cookie-notice-and-consent-banner/trunk
- Files:
-
- 3 edited
-
class-cncb-main.php (modified) (2 diffs)
-
includes/admin/class-cncb-admin.php (modified) (2 diffs)
-
readme.txt (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
cookie-notice-and-consent-banner/trunk/class-cncb-main.php
r3237944 r3250301 3 3 * Plugin Name: Cookie Notice and Consent Banner 4 4 * Description: Cookie Notice or Consent Banner as Required by Privacy Laws (GDPR & CCPA). Easily Customizable to Fit Your Design. 5 * Version: 1.7. 75 * Version: 1.7.8 6 6 * Author: GDPR 7 7 * Author URI: https://gdprinfo.eu … … 16 16 } 17 17 18 define( 'CNCB_VERSION', '1.7. 7' );18 define( 'CNCB_VERSION', '1.7.8' ); 19 19 define( 'CNCB_PREFIX', 'cncb' ); 20 20 define( 'CNCB_PATH', trailingslashit( plugin_dir_path( __FILE__ ) ) ); -
cookie-notice-and-consent-banner/trunk/includes/admin/class-cncb-admin.php
r2700054 r3250301 171 171 esc_html__( 'Cookie Consent', 'cookie-notice-and-consent-banner' ), 172 172 esc_html__( 'Cookie Consent', 'cookie-notice-and-consent-banner' ), 173 ' read',173 'manage_options', 174 174 $this->menu_slug, 175 175 array( $this, 'options_page' ), … … 177 177 $this->menu_pos 178 178 ); 179 180 add_submenu_page( 'cncb_options', '', '', 'manage_options', 'cncb_manage_options' ); 181 // phpcs:ignore WordPress.WP.GlobalVariablesOverride.OverrideProhibited 182 $submenu[ $this->menu_slug ][0][0] = esc_html__( 'Settings', 'cookie-notice-and-consent-banner' ); 183 // phpcs:ignore WordPress.WP.GlobalVariablesOverride.OverrideProhibited 184 $submenu[ $this->menu_slug ][1] = array( esc_html__( 'Customize Design', 'cookie-notice-and-consent-banner' ), 'manage_options', $this->get_customizer_panel_url() ); 185 } 179 180 if (current_user_can('manage_options')) { 181 add_submenu_page( 'cncb_options', '', '', 'manage_options', 'cncb_manage_options' ); 182 183 if (isset($submenu[$this->menu_slug])) { 184 // phpcs:ignore WordPress.WP.GlobalVariablesOverride.OverrideProhibited 185 $submenu[ $this->menu_slug ][0][0] = esc_html__( 'Settings', 'cookie-notice-and-consent-banner' ); 186 // phpcs:ignore WordPress.WP.GlobalVariablesOverride.OverrideProhibited 187 $submenu[ $this->menu_slug ][1] = array( esc_html__( 'Customize Design', 'cookie-notice-and-consent-banner' ), 'manage_options', $this->get_customizer_panel_url() ); 188 } 189 } 190 } 186 191 187 192 /** -
cookie-notice-and-consent-banner/trunk/readme.txt
r3237944 r3250301 6 6 Tags: Cookie, GDPR, CCPA, Compliance, Cookie Consent, Cookie Notice, Cookie banner, Privacy, Cookie Compliance, Law, Compliant 7 7 Requires at least: 5.0 8 Tested up to: 6.7. 18 Tested up to: 6.7.2 9 9 Stable tag: trunk 10 10 License: GPLv2 or later … … 35 35 36 36 == Changelog == 37 = 1.7.8 - 4. MAR 2025 = 38 * Fix: Undefined array key 2 in file when user role is author or editor 39 37 40 = 1.7.7 - 10. FEB 2025 = 38 41 * Fix: Issues with Dimensions & Space and Wizard sections
Note: See TracChangeset
for help on using the changeset viewer.