action_scheduler/progress_tick action-hook . WC 1.0
Usage
add_action( 'action_scheduler/progress_tick', 'action_function_name_9432' ); function action_function_name_9432( $total_ticks ){ // action... }
- $total_ticks
- -
Where the hook is called
action_scheduler/progress_tick
woocommerce/packages/action-scheduler/classes/WP_CLI/ProgressBar.php 67
do_action( 'action_scheduler/progress_tick', $this->total_ticks );
Where in WP core the hook is used WooCommerce
woocommerce/packages/action-scheduler/classes/ActionScheduler_DataController.php 174
add_action( 'action_scheduler/progress_tick', array( 'ActionScheduler_DataController', 'maybe_free_memory' ) );