Automattic\WooCommerce\Internal\DataStores\Orders
CustomOrdersTableController::hpos_data_caching_is_enabled()
Is caching of data within the CustomerOrdersTable datastores enabled?
Метод класса: CustomOrdersTableController{}
Хуков нет.
Возвращает
true|false
. True if the caching is enabled within the CustomeOrderTable Datastores.
Использование
$CustomOrdersTableController = new CustomOrdersTableController(); $CustomOrdersTableController->hpos_data_caching_is_enabled(): bool;
Код CustomOrdersTableController::hpos_data_caching_is_enabled() CustomOrdersTableController::hpos data caching is enabled WC 9.7.1
public function hpos_data_caching_is_enabled(): bool { return get_option( self::HPOS_DATASTORE_CACHING_ENABLED_OPTION ) === 'yes' && $this->custom_orders_table_usage_is_enabled(); }