# sweeppress/3.2/forms/setup-cache.php

SweepPress: Website Cleanup and Optimization, version 3.2. 22 lines.

- Page: https://pluginprobe.com/plugins/sweeppress/3.2/code/forms/setup-cache.php
- Raw: https://pluginprobe.com/plugins/sweeppress/3.2/raw/forms/setup-cache.php
- Modified: 2023-09-25T11:17:54+00:00

Line numbers below start at 1. Link to a line or a range by appending a fragment to the
page URL, for example `https://pluginprobe.com/plugins/sweeppress/3.2/code/forms/setup-cache.php#L10-L20`.

```php
<?php

if ( ! defined( 'ABSPATH' ) ) {
	exit;
}

?>
<div class="d4p-install-block">
    <h4>
		<?php esc_html_e( 'Purge estimates cache', 'sweeppress' ); ?>
    </h4>
    <div>
		<?php

		sweeppress_settings()->purge_sweeper_cache();

		esc_html_e( 'Cached data has been purged.', 'sweeppress' );

		?>
    </div>
</div>

```
