pre_as_schedule_single_action

pre_as_schedule_single_action

Hook Type: filter

See hook in core

Displaying hooks found in version: woocommerce.7.4.1

apply_filters('pre_as_schedule_single_action') is found 1 times:

  • /packages/action-scheduler/functions.php line 76
    	 * @param string   $hook       Action hook.
    	 * @param array    $args       Action arguments.
    	 * @param string   $group      Action group.
    	 */
    	$pre = apply_filters( 'pre_as_schedule_single_action', null, $timestamp, $hook, $args, $group );
    	if ( null !== $pre ) {
    		return is_int( $pre ) ? $pre : 0;
    	}
    
    	return ActionScheduler::factory()->single_unique( $hook, $args, $timestamp, $group, $unique );
    }