adblock.php
2 years ago
error.php
1 year ago
info.php
1 year ago
inline.php
1 year ago
plugin_error.php
4 years ago
promo.php
1 year ago
starter-setup-success.php
1 year ago
subscribe.php
1 year ago
inline.php
23 lines
| 1 | <?php |
| 2 | /** |
| 3 | * Inline notice template. |
| 4 | * |
| 5 | * @package AdvancedAds |
| 6 | * |
| 7 | * @var string $_notice notice ID. |
| 8 | * @var string $text notice text. |
| 9 | * @var array $notice notice data (optional). |
| 10 | * @var string $box_classes additional classes (optional). |
| 11 | */ |
| 12 | |
| 13 | ?> |
| 14 | <div class="notice notice-info advads-admin-notice is-dismissible inline advads-notice-box <?php echo esc_attr( $box_classes ?? '' ); ?>" data-notice="<?php echo esc_attr( $_notice ); ?>"> |
| 15 | <div class="advads-notice-box_wrapper"> |
| 16 | <p><?php echo $text; // phpcs:ignore ?></p> |
| 17 | <button type="button" class="button-primary advads-notices-button-subscribe with-icon" data-notice="<?php echo esc_attr( $_notice ); ?>"> |
| 18 | <span class="dashicons dashicons-email-alt"></span> |
| 19 | <?php echo esc_html( $notice['confirm_text'] ?? __( 'Subscribe me now', 'advanced-ads' ) ); ?> |
| 20 | </button> |
| 21 | </div> |
| 22 | </div> |
| 23 |