import ControlsGroup from "@/pages/settings/controls/ControlsGroup"; import Card, { CardContent, CardHeader } from "@/components/Card"; import { __ } from "@wordpress/i18n"; import CacheCompatibilityNotice from "./CacheCompatibilityNotice"; const W3TC = () => { const controls = [ { id: 'w3tc_purge', type: 'checkbox-group', label: __('Automatically purge the cache when', 'wp-cloudflare-page-cache'), controls: [{ id: 'cf_w3tc_purge_on_flush_all', type: 'checkbox', label: __('W3TC flushes all caches', 'wp-cloudflare-page-cache'), recommended: true, }, { id: 'cf_w3tc_purge_on_flush_dbcache', type: 'checkbox', label: __('W3TC flushes database cache', 'wp-cloudflare-page-cache'), }, { id: 'cf_w3tc_purge_on_flush_fragmentcache', type: 'checkbox', label: __('W3TC flushes fragment cache', 'wp-cloudflare-page-cache'), }, { id: 'cf_w3tc_purge_on_flush_objectcache', type: 'checkbox', label: __('W3TC flushes object cache', 'wp-cloudflare-page-cache'), }, { id: 'cf_w3tc_purge_on_flush_posts', type: 'checkbox', label: __('W3TC flushes posts cache', 'wp-cloudflare-page-cache'), }, { id: 'cf_w3tc_purge_on_flush_minfy', type: 'checkbox', label: __('W3TC flushes minify cache', 'wp-cloudflare-page-cache'), }] } ]; return (

{__('W3 Total Cache settings', 'wp-cloudflare-page-cache')}

); }; export default W3TC;