notice.blade.php
16 lines
| 1 | <?php if (!isset($plugin)) { |
| 2 | $plugin = ''; |
| 3 | } ?> |
| 4 | <div class="iawp-notice <?php echo esc_attr($notice) . ' ' . esc_attr($plugin); ?>" data-testid="<?php echo esc_attr($id); ?>"> |
| 5 | <div class="iawp-icon"> |
| 6 | <span class="dashicons dashicons-warning"></span> |
| 7 | </div> |
| 8 | <div class="iawp-message"> |
| 9 | <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> |
| 10 | </div> |
| 11 | <?php if ($button_text) : ?> |
| 12 | <div> |
| 13 | <button class="iawp-button white dismiss-notice" data-notice-id="<?php echo esc_attr($id); ?>"><?php echo esc_html($button_text); ?></button> |
| 14 | </div> |
| 15 | <?php endif; ?> |
| 16 | </div> |