Automattic\WooCommerce\Internal\Utilities
COTMigrationUtil::is_custom_order_tables_in_sync()
Checks if posts and order custom table sync is enabled and there are no pending orders.
Метод класса: COTMigrationUtil{}
Хуков нет.
Возвращает
true|false
.
Использование
$COTMigrationUtil = new COTMigrationUtil(); $COTMigrationUtil->is_custom_order_tables_in_sync() : bool;
Код COTMigrationUtil::is_custom_order_tables_in_sync() COTMigrationUtil::is custom order tables in sync WC 8.1.1
public function is_custom_order_tables_in_sync() : bool { $sync_status = $this->data_synchronizer->get_sync_status(); return 0 === $sync_status['current_pending_count'] && $this->data_synchronizer->data_sync_is_enabled(); }