action_scheduler_canceled_action хук-событие . WC 1.0
Использование
add_action( 'action_scheduler_canceled_action', 'action_function_name_2085' ); function action_function_name_2085( $action_id ){ // action... }
- $action_id
- -
Где вызывается хук
action_scheduler_canceled_action
woocommerce/includes/libraries/action-scheduler/classes/ActionScheduler_wpPostStore.php 453
do_action( 'action_scheduler_canceled_action', $action_id );
Где используется хук (в ядре WC)
includes/libraries/action-scheduler/classes/ActionScheduler_Logger.php 50
add_action( 'action_scheduler_canceled_action', array( $this, 'log_canceled_action' ), 10, 1 );