Automattic\WooCommerce\Internal\Admin\Schedulers
OrdersScheduler::get_total_imported
Get total number of rows imported.
Method of the class: OrdersScheduler{}
No Hooks.
Returns
null. Nothing (null).
Usage
$result = OrdersScheduler::get_total_imported();
OrdersScheduler::get_total_imported() OrdersScheduler::get total imported code WC 10.8.1
public static function get_total_imported() {
global $wpdb;
return $wpdb->get_var( "SELECT COUNT(*) FROM {$wpdb->prefix}wc_order_stats" );
}