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
error.php
19 lines
| 1 | <?php |
| 2 | /** |
| 3 | * Error notice template. |
| 4 | * |
| 5 | * @package AdvancedAds |
| 6 | * @author Advanced Ads <info@wpadvancedads.com> |
| 7 | * @since 1.x.x |
| 8 | * |
| 9 | * @var string $_notice Notice ID. |
| 10 | * @var string $text Notice text. |
| 11 | */ |
| 12 | |
| 13 | ?> |
| 14 | <div class="notice notice-error advads-notice advads-admin-notice is-dismissible" data-notice="<?php echo esc_attr( $_notice ); ?>"> |
| 15 | <p> |
| 16 | <?php echo wp_kses_post( $text ); ?> |
| 17 | </p> |
| 18 | </div> |
| 19 |