action_scheduler_stored_action_class

action_scheduler_stored_action_class

Appears in: , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , ,
Hook Type: filter

See hook in core

Displaying hooks found in version: woocommerce.8.7.0

apply_filters('action_scheduler_stored_action_class') is found 1 times:

  • /packages/action-scheduler/classes/ActionScheduler_ActionFactory.php line 41
    				$action_class = 'ActionScheduler_FinishedAction';
    				break;
    		}
    
    		$action_class = apply_filters( 'action_scheduler_stored_action_class', $action_class, $status, $hook, $args, $schedule, $group );
    
    		$action = new $action_class( $hook, $args, $schedule, $group );
    		$action->set_priority( $priority );
    
    		/**
    		 * Allow 3rd party code to change the instantiated action for a given hook, args, schedule and group.