notice.blade.php
13 lines
| 1 | <div class="iawp-notice <?php echo esc_attr($notice); ?>" data-testid="{{ esc_attr($id) }}"> |
| 2 | <div class="iawp-icon"> |
| 3 | <span class="dashicons dashicons-warning"></span> |
| 4 | </div> |
| 5 | <div class="iawp-message"> |
| 6 | <p><span class="iawp-message-text"><?php echo wp_kses_post($notice_text); ?></span> <a href="<?php echo esc_url($url); ?>" class="link-white" target="_blank"><?php esc_html_e('Learn More', 'independent-analytics'); ?></a></p> |
| 7 | </div> |
| 8 | <?php if ($button_text) : ?> |
| 9 | <div> |
| 10 | <button class="iawp-button white dismiss-notice" data-notice-id="{{ esc_attr($id) }}"><?php echo esc_html($button_text); ?></button> |
| 11 | </div> |
| 12 | <?php endif; ?> |
| 13 | </div> |