notice.blade.php
20 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 | <?php if ($plugin == 'minify-html-markup') : ?> |
| 10 | <p><span class="iawp-message-text"><?php echo esc_html($notice_text); ?></span></p> |
| 11 | <?php else : ?> |
| 12 | <p><span class="iawp-message-text"><?php echo esc_html($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> |
| 13 | <?php endif; ?> |
| 14 | </div> |
| 15 | <?php if ($button_text) : ?> |
| 16 | <div> |
| 17 | <button class="iawp-button white dismiss-notice" data-notice-id="<?php echo esc_attr($id); ?>"><?php echo esc_html($button_text); ?></button> |
| 18 | </div> |
| 19 | <?php endif; ?> |
| 20 | </div> |