Automattic\WooCommerce\Internal\DataStores\Orders

CustomOrdersTableController::hpos_data_caching_is_enabled()publicWC 1.0

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() 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();
}