action_scheduler/migration_batch_complete action-hookWC 1.0

Usage

add_action( 'action_scheduler/migration_batch_complete', 'wp_kama_action_scheduler_migration_batch_complete_action' );

/**
 * Function for `action_scheduler/migration_batch_complete` action-hook.
 * 
 * @param  $action_ids 
 *
 * @return void
 */
function wp_kama_action_scheduler_migration_batch_complete_action( $action_ids ){

	// action...
}
$action_ids
-

Where the hook is called

Runner::migrate_actions()
action_scheduler/migration_batch_complete
woocommerce/packages/action-scheduler/classes/migration/Runner.php 161
do_action( 'action_scheduler/migration_batch_complete', $action_ids ); // phpcs:ignore WordPress.NamingConventions.ValidHookName.UseUnderscores

Where the hook is used in WooCommerce

Usage not found.