| Current Path : /home/ereika83/public_html/wp-content/plugins/wp-rocket/inc/vendors/CloudFlare/Zone/ |
| Current File : /home/ereika83/public_html/wp-content/plugins/wp-rocket/inc/vendors/CloudFlare/Zone/Cache.php |
<?php
namespace Cloudflare\Zone;
use Cloudflare\Api;
/**
* CloudFlare API wrapper
*
* Cache
*
* @author James Bell <james@james-bell.co.uk>
*
* @version 1
*/
class Cache extends Api
{
/**
* Purge all files (permission needed: #zone:edit)
* Remove ALL files from CloudFlare's cache
*
* @param string $identifier API item identifier tag
* @param bool|null $purge_everything A flag that indicates all resources in CloudFlare's cache should be removed.
* Note: This may have dramatic affects on your origin server load after performing this action. (true)
*/
public function purge($identifier, $purge_everything = null)
{
$data = [
'purge_everything' => $purge_everything,
];
return $this->delete('zones/'.$identifier.'/purge_cache', $data);
}
/**
* Purge individual files (permission needed: #zone:edit)
* Remove one or more files from CloudFlare's cache
*
* @param string $identifier API item identifier tag
* @param array|null $files An array of URLs that should be removed from cache
* @param array|null $tags Any assets served with a Cache-Tag header that matches one of the provided values will be purged from the CloudFlare cache
*/
public function purge_files($identifier, array $files = null, array $tags = null)
{
$data = [
'files' => $files,
'tags' => $tags,
];
return $this->delete('zones/'.$identifier.'/purge_cache', $data);
}
}