| 1 |
<div class="notice notice-<?php echo esc_attr($notice['type']) ?> is-dismissible" style="clear:both;"> |
| 2 |
<?php echo wp_kses_post($notice['content']) ?> |
| 3 |
<div style="clear:both;"></div> |
| 4 |
</div> |
| 5 |
<?php if ('' != $ajax_link) : ?> |
| 6 |
<script> |
| 7 |
jQuery(document).ready(function(){ |
| 8 |
jQuery("#tag_groups_premium_clear_cache").on('click', function(){ |
| 9 |
jQuery("#tag_groups_premium_clear_cache").attr("disabled", "disabled"); |
| 10 |
jQuery.ajax({ |
| 11 |
url: "<?php echo esc_url($ajax_link) ?>", |
| 12 |
data: { |
| 13 |
action: "tg_ajax_clear_object_cache", |
| 14 |
}, |
| 15 |
success: function( data ) { |
| 16 |
jQuery("#tag_groups_premium_clear_cache").replaceWith("<span class=\'dashicons dashicons-yes\'></span>"); |
| 17 |
} |
| 18 |
}); |
| 19 |
}); |
| 20 |
}); |
| 21 |
</script> |
| 22 |
<?php endif; ?> |
| 23 |
|