PluginProbe ʕ •ᴥ•ʔ
CookieYes – Cookie Banner for Cookie Consent (Easy to setup GDPR/CCPA Compliant Cookie Notice) / 3.5.0
CookieYes – Cookie Banner for Cookie Consent (Easy to setup GDPR/CCPA Compliant Cookie Notice) v3.5.0
3.5.1 3.5.0 3.4.2 trunk 1.0.1 1.0.3 1.2 1.2.1 1.2.2 1.3 1.3.1 1.3.2 1.4 1.4.1 1.4.2 1.4.3 1.5 1.5.1 1.5.2 1.5.3 1.5.4 1.5.5 1.5.6 1.5.7 1.5.8 1.5.9 1.6.0 1.6.1 1.6.10 1.6.2 1.6.3 1.6.4 1.6.5 1.6.6 1.6.7 1.6.8 1.6.9 1.7.0 1.7.1 1.7.2 1.7.3 1.7.4 1.7.5 1.7.6 1.7.7 1.7.8 1.7.9 1.8.0 1.8.1 1.8.2 1.8.3 1.8.4 1.8.5 1.8.6 1.8.7 1.8.8 1.8.9 1.9.0 1.9.1 1.9.2 1.9.3 1.9.4 1.9.5 2.0.0 2.0.1 2.0.2 2.0.3 2.0.4 2.0.5 2.0.6 2.0.7 2.0.8 2.0.9 2.1.0 2.1.1 2.1.2 2.1.3 3.0.0 3.0.1 3.0.2 3.0.3 3.0.4 3.0.5 3.0.6 3.0.7 3.0.8 3.0.9 3.1.0 3.1.1 3.1.2 3.1.3 3.1.4 3.1.5 3.1.6 3.1.7 3.1.8 3.2.0 3.2.1 3.2.10 3.2.2 3.2.3 3.2.4 3.2.5 3.2.6 3.2.7 3.2.8 3.2.9 3.3.0 3.3.1 3.3.2 3.3.3 3.3.4 3.3.5 3.3.6 3.3.7 3.3.8 3.3.9 3.3.9.1 3.4.0 3.4.1
cookie-law-info / legacy / admin / partials / wt-cli-update-banner.php
cookie-law-info / legacy / admin / partials Last commit date
cookie-law-info-admin_settings.php 2 weeks ago cookie-law-info-privacy_overview.php 2 weeks ago wt-cli-update-banner.php 2 weeks ago wt-cli-update-modals.php 2 weeks ago
wt-cli-update-banner.php
22 lines
1 <?php
2 // If this file is called directly, abort.
3 if ( ! defined( 'WPINC' ) ) {
4 die;
5 }
6 $cli_uf_img = CLI_PLUGIN_URL . 'admin/images/upgrade-flow/';
7 ?>
8 <div class="wt-cli-update-banner">
9 <div class="wt-cli-update-banner-icon">
10 <img src="<?php echo esc_url( $cli_uf_img . 'icon-warning-circle.svg' ); ?>" width="32" height="32" alt="">
11 </div>
12 <div class="wt-cli-update-banner-content">
13 <p class="wt-cli-update-banner-title"><?php echo esc_html__( 'Your cookie banner is outdated, a new version is available!', 'cookie-law-info' ); ?></p>
14 <p class="wt-cli-update-banner-desc">
15 <?php echo esc_html__( 'Upgrade now for better performance, easier customisations, and continued compliance support. Revert anytime within 14 days.', 'cookie-law-info' ); ?>
16 </p>
17 </div>
18 <button type="button" class="wt-cli-update-banner-btn" data-cli-open-modal="cli-modal-1">
19 <?php echo esc_html__( 'Review & update', 'cookie-law-info' ); ?>
20 </button>
21 </div>
22