2019-12-18 13:12:32 +00:00
|
|
|
<?php
|
|
|
|
/**
|
|
|
|
* Plugin Name: WooCommerce Admin Important Notice Example
|
|
|
|
*
|
2020-08-11 19:18:47 +00:00
|
|
|
* @package WooCommerce\Admin
|
2019-12-18 13:12:32 +00:00
|
|
|
*/
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Register the JS.
|
|
|
|
*/
|
|
|
|
function wc_admin_important_notice_register_script() {
|
|
|
|
if ( ! class_exists( 'Automattic\WooCommerce\Admin\Loader' ) ) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (
|
|
|
|
! \Automattic\WooCommerce\Admin\Loader::is_admin_page() &&
|
|
|
|
! \Automattic\WooCommerce\Admin\Loader::is_embed_page()
|
|
|
|
) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
wp_register_script(
|
|
|
|
'wc-admin-important-notice',
|
|
|
|
plugins_url( '/dist/index.js', __FILE__ ),
|
|
|
|
array(
|
|
|
|
'wp-hooks',
|
|
|
|
),
|
|
|
|
filemtime( dirname( __FILE__ ) . '/dist/index.js' ),
|
|
|
|
true
|
|
|
|
);
|
|
|
|
|
|
|
|
wp_enqueue_script( 'wc-admin-important-notice' );
|
|
|
|
}
|
|
|
|
add_action( 'admin_enqueue_scripts', 'wc_admin_important_notice_register_script' );
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Create an Admin Notice we want to remain visible.
|
|
|
|
*/
|
|
|
|
function wc_admin_add_important_notice() {
|
|
|
|
?>
|
|
|
|
<div class="updated woocommerce-message">
|
|
|
|
<p class="notice-text">Important notice targeted by inspecting DOM.</p>
|
|
|
|
</div>
|
|
|
|
<div class="updated woocommerce-admin woocommerce-message">
|
|
|
|
<p>Impotant notice targeted by class.</p>
|
|
|
|
</div>
|
|
|
|
<div class="updated woocommerce-admin woocommerce-message ok-to-hide">
|
|
|
|
<p>Notice excluded from importance clause targeted by class.</p>
|
|
|
|
</div>
|
|
|
|
<div id="woocommerce-admin-important-notice" class="updated woocommerce-message">
|
|
|
|
<p>Important notice targeted by ID.</p>
|
|
|
|
</div>
|
|
|
|
<?php
|
|
|
|
}
|
|
|
|
add_action( 'admin_notices', 'wc_admin_add_important_notice' );
|