Plugin Directory


Ignore:
Timestamp:
07/05/2022 10:23:42 AM (4 years ago)
Author:
MooveAgency
Message:

Version 4.8.9 released

Location:
gdpr-cookie-compliance
Files:
95 added
5 edited

Legend:

Unmodified
Added
Removed
  • gdpr-cookie-compliance/trunk/gdpr-modules/infobar/floating-button.php

    r2721723 r2752045  
    77<?php if ( $content->is_enabled ) : ?>
    88  <!--copyscapeskip-->
    9   <button data-href="#moove_gdpr_cookie_modal" tabindex="1" id="moove_gdpr_save_popup_settings_button" style='<?php echo $content->styles; ?>' class="<?php echo $content->class; ?>" aria-label="<?php echo $content->label; ?>">
     9  <button data-href="#moove_gdpr_cookie_modal" <?php echo apply_filters('gdpr_tabindex_attribute', '', 1 ); ?> id="moove_gdpr_save_popup_settings_button" style='<?php echo $content->styles; ?>' class="<?php echo $content->class; ?>" aria-label="<?php echo $content->label; ?>">
    1010    <span class="moove_gdpr_icon">
    1111        <svg viewBox="0 0 512 512" xmlns="http://www.w3.org/2000/svg" style="max-width: 30px; max-height: 30px;">
  • gdpr-cookie-compliance/trunk/gdpr-modules/infobar/infobar-buttons.php

    r2721723 r2752045  
    77<div class="moove-gdpr-button-holder">
    88    <?php if ( isset( $content->has_accept ) && $content->has_accept ) : ?>
    9       <button class="mgbutton moove-gdpr-infobar-allow-all <?php echo isset( $content->accept_order ) ? 'gdpr-fbo-' . $content->accept_order : ''; ?>" aria-label="<?php echo $content->button_label; ?>" tabindex="1" role="button"><?php echo $content->button_label; ?></button>
     9      <button class="mgbutton moove-gdpr-infobar-allow-all <?php echo isset( $content->accept_order ) ? 'gdpr-fbo-' . $content->accept_order : ''; ?>" aria-label="<?php echo $content->button_label; ?>" <?php echo apply_filters('gdpr_tabindex_attribute', '', 1 ); ?> role="button"><?php echo $content->button_label; ?></button>
    1010    <?php endif; ?>
    1111  <?php do_action( 'gdpr_info_bar_button_extensions' ); ?>
  • gdpr-cookie-compliance/trunk/moove-gdpr.php

    r2749639 r2752045  
    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.8.8
     7 *  Version: 4.8.9
    88 *  Author: Moove Agency
    99 *  Domain Path: /languages
     
    1919} // Exit if accessed directly
    2020
    21 define( 'MOOVE_GDPR_VERSION', '4.8.8' );
     21define( 'MOOVE_GDPR_VERSION', '4.8.9' );
    2222if ( ! defined( 'MOOVE_SHOP_URL' ) ) :
    2323    define( 'MOOVE_SHOP_URL', 'https://shop.mooveagency.com' );
  • gdpr-cookie-compliance/trunk/readme.txt

    r2749654 r2752045  
    33Donate link: https://www.mooveagency.com/wordpress-plugins/gdpr-cookie-compliance/
    44Tags: GDPR, CCPA, cookie banner, cookie law, cookie consent, cookie notice, dsgvo, rgpd
    5 Stable tag: 4.8.8
     5Stable tag: 4.8.9
    66Requires at least: 4.5
    77Tested up to: 6.0
     
    276276
    277277== Changelog ==
     278= 4.8.9: 05 June 2022 =
     279* Tabindex filter implemented, snippet added to Documentation
     280
    278281= 4.8.8: 29 June 2022 =
    279282* DB queries optimized
  • gdpr-cookie-compliance/trunk/views/moove/admin/settings/help.php

    r2700453 r2752045  
    786786        </div>
    787787        <!--  .gdpr-faq-toggle -->
     788
     789        <div class="gdpr-faq-toggle">
     790            <div class="gdpr-faq-accordion-header">
     791                <h3><?php esc_html_e( 'Disable tabindex attribute for buttons', 'gdpr-cookie-compliance' ); ?></h3>
     792            </div>
     793            <div class="gdpr-faq-accordion-content" >
     794                <?php ob_start(); ?>
     795                add_filter('gdpr_tabindex_attribute', '__return_empty_string' );
     796                <?php $code = trim( ob_get_clean() ); ?>
     797                <textarea id="<?php echo esc_attr( uniqid( strtotime( 'now' ) ) ); ?>"><?php apply_filters( 'gdpr_cc_keephtml', $code, true ); ?></textarea>
     798                <div class="gdpr-code"></div><!--  .gdpr-code -->
     799            </div>
     800            <!--  .gdpr-faq-accordion-content -->
     801        </div>
     802        <!--  .gdpr-faq-toggle --> 
    788803
    789804        <div class="gdpr-faq-toggle">
Note: See TracChangeset for help on using the changeset viewer.