Automattic\WooCommerce\Utilities
OrderUtil::custom_orders_table_usage_is_enabled
Helper function to get whether custom order tables are enabled or not.
Method of the class: OrderUtil{}
No Hooks.
Returns
true|false.
Usage
$result = OrderUtil::custom_orders_table_usage_is_enabled(): bool;
OrderUtil::custom_orders_table_usage_is_enabled() OrderUtil::custom orders table usage is enabled code WC 10.6.2
public static function custom_orders_table_usage_is_enabled(): bool {
return wc_get_container()->get( CustomOrdersTableController::class )->custom_orders_table_usage_is_enabled();
}