action_scheduler/progress_tick
Использование
add_action( 'action_scheduler/progress_tick', 'wp_kama_action_scheduler_progress_tick_action' ); /** * Function for `action_scheduler/progress_tick` action-hook. * * @param $total_ticks * * @return void */ function wp_kama_action_scheduler_progress_tick_action( $total_ticks ){ // action... }
- $total_ticks
- -
Где вызывается хук
action_scheduler/progress_tick
woocommerce/packages/action-scheduler/classes/WP_CLI/ProgressBar.php 67
do_action( 'action_scheduler/progress_tick', $this->total_ticks );
Где используется хук в WooCommerce
woocommerce/packages/action-scheduler/classes/ActionScheduler_DataController.php 174
add_action( 'action_scheduler/progress_tick', array( 'ActionScheduler_DataController', 'maybe_free_memory' ) );