action_scheduler_pastdue_actions_check_pre хук-фильтрWC 1.0

Использование

add_filter( 'action_scheduler_pastdue_actions_check_pre', 'wp_kama_action_scheduler_pastdue_actions_check_pre_filter' );

/**
 * Function for `action_scheduler_pastdue_actions_check_pre` filter-hook.
 * 
 * @param  $null 
 *
 * @return 
 */
function wp_kama_action_scheduler_pastdue_actions_check_pre_filter( $null ){

	// filter...
	return $null;
}
$null
-

Где вызывается хук

ActionScheduler_AdminView::check_pastdue_actions()
action_scheduler_pastdue_actions_check_pre
woocommerce/packages/action-scheduler/classes/ActionScheduler_AdminView.php 154
$check = apply_filters( 'action_scheduler_pastdue_actions_check_pre', null );

Где используется хук в WooCommerce

Использование не найдено.