| 1 |
<?php |
| 2 |
/** |
| 3 |
* Admin View: Custom Notices |
| 4 |
* |
| 5 |
* @package EverestForms\Admin\Notice |
| 6 |
*/ |
| 7 |
|
| 8 |
defined( 'ABSPATH' ) || exit; |
| 9 |
|
| 10 |
?> |
| 11 |
<div id="message" class="updated everest-forms-message"> |
| 12 |
<a class="everest-forms-message-close notice-dismiss" href="<?php echo esc_url( wp_nonce_url( add_query_arg( 'evf-hide-notice', $notice ), 'everest_forms_hide_notices_nonce', '_evf_notice_nonce' ) ); ?>"><?php esc_html_e( 'Dismiss', 'everest-forms' ); ?></a> |
| 13 |
|
| 14 |
<?php echo wp_kses_post( wpautop( $notice_html ) ); ?> |
| 15 |
</div> |
| 16 |
|