action_scheduler_failed_action
Использование
add_action( 'action_scheduler_failed_action', 'wp_kama_action_scheduler_failed_action', 10, 2 ); /** * Function for `action_scheduler_failed_action` action-hook. * * @param $action_id * @param $timeout * * @return void */ function wp_kama_action_scheduler_failed_action( $action_id, $timeout ){ // action... }
- $action_id
- -
- $timeout
- -
Где вызывается хук
action_scheduler_failed_action
woocommerce/packages/action-scheduler/classes/ActionScheduler_QueueCleaner.php 204
do_action( 'action_scheduler_failed_action', $action_id, $timeout );
Где используется хук в WooCommerce
woocommerce/packages/action-scheduler/classes/abstracts/ActionScheduler_Logger.php 66
add_action( 'action_scheduler_failed_action', array( $this, 'log_timed_out_action' ), 10, 2 );