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
subscribe.php
21 lines
| 1 | <?php |
| 2 | /** |
| 3 | * Subscribe 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 | */ |
| 11 | |
| 12 | ?> |
| 13 | <div class="notice notice-info advads-admin-notice is-dismissible" data-notice="<?php echo esc_attr( $_notice ); ?>"> |
| 14 | <div class="advads-notice-box_wrapper"> |
| 15 | <p><?php echo $text; // phpcs:ignore ?></p> |
| 16 | <button type="button" class="button-primary advads-notices-button-subscribe" data-notice="<?php echo esc_attr( $_notice ); ?>"> |
| 17 | <?php echo esc_html( $notice['confirm_text'] ?? __( 'Subscribe me now', 'advanced-ads' ) ); ?> |
| 18 | </button> |
| 19 | </div> |
| 20 | </div> |
| 21 |