Automattic\WooCommerce\Utilities

OrderUtil::custom_orders_table_datastore_cache_enabled()public staticWC 1.0

Helper function to get whether custom order tables are enabled or not.

Method of the class: OrderUtil{}

No Hooks.

Return

true|false.

Usage

$result = OrderUtil::custom_orders_table_datastore_cache_enabled(): bool;

OrderUtil::custom_orders_table_datastore_cache_enabled() code WC 9.6.0

public static function custom_orders_table_datastore_cache_enabled(): bool {
	return wc_get_container()->get( CustomOrdersTableController::class )->hpos_data_caching_is_enabled();
}