action_scheduler_admin_notice_html filter-hookWC 1.0

Usage

add_filter( 'action_scheduler_admin_notice_html', 'wp_kama_action_scheduler_admin_notice_html_filter', 10, 3 );

/**
 * Function for `action_scheduler_admin_notice_html` filter-hook.
 * 
 * @param  $action_message_html 
 * @param  $action              
 * @param  $notification        
 *
 * @return 
 */
function wp_kama_action_scheduler_admin_notice_html_filter( $action_message_html, $action, $notification ){

	// filter...
	return $action_message_html;
}
$action_message_html
-
$action
-
$notification
-

Where the hook is called

ActionScheduler_ListTable::display_admin_notices()
action_scheduler_admin_notice_html
woocommerce/packages/action-scheduler/classes/ActionScheduler_ListTable.php 438
$action_message_html = apply_filters( 'action_scheduler_admin_notice_html', $action_message_html, $action, $notification );

Where the hook is used in WooCommerce

Usage not found.