lite-connect
10 months ago
settings
2 years ago
did-you-know.php
2 years ago
notice-bar.php
3 years ago
notice-bar.php
37 lines
| 1 | <?php |
| 2 | /** |
| 3 | * Admin/NoticeBar Education template for Lite. |
| 4 | * |
| 5 | * @since 1.6.6 |
| 6 | * |
| 7 | * @var string $upgrade_link Upgrade to Pro page URL. |
| 8 | */ |
| 9 | |
| 10 | if ( ! defined( 'ABSPATH' ) ) { |
| 11 | exit; |
| 12 | } |
| 13 | |
| 14 | ?> |
| 15 | <div id="wpforms-notice-bar" class="wpforms-dismiss-container"> |
| 16 | <span class="wpforms-notice-bar-message"> |
| 17 | <?php |
| 18 | printf( |
| 19 | wp_kses( |
| 20 | /* translators: %s - WPForms.com Upgrade page URL. */ |
| 21 | __( '<strong>You\'re using WPForms Lite.</strong> To unlock more features consider <a href="%s" target="_blank" rel="noopener noreferrer">upgrading to Pro</a> for 50%% off.', 'wpforms-lite' ), |
| 22 | [ |
| 23 | 'a' => [ |
| 24 | 'href' => [], |
| 25 | 'rel' => [], |
| 26 | 'target' => [], |
| 27 | ], |
| 28 | 'strong' => [], |
| 29 | ] |
| 30 | ), |
| 31 | esc_url( $upgrade_link ) |
| 32 | ); |
| 33 | ?> |
| 34 | </span> |
| 35 | <button type="button" class="wpforms-dismiss-button" title="<?php esc_attr_e( 'Dismiss this message.', 'wpforms-lite' ); ?>" data-section="admin-notice-bar"></button> |
| 36 | </div> |
| 37 |