woothemes/woocommerce

View on GitHub
includes/admin/helper/views/html-section-notices.php

Summary

Maintainability
A
0 mins
Test Coverage
<?php defined( 'ABSPATH' ) or exit(); ?>

<?php foreach ( $notices as $notice ) : ?>
    <div class="notice <?php echo sanitize_html_class( $notice['type'] ); ?>">
        <?php echo wpautop( $notice['message'] ); ?>
    </div>
<?php endforeach; ?>