action_scheduler_reset_action
Usage
add_action( 'action_scheduler_reset_action', 'wp_kama_action_scheduler_reset_action' ); /** * Function for `action_scheduler_reset_action` action-hook. * * @param $action_id * * @return void */ function wp_kama_action_scheduler_reset_action( $action_id ){ // action... }
- $action_id
- -
Where the hook is called
action_scheduler_reset_action
woocommerce/packages/action-scheduler/classes/ActionScheduler_QueueCleaner.php 193
do_action( 'action_scheduler_reset_action', $action_id );
Where the hook is used in WooCommerce
woocommerce/packages/action-scheduler/classes/abstracts/ActionScheduler_Logger.php 73
add_action( 'action_scheduler_reset_action', array( $this, 'log_reset_action' ), 10, 1 );