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 |