action_scheduler_lock_class filter-hookWC 1.0

Usage

add_filter( 'action_scheduler_lock_class', 'wp_kama_action_scheduler_lock_class_filter' );

/**
 * Function for `action_scheduler_lock_class` filter-hook.
 * 
 * @param  $string 
 *
 * @return 
 */
function wp_kama_action_scheduler_lock_class_filter( $string ){

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

Where the hook is called

ActionScheduler_Lock::instance()
action_scheduler_lock_class
woocommerce/packages/action-scheduler/classes/abstracts/ActionScheduler_Lock.php 59
$class = apply_filters( 'action_scheduler_lock_class', 'ActionScheduler_OptionLock' );

Where the hook is used in WooCommerce

Usage not found.