| 1 |
<?php |
| 2 |
if ( ! defined('ABSPATH') ) |
| 3 |
die(); |
| 4 |
|
| 5 |
use WebSharks\CometCache\Classes\ApiBase; |
| 6 |
function clearCometCacheIWP(){ |
| 7 |
$api = new ApiBase(); |
| 8 |
$plugin = $api->plugin(true); |
| 9 |
$response = $plugin->clearCache(true); |
| 10 |
if ($response === false) { |
| 11 |
return array('error' => 'Unable to perform Comet cache', 'error_code' => 'comet_cache_plugin_delete_cache'); |
| 12 |
} |
| 13 |
return array('success' => 'All cache files have been deleted'); |
| 14 |
} |