PATH:
home
/
thecwrif
/
public_html
/
wp-content
/
plugins
/
w3-total-cache
<?php /** * File: Cdn_BunnyCdn_Api.php * * @since 2.6.0 * @package W3TC */ namespace W3TC; /** * Class: Cdn_BunnyCdn_Api * * @since 2.6.0 */ class Cdn_BunnyCdn_Api { /** * Account API Key. * * @since 2.6.0 * @access private * * @var string */ private $account_api_key; /** * Storage API Key. * * @since 2.6.0 * @access private * * @var string */ private $storage_api_key; /** * Stream API Key. * * @since 2.6.0 * @access private * * @var string */ private $stream_api_key; /** * API type. * * One of: "account", "storage", "stream". * * @since 2.6.0 * @access private * * @var string */ private $api_type; /** * Pull zone id. * * @since 2.6.0 * @access private * * @var int */ private $pull_zone_id; /** * Default Edge Rules. * * @since 2.6.0 * @access private * @static * * @var array */ private static $default_edge_rules = array( array( 'ActionType' => 15, // BypassPermaCache. 'TriggerMatchingType' => 0, // MatchAny. 'Enabled' => true, 'Triggers' => array( array( 'Type' => 3, // UrlExtension. 'PatternMatchingType' => 0, // MatchAny. 'PatternMatches' => array( '.zip' ), ), ), 'Description' => 'Bypass PermaCache for ZIP files', ), array( 'ActionType' => 3, // OverrideCacheTime. 'TriggerMatchingType' => 0, // MatchAny. 'ActionParameter1' => '0', 'ActionParameter2' => '', 'Enabled' => true, 'Triggers' => array( array( 'Type' => 1, // RequestHeader. 'PatternMatchingType' => 0, // MatchAny. 'PatternMatches' => array( '*wordpress_logged_in_*', '*wordpress_sec_*', ), 'Parameter1' => 'Cookie', ), ), 'Description' => 'Override Cache Time if logged into WordPress', ), array( 'ActionType' => 15, // BypassPermaCache. 'TriggerMatchingType' => 0, // MatchAny. 'Enabled' => true, 'Triggers' => array( array( 'Type' => 1, // RequestHeader. 'PatternMatchingType' => 0, // MatchAny. 'PatternMatches' => array( '*wordpress_logged_in_*', '*wordpress_sec_*', ), 'Parameter1' => 'Cookie', ), ), 'Description' => 'Bypass PermaCache if logged into WordPress', ), array( 'ActionType' => 16, // OverrideBrowserCacheTime. 'TriggerMatchingType' => 0, // MatchAny. 'ActionParameter1' => '0', 'Enabled' => true, 'Triggers' => array( array( 'Type' => 1, // RequestHeader. 'PatternMatchingType' => 0, // MatchAny. 'PatternMatches' => array( '*wordpress_logged_in_*', '*wordpress_sec_*', ), 'Parameter1' => 'Cookie', ), ), 'Description' => 'Override Browser Cache Time if logged into WordPress', ), ); /** * Constructor. * * @since 2.6.0 * * @param array $config Configuration. */ public function __construct( array $config ) { $this->account_api_key = ! empty( $config['account_api_key'] ) ? $config['account_api_key'] : ''; $this->storage_api_key = ! empty( $config['storage_api_key'] ) ? $config['storage_api_key'] : ''; $this->stream_api_key = ! empty( $config['stream_api_key'] ) ? $config['stream_api_key'] : ''; $this->pull_zone_id = ! empty( $config['pull_zone_id'] ) ? $config['pull_zone_id'] : ''; } /** * Increase http request timeout to 60 seconds. * * @since 2.6.0 * * @param int $time Timeout in seconds. */ public function filter_timeout_time( $time ) { return 600; } /** * Don't check certificate, some users have limited CA list * * @since 2.6.0 * * @param bool $verify Always false. */ public function https_ssl_verify( $verify = false ) { return false; } /** * List pull zones. * * @since 2.6.0 * * @link https://docs.bunny.net/reference/pullzonepublic_index * * @return array */ public function list_pull_zones() { $this->api_type = 'account'; return $this->wp_remote_get( \esc_url( 'https://api.bunny.net/pullzone' ) ); } /** * Get pull zone details by pull zone id. * * @since 2.6.0 * * @link https://docs.bunny.net/reference/pullzonepublic_index2 * * @param int $id Pull zone id. * @return array */ public function get_pull_zone( $id ) { $this->api_type = 'account'; return $this->wp_remote_get( \esc_url( 'https://api.bunny.net/pullzone/id' . $id ) ); } /** * Add a pull zone. * * @since 2.6.0 * * @link https://docs.bunny.net/reference/pullzonepublic_add * * @param array $data { * Data used to create the pull zone. * * @type string $Name The name/hostname for the pull zone where the files will be accessible; only letters, numbers, and dashes. * @type string $OriginUrl Origin URL or IP (with optional port number). * @type string $OriginHostHeader Optional: The host HTTP header that will be sent to the origin. If empty, hostname will be automatically extracted from the Origin URL. * @type bool $AddHostHeader Optional: If enabled, the original host header of the request will be forwarded to the origin server. This should be disabled in most cases. * } * * @return array * @throws \Exception Exception. */ public function add_pull_zone( array $data ) { $this->api_type = 'account'; if ( empty( $data['Name'] ) || ! \is_string( $data['Name'] ) ) { // A Name string is required, which is used for the CDN hostname. throw new \Exception( \esc_html__( 'A pull zone name (string) is required.', 'w3-total-cache' ) ); } if ( \preg_match( '[^\w\d-]', $data['Name'] ) ) { // Only letters, numbers, and dashes are allowed in the Name. throw new \Exception( \esc_html__( 'A pull zone name (string) is required.', 'w3-total-cache' ) ); } return $this->wp_remote_post( 'https://api.bunny.net/pullzone', $data ); } /** * Update a pull zone. * * @since 2.6.0 * * @link https://docs.bunny.net/reference/pullzonepublic_updatepullzone * * @param int $id Optional pull zone ID. Can be specified in the constructor configuration array parameter. * @param array $data Data used to update the pull zone. * @return array * @throws \Exception Exception. */ public function update_pull_zone( $id, array $data ) { $this->api_type = 'account'; $id = empty( $this->pull_zone_id ) ? $id : $this->pull_zone_id; if ( empty( $id ) || ! \is_int( $id ) ) { throw new \Exception( \esc_html__( 'Invalid pull zone id.', 'w3-total-cache' ) ); } return $this->wp_remote_post( 'https://api.bunny.net/pullzone/' . $id, $data ); } /** * Delete a pull zone. * * @since 2.6.0 * * @link https://docs.bunny.net/reference/pullzonepublic_delete * * @param int $id Optional pull zone ID. Can be specified in the constructor configuration array parameter. * @return array * @throws \Exception Exception. */ public function delete_pull_zone( $id ) { $this->api_type = 'account'; $id = empty( $this->pull_zone_id ) ? $id : $this->pull_zone_id; if ( empty( $id ) || ! \is_int( $id ) ) { throw new \Exception( \esc_html__( 'Invalid pull zone id.', 'w3-total-cache' ) ); } return $this->wp_remote_post( \esc_url( 'https://api.bunny.net/pullzone/' . $id ), array(), array( 'method' => 'DELETE' ) ); } /** * Add a custom hostname to a pull zone. * * @since 2.6.0 * * @link https://docs.bunny.net/reference/pullzonepublic_addhostname * * @param string $hostname Custom hostname. * @param int $pull_zone_id Optional pull zone ID. Can be specified in the constructor configuration array parameter. * @return void * @throws \Exception Exception. */ public function add_custom_hostname( $hostname, $pull_zone_id = null ) { $this->api_type = 'account'; $pull_zone_id = empty( $this->pull_zone_id ) ? $pull_zone_id : $this->pull_zone_id; if ( empty( $pull_zone_id ) || ! \is_int( $pull_zone_id ) ) { throw new \Exception( \esc_html__( 'Invalid pull zone id.', 'w3-total-cache' ) ); } if ( empty( $hostname ) || ! \filter_var( $hostname, FILTER_VALIDATE_DOMAIN ) ) { throw new \Exception( \esc_html__( 'Invalid hostname', 'w3-total-cache' ) . ' "' . \esc_html( $hostname ) . '".' ); } $this->wp_remote_post( \esc_url( 'https://api.bunny.net/pullzone/' . $pull_zone_id . '/addHostname' ), array( 'Hostname' => $hostname ) ); } /** * Get the default edge rules. * * @since 2.6.0 * @static * * @return array */ public static function get_default_edge_rules() { return self::$default_edge_rules; } /** * Add/Update Edge Rule. * * @since 2.6.0 * * @param array $data Data. * @param int $pull_zone_id Optional pull zone ID. Can be specified in the constructor configuration array parameter. * @return void * @throws \Exception Exception. */ public function add_edge_rule( array $data, $pull_zone_id = null ) { $this->api_type = 'account'; $pull_zone_id = empty( $this->pull_zone_id ) ? $pull_zone_id : $this->pull_zone_id; if ( empty( $pull_zone_id ) || ! \is_int( $pull_zone_id ) ) { throw new \Exception( \esc_html__( 'Invalid pull zone id.', 'w3-total-cache' ) ); } if ( ! isset( $data['ActionType'] ) || ! \is_int( $data['ActionType'] ) || $data['ActionType'] < 0 ) { throw new \Exception( \esc_html__( 'Invalid parameter "ActionType".', 'w3-total-cache' ) ); } if ( ! isset( $data['TriggerMatchingType'] ) || ! \is_int( $data['TriggerMatchingType'] ) || $data['TriggerMatchingType'] < 0 ) { throw new \Exception( \esc_html__( 'Invalid parameter "TriggerMatchingType".', 'w3-total-cache' ) ); } if ( ! isset( $data['Enabled'] ) || ! \is_bool( $data['Enabled'] ) ) { throw new \Exception( \esc_html__( 'Missing parameter "Enabled".', 'w3-total-cache' ) ); } if ( empty( $data['Triggers'] ) ) { throw new \Exception( \esc_html__( 'Missing parameter "Triggers".', 'w3-total-cache' ) ); } $this->wp_remote_post( \esc_url( 'https://api.bunny.net/pullzone/' . $pull_zone_id . '/edgerules/addOrUpdate' ), $data ); } /** * Purge. * * @since 2.6.0 * * @param array $data Data for the POST request. * @return array */ public function purge( array $data ) { $this->api_type = 'account'; return $this->wp_remote_get( \esc_url( 'https://api.bunny.net/purge' ), $data ); } /** * Purge an entire pull zone. * * @since 2.6.0 * * @param int $pull_zone_id Optional pull zone ID. Can be specified in the constructor configuration array parameter. * @return void * @throws \Exception Exception. */ public function purge_pull_zone( $pull_zone_id = null ) { $this->api_type = 'account'; $pull_zone_id = empty( $this->pull_zone_id ) ? $pull_zone_id : $this->pull_zone_id; if ( empty( $pull_zone_id ) || ! \is_int( $pull_zone_id ) ) { throw new \Exception( \esc_html__( 'Invalid pull zone id.', 'w3-total-cache' ) ); } $this->wp_remote_post( \esc_url( 'https://api.bunny.net/pullzone/' . $pull_zone_id . '/purgeCache' ) ); } /** * Get the API key by API type. * * API type can be passed or the class property will be used. * * @since 2.6.0 * * @param string $type API type: One of "account", "storage", "stream" (optional). * @return string|null * @throws \Exception Exception. */ private function get_api_key( $type = null ) { if ( empty( $type ) ) { $type = $this->api_type; } if ( ! \in_array( $type, array( 'account', 'storage', 'stream' ), true ) ) { throw new \Exception( \esc_html__( 'Invalid API type; must be one of "account", "storage", "stream".', 'w3-total-cache' ) ); } if ( empty( $this->{$type . '_api_key'} ) ) { throw new \Exception( \esc_html__( 'API key value is empty.', 'w3-total-cache' ) ); } return $this->{$type . '_api_key'}; } /** * Decode response from a wp_remote_* call. * * @since 2.6.0 * * @param array|WP_Error $result Result. * @return array * @throws \Exception Exception. */ private function decode_response( $result ) { if ( \is_wp_error( $result ) ) { throw new \Exception( \esc_html__( 'Failed to reach API endpoint', 'w3-total-cache' ) ); } $response_body = @\json_decode( $result['body'], true ); // Throw an exception if the response code/status is not ok. if ( ! \in_array( $result['response']['code'], array( 200, 201, 204 ), true ) ) { $message = isset( $response_body['Message'] ) ? $response_body['Message'] : $result['body']; throw new \Exception( \esc_html( \__( 'Response code ', 'w3-total-cache' ) . $result['response']['code'] . ': ' . $message ) ); } return \is_array( $response_body ) ? $response_body : array(); } /** * Remote GET request. * * @since 2.6.0 * * @link https://developer.wordpress.org/reference/functions/wp_remote_get/ * @link https://developer.wordpress.org/reference/classes/wp_http/request/ * * @param string $url URL address. * @param array $data Query string data for the GET request. * @return array */ private function wp_remote_get( $url, array $data = array() ) { $api_key = $this->get_api_key(); \add_filter( 'http_request_timeout', array( $this, 'filter_timeout_time' ) ); \add_filter( 'https_ssl_verify', array( $this, 'https_ssl_verify' ) ); $result = \wp_remote_get( $url . ( empty( $data ) ? '' : '?' . \http_build_query( $data ) ), array( 'headers' => array( 'AccessKey' => $api_key, 'Accept' => 'application/json', ), ) ); \remove_filter( 'https_ssl_verify', array( $this, 'https_ssl_verify' ) ); \remove_filter( 'http_request_timeout', array( $this, 'filter_timeout_time' ) ); return self::decode_response( $result ); } /** * Remote POST request. * * @since 2.6.0 * * @link https://developer.wordpress.org/reference/functions/wp_remote_post/ * @link https://developer.wordpress.org/reference/classes/wp_http/request/ * * @param string $url URL address. * @param array $data Optional data for the POSt request. * @param array $args Optional additional arguments for the wp_remote_port call. * @return string */ private function wp_remote_post( $url, array $data = array(), array $args = array() ) { $api_key = $this->get_api_key(); \add_filter( 'http_request_timeout', array( $this, 'filter_timeout_time' ) ); \add_filter( 'https_ssl_verify', array( $this, 'https_ssl_verify' ) ); $result = \wp_remote_post( $url, \array_merge( array( 'headers' => array( 'AccessKey' => $api_key, 'Accept' => 'application/json', 'Content-Type' => 'application/json', ), 'body' => empty( $data ) ? null : \json_encode( $data ), ), $args ) ); \remove_filter( 'https_ssl_verify', array( $this, 'https_ssl_verify' ) ); \remove_filter( 'http_request_timeout', array( $this, 'filter_timeout_time' ) ); return self::decode_response( $result ); } }
[+]
..
[-] BrowserCache_Plugin_Admin.php
[edit]
[-] Cdn_BunnyCdn_Popup_View_Deauthorized.php
[edit]
[-] Minify_Core.php
[edit]
[-] Extension_Swarmify_Plugin_Admin.php
[edit]
[-] Cache_Apc.php
[edit]
[-] Cdn_StackPath2_Popup_View_Sites.php
[edit]
[+]
pub
[-] Extension_CloudFlare_Popup.php
[edit]
[-] UsageStatistics_Page_DbRequests_View.php
[edit]
[-] Extension_ImageService_Environment.php
[edit]
[-] Enterprise_SnsBase-less.php
[edit]
[-] Cdn_Core.php
[edit]
[-] UsageStatistics_Plugin.php
[edit]
[-] Generic_Page_Dashboard-class.php
[edit]
[-] Cdn_RackSpaceCdn_Popup_View_Service_Actualize.php
[edit]
[-] Generic_WidgetSpreadTheWord_View.php
[edit]
[-] Cli.php
[edit]
[-] Cdn_StackPath2_Popup.php
[edit]
[-] ObjectCache_Page_View_PurgeLog.php
[edit]
[-] Cdn_StackPath_Popup_View_Zone.php
[edit]
[-] Cdn_BunnyCdn_Page_View.js
[edit]
[-] index.html
[edit]
[-] Cdn_BunnyCdn_Popup_View_Deauthorize.php
[edit]
[-] Cdn_ConfigLabels.php
[edit]
[-] Cdn_StackPath2_Page_View.js
[edit]
[-] DbCache_Wpdb.php
[edit]
[-] Extension_ImageService_Plugin_Admin.css
[edit]
[-] Cache_Wincache.php
[edit]
[-] Minify_HelpPopup_View.php
[edit]
[-] Cdnfsd_StackPath2_Page_View.php
[edit]
[-] Generic_WidgetSettings.php
[edit]
[-] Cdn_BunnyCdn_Popup.php
[edit]
[-] CdnEngine_Ftp.php
[edit]
[-] Extension_FragmentCache_GeneralPage_View.php
[edit]
[-] PageSpeed_Widget.php
[edit]
[-] Util_Request.php
[edit]
[-] Extensions_Util.php
[edit]
[-] ModuleStatus.php
[edit]
[-] UsageStatistics_Page_ObjectCacheLog_View.php
[edit]
[-] Minify_GeneralPage_View_ShowHelpForce.js
[edit]
[-] DbCache_ConfigLabels.php
[edit]
[-] UserExperience_LazyLoad_Mutator_Unmutable.php
[edit]
[-] UsageStatistics_GeneralPage_View.php
[edit]
[-] Cdnfsd_StackPath_Engine.php
[edit]
[-] ObjectCache_Page.php
[edit]
[-] Cache_File_Generic.php
[edit]
[-] Cdnfsd_StackPath_Page_View.js
[edit]
[-] Cdn_Highwinds_Widget.php
[edit]
[-] Extension_NewRelic_Popup.php
[edit]
[-] Cdn_StackPath_Popup.php
[edit]
[-] CdnEngine_Mirror_RackSpaceCdn.php
[edit]
[-] Extension_WordPressSeo_Plugin.php
[edit]
[-] Cdnfsd_BunnyCdn_Page_View.js
[edit]
[-] Generic_Page_Dashboard_View.css
[edit]
[-] Cdn_StackPath2_Widget_View.css
[edit]
[-] Util_DebugPurgeLog_Reader.php
[edit]
[-] Extension_FragmentCache_Page_View.php
[edit]
[-] Cdn_StackPath_Popup_View_Zones.php
[edit]
[-] UsageStatistics_Page_View_Free.php
[edit]
[-] CdnEngine_Mirror_Att.php
[edit]
[-] ConfigUtil.php
[edit]
[-] PageSpeed_Widget_View.php
[edit]
[-] Cdnfsd_LimeLight_Popup_View_Success.php
[edit]
[-] Support_Page_View_DoneContent.php
[edit]
[-] Cdn_Highwinds_Widget_View_NotConfigured.php
[edit]
[-] Cdn_Environment_Nginx.php
[edit]
[-] UserExperience_Remove_CssJs_Page_View.js
[edit]
[-] UserExperience_Preload_Requests_Page_View.php
[edit]
[-] UserExperience_LazyLoad_GoogleMaps_WPGoogleMaps.php
[edit]
[-] Varnish_Plugin.php
[edit]
[-] UsageStatistics_Source_DbQueriesLog.php
[edit]
[-] Extension_Genesis_Plugin.php
[edit]
[-] Cdn_BunnyCdn_Widget_View.css
[edit]
[-] Generic_WidgetCommunity.php
[edit]
[-] Cache_Memcache.php
[edit]
[-] Cache_File_Cleaner_Generic.php
[edit]
[-] Cdn_LimeLight_Popup_View_Intro.php
[edit]
[-] Cdnfsd_BunnyCdn_Popup.php
[edit]
[-] Cdn_RackSpaceCdn_Popup.php
[edit]
[-] Extension_FragmentCache_GeneralPage.php
[edit]
[-] CdnEngine_RackSpaceCloudFiles.php
[edit]
[-] Cdn_StackPath2_Popup_View_Success.php
[edit]
[-] PgCache_Flush.php
[edit]
[-] SystemOpCache_GeneralPage_View.php
[edit]
[-] UsageStatistics_Page_View.js
[edit]
[-] Cdnfsd_TransparentCDN_Page_View.js
[edit]
[-] Root_AdminMenu.php
[edit]
[-] PgCache_Plugin_Admin.php
[edit]
[-] Generic_WidgetBoldGrid_View.php
[edit]
[-] PageSpeed_Page.php
[edit]
[-] Generic_Page_About.php
[edit]
[-] Cdnfsd_CloudFront_Engine.php
[edit]
[-] Cdnfsd_Util.php
[edit]
[-] Cdn_Environment_LiteSpeed.php
[edit]
[-] Util_Debug.php
[edit]
[-] Extension_NewRelic_Widget_View.js
[edit]
[-] UserExperience_Remove_CssJs_Page_View.php
[edit]
[-] Extension_NewRelic_Widget.php
[edit]
[-] Extension_Amp_Plugin_Admin.php
[edit]
[-] Extensions_Page.php
[edit]
[-] UserExperience_GeneralPage_View.php
[edit]
[-] Minify_ContentMinifier.php
[edit]
[-] Extension_ImageService_Api.php
[edit]
[-] BrowserCache_ConfigLabels.php
[edit]
[+]
wp-content
[-] Minify_Plugin.php
[edit]
[-] Cdnfsd_BunnyCdn_Page_View.php
[edit]
[-] PgCache_ContentGrabber.php
[edit]
[-] Cache_Memcached_Stats.php
[edit]
[-] Cdnfsd_CloudFront_Page.php
[edit]
[-] Minify_MinifiedFileRequestHandler.php
[edit]
[-] CdnEngine_Mirror_Highwinds.php
[edit]
[-] Cdn_StackPath2_Popup_View_Intro.php
[edit]
[-] Extension_FragmentCache_Environment.php
[edit]
[-] UserExperience_LazyLoad_Mutator_Picture.php
[edit]
[-] Generic_WidgetBoldGrid_View.js
[edit]
[-] Cdnfsd_LimeLight_Page_View.js
[edit]
[-] Extension_CloudFlare_GeneralPage_View.php
[edit]
[-] Extension_Genesis_Page_View.php
[edit]
[-] Cdnfsd_CloudFront_Popup_View_Intro.php
[edit]
[-] Util_WpFile_FilesystemModifyException.php
[edit]
[-] Util_Http.php
[edit]
[-] Extension_NewRelic_Page.php
[edit]
[-] Generic_WidgetPartners.php
[edit]
[-] Generic_WidgetServices_View.php
[edit]
[-] Cdn_RackSpaceCloudFiles_Page_View.php
[edit]
[-] UserExperience_OEmbed_Extension.php
[edit]
[-] Cdn_BunnyCdn_Widget.php
[edit]
[-] Extension_ImageService_Widget.php
[edit]
[-] Cdnfsd_BunnyCdn_Engine.php
[edit]
[-] Cdn_StackPath_Page_View.js
[edit]
[-] Cdn_Page_View_Header.php
[edit]
[-] Minify_Plugin_Admin.php
[edit]
[-] Cdn_GoogleDrive_Page_View.php
[edit]
[-] Cdn_Highwinds_Widget_View.php
[edit]
[-] Extension_CloudFlare_Plugin_Admin.php
[edit]
[-] PgCache_Page_View.js
[edit]
[-] FeatureShowcase_Plugin_Admin_View.php
[edit]
[-] Util_Admin.php
[edit]
[-] Extension_Swarmify_Widget.php
[edit]
[-] Extension_WordPressSeo_Plugin_Admin.php
[edit]
[-] PageSpeed_Api.php
[edit]
[-] Extension_FragmentCache_Api.php
[edit]
[-] UserExperience_DeferScripts_Script.js
[edit]
[-] Cdn_AdminNotes.php
[edit]
[-] Util_Activation.php
[edit]
[-] Extension_NewRelic_Service.php
[edit]
[-] Extension_NewRelic_Popup_View_ListApplications.php
[edit]
[-] Util_Theme.php
[edit]
[-] Cdnfsd_StackPath2_Page_View.js
[edit]
[-] ObjectCache_ConfigLabels.php
[edit]
[-] Cdn_RackSpace_Api_CloudFilesCdn.php
[edit]
[-] Cdnfsd_LimeLight_Page_View.php
[edit]
[-] Cdn_Highwinds_Page.php
[edit]
[-] CdnEngine_Mirror_Edgecast.php
[edit]
[-] Cdnfsd_StackPath2_Popup.php
[edit]
[-] Cdn_StackPath2_Widget_View_Authorized.php
[edit]
[-] UsageStatistics_Widget.php
[edit]
[-] Cdn_RackSpaceCdn_Page_View.js
[edit]
[-] Cdn_StackPath_Popup_View_Intro.php
[edit]
[-] Extension_Amp_Plugin.php
[edit]
[-] Cdn_LimeLight_Page_View.js
[edit]
[-] Cdn_Core_Admin.php
[edit]
[-] DbCache_WpdbBase.php
[edit]
[-] CacheFlush.php
[edit]
[-] Extension_Wpml_Plugin_Admin.php
[edit]
[-] PgCache_Plugin.php
[edit]
[-] Minify_Page.php
[edit]
[-] PageSpeed_Widget_View.js
[edit]
[-] PgCache_Environment.php
[edit]
[-] Mobile_Referrer.php
[edit]
[-] DbCache_Plugin_Admin.php
[edit]
[-] Cdn_StackPath_Api.php
[edit]
[-] UserExperience_DeferScripts_Mutator.php
[edit]
[-] Cdn_StackPath2_Widget_View_Unauthorized.php
[edit]
[-] Generic_Page_PurgeLog.php
[edit]
[+]
extension-example
[-] Licensing_Plugin_Admin.php
[edit]
[-] w3-total-cache-old-php.php
[edit]
[-] ConfigKeys.php
[edit]
[-] Extension_NewRelic_Widget_View.css
[edit]
[-] Extension_NewRelic_Plugin.php
[edit]
[-] Cdn_GoogleDrive_AdminActions.php
[edit]
[-] Licensing_AdminActions.php
[edit]
[-] Root_AdminActivation.php
[edit]
[-] Extension_NewRelic_Core.php
[edit]
[-] Generic_WidgetBoldGrid.php
[edit]
[-] UserExperience_Remove_CssJs_Extension.php
[edit]
[-] Cache_Apcu.php
[edit]
[-] press.txt
[edit]
[-] UserExperience_LazyLoad_Plugin.php
[edit]
[-] Generic_WidgetCommunity_View.php
[edit]
[-] Generic_Plugin.php
[edit]
[-] Extension_NewRelic_GeneralPage.php
[edit]
[-] Extension_CloudFlare_Popup_View_Zones.php
[edit]
[-] SystemOpCache_Core.php
[edit]
[-] Base_Page_Settings.php
[edit]
[-] Cdn_StackPath_Widget_View_Authorized.php
[edit]
[-] UserExperience_LazyLoad_GoogleMaps_GoogleMapsEasy.php
[edit]
[-] Extension_FragmentCache_Plugin.php
[edit]
[-] CdnEngine_Mirror_BunnyCdn.php
[edit]
[-] Cdnfsd_StackPath2_Engine.php
[edit]
[-] Generic_WidgetSpreadTheWord_Plugin.php
[edit]
[+]
inc
[-] w3-total-cache.php
[edit]
[-] Cdn_BunnyCdn_Popup_View_Configured.php
[edit]
[-] PageSpeed_Instructions.php
[edit]
[+]
ini
[-] Generic_Page_Dashboard.php
[edit]
[-] Cdnfsd_StackPath2_Popup_View_Stacks.php
[edit]
[-] Generic_Environment.php
[edit]
[-] Cdn_RackSpaceCdn_Page_View.php
[edit]
[-] Enterprise_SnsBase.php
[edit]
[-] CacheGroups_Plugin_Admin.php
[edit]
[-] Extension_FragmentCache_WpObjectCache.php
[edit]
[-] Util_WpFile_FilesystemMkdirException.php
[edit]
[-] Cdn_GeneralPage_View.php
[edit]
[-] error_log
[edit]
[-] CdnEngine_Mirror_Akamai.php
[edit]
[-] Cache_File_Cleaner.php
[edit]
[-] Generic_Page_PurgeLog_View.php
[edit]
[-] Cdn_RackSpaceCloudFiles_Popup_View_Regions.php
[edit]
[-] Cdnfsd_BunnyCdn_Popup_View_Deauthorized.php
[edit]
[-] Minify_GeneralPage_View_ShowHelp.js
[edit]
[-] Cdn_LimeLight_Page.php
[edit]
[-] Extension_CloudFlare_Widget_View.css
[edit]
[-] CdnEngine_CloudFront.php
[edit]
[-] Cdn_BunnyCdn_Widget_View_Unauthorized.php
[edit]
[-] ConfigCache.php
[edit]
[-] UserExperience_DeferScripts_Page_View.php
[edit]
[-] Cdnfsd_BunnyCdn_Popup_View_Pull_Zones.php
[edit]
[-] Generic_WidgetAccount.php
[edit]
[-] Cdn_StackPath2_Widget_View.js
[edit]
[-] Cdn_Plugin.php
[edit]
[-] Cdnfsd_StackPath2_Popup_View_Sites.php
[edit]
[-] Root_Environment.php
[edit]
[-] Cdn_GoogleDrive_Popup_AuthReturn.php
[edit]
[-] PgCache_Page.php
[edit]
[-] Cdnfsd_LimeLight_Api.php
[edit]
[-] UsageStatistics_Widget_View_Disabled.php
[edit]
[-] Util_WpFile_FilesystemWriteException.php
[edit]
[-] Util_Environment_Exceptions.php
[edit]
[-] UsageStatistics_GeneralPage.php
[edit]
[-] Extension_Wpml_Plugin.php
[edit]
[-] Generic_AdminActions_Config.php
[edit]
[-] Extension_CloudFlare_Page.php
[edit]
[-] Cdn_Page.php
[edit]
[-] Support_Page_View_PageContent.php
[edit]
[-] UsageStatistics_Source_PageCacheLog.php
[edit]
[-] Cdn_LimeLight_Page_View.php
[edit]
[-] UserExperience_Plugin_Admin.php
[edit]
[-] Cdn_AdminActions.php
[edit]
[-] Mobile_Base.php
[edit]
[-] Extension_NewRelic_Api.php
[edit]
[-] Extension_Swarmify_Page.php
[edit]
[-] Extension_NewRelic_Widget_View_Browser.php
[edit]
[-] Support_AdminActions.php
[edit]
[-] Root_AdminActions.php
[edit]
[-] Cdn_RackSpaceCdn_Popup_View_Regions.php
[edit]
[-] Extension_NewRelic_AdminNotes.php
[edit]
[-] Cache_Base.php
[edit]
[-] Extension_FragmentCache_Plugin_Admin.php
[edit]
[-] Extension_ImageService_Widget_View.php
[edit]
[-] UserExperience_Emoji_Extension.php
[edit]
[-] CdnEngine_Mirror_Cotendo.php
[edit]
[-] Extension_ImageService_Plugin_Admin.php
[edit]
[-] Extension_Genesis_Page.php
[edit]
[-] Cdnfsd_TransparentCDN_Page.php
[edit]
[-] Cdn_Page_View_Fsd_HeaderActions.php
[edit]
[-] Util_Environment_Exception.php
[edit]
[-] Config.php
[edit]
[-] Util_Rule.php
[edit]
[-] UserExperience_LazyLoad_GoogleMaps_WPGoogleMapPlugin.php
[edit]
[-] BrowserCache_Environment.php
[edit]
[-] UserExperience_GeneralPage.php
[edit]
[-] FeatureShowcase_Plugin_Admin.php
[edit]
[-] UsageStatistics_Widget_View.php
[edit]
[-] Cdn_StackPath_Widget.php
[edit]
[-] UsageStatistics_Sources_Redis.php
[edit]
[-] BrowserCache_Environment_LiteSpeed.php
[edit]
[-] CacheGroups_Plugin_Admin_View.php
[edit]
[-] Extension_Swarmify_Core.php
[edit]
[-] Cdnfsd_BunnyCdn_Page.php
[edit]
[-] Cdn_RackSpaceCloudFiles_Popup_View_Intro.php
[edit]
[-] Cdn_BunnyCdn_Popup_View_Pull_Zones.php
[edit]
[-] Mobile_UserAgent.php
[edit]
[-] ObjectCache_WpObjectCache_Regular.php
[edit]
[-] Extension_CloudFlare_Widget_Logo.png
[edit]
[-] UsageStatistics_Sources_Memcached.php
[edit]
[-] Extension_CloudFlare_AdminActions.php
[edit]
[-] Cdn_Highwinds_Popup_View_SelectHost.php
[edit]
[-] Extension_CloudFlare_View_Dashboard.js
[edit]
[-] Minify_Extract.php
[edit]
[-] Generic_AdminActions_Test.php
[edit]
[-] UsageStatistics_Page_PageCacheRequests_View.php
[edit]
[-] Cdnfsd_TransparentCDN_Page_View.php
[edit]
[-] PageSpeed_Data.php
[edit]
[-] Util_AttachToActions.php
[edit]
[-] ConfigState.php
[edit]
[-] Minify_AutoCss.php
[edit]
[-] PageSpeed_Page_View.js
[edit]
[-] UsageStatistics_Page_View.css
[edit]
[-] Cdn_BunnyCdn_Page_View_Purge_Urls.php
[edit]
[-] UsageStatistics_Source_ObjectCacheLog.php
[edit]
[-] SetupGuide_Plugin_Admin.php
[edit]
[-] UsageStatistics_StorageReader.php
[edit]
[-] PageSpeed_Page_View.css
[edit]
[-] Util_WpFile.php
[edit]
[-] BrowserCache_Plugin.php
[edit]
[-] PageSpeed_Page_View_FromAPI.php
[edit]
[-] Extension_FragmentCache_Page.php
[edit]
[-] Cdn_StackPath2_Widget.php
[edit]
[-] UserExperience_Remove_CssJs_Mutator.php
[edit]
[-] Generic_WidgetBoldGrid_Logo.svg
[edit]
[-] Cdn_CacheFlush.php
[edit]
[-] Extension_NewRelic_Popup_View_Intro.php
[edit]
[-] Extension_Amp_Page_View.php
[edit]
[-] CdnEngine_Mirror_CloudFront.php
[edit]
[-] BrowserCache_Environment_Apache.php
[edit]
[-] Cdnfsd_LimeLight_Page.php
[edit]
[-] UserExperience_LazyLoad_Mutator.php
[edit]
[-] Util_Mime.php
[edit]
[-] readme.txt
[edit]
[-] DbCache_WpdbInjection_QueryCaching.php
[edit]
[-] Cdn_StackPath2_Page_View.php
[edit]
[-] BrowserCache_Page.php
[edit]
[-] Generic_Plugin_WidgetNews.php
[edit]
[-] Generic_AdminNotes.php
[edit]
[-] ObjectCache_Plugin.php
[edit]
[-] Cdn_Environment.php
[edit]
[-] DbCache_Plugin.php
[edit]
[-] UserExperience_Preload_Requests_Extension.php
[edit]
[-] Cdnfsd_Core.php
[edit]
[-] Generic_WidgetSettings_View.php
[edit]
[-] Cache_Nginx_Memcached.php
[edit]
[-] Extension_CloudFlare_Page_View.js
[edit]
[-] Extension_CloudFlare_Cdn_Page_View.php
[edit]
[-] Cdn_StackPath_Widget_View.js
[edit]
[-] Generic_WidgetServices.php
[edit]
[-] Cdn_RackSpaceCdn_AdminActions.php
[edit]
[-] Cdn_Highwinds_Popup_View_ConfigureCnamesForm.php
[edit]
[-] Cdnfsd_BunnyCdn_Popup_View_Deauthorize.php
[edit]
[-] Varnish_Flush.php
[edit]
[-] Extension_NewRelic_AdminActions.php
[edit]
[-] Extension_Swarmify_Page_View.php
[edit]
[-] Cdn_RackSpaceCloudFiles_Page.php
[edit]
[-] CdnEngine_S3_Compatible.php
[edit]
[-] Generic_GeneralPage_View_ShowSupportUs.js
[edit]
[-] CdnEngine_Mirror_StackPath2.php
[edit]
[-] Cdnfsd_StackPath_Popup_View_Zones.php
[edit]
[-] Cdnfsd_Page_View_Header.php
[edit]
[-] Cache.php
[edit]
[-] Cache_File.php
[edit]
[-] BrowserCache_Page_View_SectionSecurity.php
[edit]
[-] Cdn_StackPath_Page_View.php
[edit]
[-] Generic_WidgetAccount_View.php
[edit]
[-] Extension_NewRelic_Widget_View_Apm.php
[edit]
[-] Cdn_GoogleDrive_Popup_AuthReturn_View.php
[edit]
[-] Minify_ConfigLabels.php
[edit]
[-] Extension_NewRelic_Page_View_Apm.php
[edit]
[-] Minify_AutoJs.php
[edit]
[-] Extension_CloudFlare_Plugin.php
[edit]
[-] ObjectCache_WpObjectCache.php
[edit]
[-] Cdnfsd_Plugin.php
[edit]
[-] Extension_CloudFlare_Api.php
[edit]
[-] Cdn_RackSpaceCdn_Popup_View_Service_Create.php
[edit]
[-] Generic_WidgetStats.php
[edit]
[-] CacheFlush_Locally.php
[edit]
[-] Cdnfsd_LimeLight_Popup_View_Intro.php
[edit]
[-] Cache_Redis.php
[edit]
[-] PageSpeed_Widget_View.css
[edit]
[-] Extension_CloudFlare_Page_View.php
[edit]
[-] Generic_Plugin_Admin_View_Faq.php
[edit]
[-] CdnEngine_Mirror_LimeLight.php
[edit]
[-] UsageStatistics_Sources.php
[edit]
[-] Generic_Page_Install.php
[edit]
[-] Cdn_Highwinds_Popup.php
[edit]
[-] Cdn_BunnyCdn_Widget_View_Authorized.php
[edit]
[-] Util_WpFile_FilesystemRmdirException.php
[edit]
[-] CacheGroups_Plugin_Admin_View.js
[edit]
[-] PgCache_QsExempts.php
[edit]
[-] Util_Bus.php
[edit]
[-] Extension_CloudFlare_Widget.php
[edit]
[-] Util_ConfigLabel.php
[edit]
[-] Extension_NewRelic_GeneralPage_View.php
[edit]
[-] Cdnfsd_GeneralPage_View.php
[edit]
[-] Cache_Memcached.php
[edit]
[-] Cdnfsd_StackPath_Popup.php
[edit]
[-] Cache_Eaccelerator.php
[edit]
[-] Util_WpmuBlogmap.php
[edit]
[-] Extensions_AdminActions.php
[edit]
[-] UsageStatistics_Page.php
[edit]
[-] UsageStatistics_Core.php
[edit]
[-] Generic_WidgetPartners_View.php
[edit]
[-] Cdn_GoogleDrive_Page_View.js
[edit]
[-] Cdn_RackSpace_Api_CloudFiles.php
[edit]
[-] Generic_AdminActions_Default.php
[edit]
[-] Cdnfsd_TransparentCDN_Engine.php
[edit]
[-] Cdn_RackSpace_Api_Cdn.php
[edit]
[-] Cdn_RackSpaceCloudFiles_Popup_View_Containers.php
[edit]
[-] Generic_WidgetBoldGrid_AdminActions.php
[edit]
[-] Cdn_Plugin_Admin.php
[edit]
[-] Cdnfsd_StackPath2_Popup_View_Intro.php
[edit]
[-] Cdnfsd_Plugin_Admin.php
[edit]
[-] DbCache_WpdbInjection.php
[edit]
[-] CdnEngine_Base.php
[edit]
[-] Cdnfsd_StackPath_Popup_View_Zone.php
[edit]
[-] Cdnfsd_StackPath2_Popup_View_Success.php
[edit]
[-] UserExperience_Plugin_Jquery.php
[edit]
[-] ObjectCache_Environment.php
[edit]
[-] DbCache_Page.php
[edit]
[-] Cdn_StackPath_Widget_View_Unauthorized.php
[edit]
[-] Cache_File_Cleaner_Generic_HardDelete.php
[edit]
[-] BrowserCache_Core.php
[edit]
[-] UsageStatistics_Sources_Apc.php
[edit]
[-] Extension_ImageService_Plugin.php
[edit]
[-] Util_PageUrls.php
[edit]
[-] DbCache_Environment.php
[edit]
[-] Generic_Plugin_AdminNotifications.php
[edit]
[-] Cdn_Highwinds_Popup_View_Intro.php
[edit]
[-] UsageStatistics_Page_View.php
[edit]
[-] Extension_Swarmify_AdminActions.php
[edit]
[-] Util_Environment.php
[edit]
[-] Util_UsageStatistics.php
[edit]
[-] Util_Widget.php
[edit]
[-] Cdn_BunnyCdn_Api.php
[edit]
[-] CdnEngine_Mirror.php
[edit]
[-] UserExperience_LazyLoad_Page_View.php
[edit]
[-] Cdnfsd_LimeLight_Engine.php
[edit]
[-] UsageStatistics_Page_View_Disabled.php
[edit]
[-] SystemOpCache_Plugin_Admin.php
[edit]
[-] Cdn_Highwinds_Widget_View.js
[edit]
[-] CdnEngine_S3.php
[edit]
[-] Cdn_BunnyCdn_Page.php
[edit]
[-] Enterprise_CacheFlush_MakeSnsEvent.php
[edit]
[-] LICENSE
[edit]
[-] Cdn_RackSpaceCloudFiles_Popup.php
[edit]
[-] UsageStatistics_Page_View_NoDebugMode.php
[edit]
[-] Cdn_StackPath_Popup_View_Success.php
[edit]
[-] Cdn_RackSpaceCloudFiles_Page_View.js
[edit]
[-] Cdn_RackSpaceCdn_Popup_View_ConfigureDomains.php
[edit]
[-] Cdn_BunnyCdn_Popup_View_Intro.php
[edit]
[-] Extension_CloudFlare_Widget_View.php
[edit]
[-] Extension_ImageService_Cron.php
[edit]
[-] BrowserCache_Page_View_QuickReference.php
[edit]
[-] Generic_Plugin_WidgetForum.php
[edit]
[-] Extension_NewRelic_Widget_View_NotConfigured.php
[edit]
[-] Cdn_RackSpace_Api_CaCert-example.pem
[edit]
[-] Cdn_StackPath2_Popup_View_Stacks.php
[edit]
[-] Cdn_Util.php
[edit]
[-] ConfigDbStorage.php
[edit]
[-] Cdn_LimeLight_Popup_View_Success.php
[edit]
[-] Cache_Xcache.php
[edit]
[-] Root_Loader.php
[edit]
[-] w3-total-cache-api.php
[edit]
[-] Util_Ui.php
[edit]
[-] Cdnfsd_StackPath_Page.php
[edit]
[-] DbCache_WpdbNew.php
[edit]
[-] Cdn_BunnyCdn_Page_View.php
[edit]
[-] Generic_Plugin_AdminCompatibility.php
[edit]
[-] Extension_Genesis_Plugin_Admin.php
[edit]
[-] Cdnfsd_StackPath_Page_View.php
[edit]
[-] Generic_Plugin_Admin.php
[edit]
[-] Extension_Swarmify_Widget_View.css
[edit]
[-] UsageStatistics_Plugin_Admin.php
[edit]
[-] Generic_AdminActions_Flush.php
[edit]
[-] CdnEngine_Mirror_StackPath.php
[edit]
[-] Cdnfsd_CacheFlush.php
[edit]
[-] Cdnfsd_CloudFront_Popup.php
[edit]
[-] UserExperience_Page.php
[edit]
[-] Cdnfsd_CloudFront_Popup_View_Distribution.php
[edit]
[-] Cdn_LimeLight_Popup.php
[edit]
[-] UsageStatistics_Page_View_Ad.php
[edit]
[-] SystemOpCache_AdminActions.php
[edit]
[-] Support_Page.php
[edit]
[-] Util_Installed.php
[edit]
[+]
lib
[-] Cdn_Highwinds_Widget_View.css
[edit]
[-] Cdn_Highwinds_Api.php
[edit]
[-] UsageStatistics_StorageWriter.php
[edit]
[-] UserExperience_Page_View.php
[edit]
[-] Minify_Environment_LiteSpeed.php
[edit]
[-] UsageStatistics_Source_Wpdb.php
[edit]
[-] Generic_Plugin_AdminRowActions.php
[edit]
[-] UserExperience_DeferScripts_Extension.php
[edit]
[+]
vendor
[-] Util_File.php
[edit]
[-] Generic_WidgetStats.js
[edit]
[-] Licensing_Core.php
[edit]
[+]
languages
[-] Minify_Environment.php
[edit]
[-] PageSpeed_Page_View.php
[edit]
[-] Extension_NewRelic_Popup_View.js
[edit]
[-] PgCache_ConfigLabels.php
[edit]
[-] Extension_Swarmify_Widget_View_NotConfigured.php
[edit]
[-] Cdn_RackSpaceCdn_Popup_View_Intro.php
[edit]
[-] Cdn_Highwinds_Page_View.js
[edit]
[-] Extension_NewRelic_Plugin_Admin.php
[edit]
[-] Cdnfsd_CloudFront_Page_View.php
[edit]
[-] UsageStatistics_Widget_View.js
[edit]
[-] Generic_ConfigLabels.php
[edit]
[-] Util_WpFile_FilesystemRmException.php
[edit]
[-] Extension_CloudFlare_SettingsForUi.php
[edit]
[-] CdnEngine.php
[edit]
[-] Cdn_Highwinds_Page_View.php
[edit]
[-] CdnEngine_GoogleDrive.php
[edit]
[-] Generic_GeneralPage_View_ShowEdge.js
[edit]
[-] Cdn_RackSpaceCdn_Page.php
[edit]
[-] PageSpeed_Widget_View_FromApi.php
[edit]
[-] Enterprise_Dbcache_WpdbInjection_Cluster.php
[edit]
[-] UsageStatistics_AdminActions.php
[edit]
[-] Extension_CloudFlare_Popup_View_Intro.php
[edit]
[-] Cdnfsd_CloudFront_Popup_View_Distributions.php
[edit]
[-] Mobile_Redirect.php
[edit]
[-] Cdnfsd_StackPath_Popup_View_Intro.php
[edit]
[-] Cdnfsd_BunnyCdn_Popup_View_Intro.php
[edit]
[-] DbCache_WpdbLegacy.php
[edit]
[-] Cdn_StackPath_Page.php
[edit]
[-] Cdnfsd_BunnyCdn_Popup_View_Configured.php
[edit]
[-] Enterprise_SnsServer.php
[edit]
[-] Cdnfsd_StackPath2_Page.php
[edit]
[-] Cdn_StackPath_Widget_View.css
[edit]
[-] Cdnfsd_CloudFront_Page_View.js
[edit]
[-] Generic_Faq.php
[edit]
[-] Extension_FragmentCache_Core.php
[edit]
[-] Util_WpFile_FilesystemCopyException.php
[edit]
[-] Cdn_RackSpaceCdn_Popup_View_Services.php
[edit]
[-] Cdn_GoogleDrive_Page.php
[edit]
[-] Util_PageSpeed.php
[edit]
[-] Extension_ImageService_Widget.js
[edit]
[-] CdnEngine_Azure.php
[edit]
[-] Extension_Swarmify_Plugin.php
[edit]
[-] Cdn_RackSpace_Api_Tokens.php
[edit]
[-] Extensions_Plugin_Admin.php
[edit]
[-] Extension_ImageService_Page_View.php
[edit]
[-] ObjectCache_Plugin_Admin.php
[edit]
[-] Util_WpFile_FilesystemOperationException.php
[edit]
[-] Generic_WidgetSpreadTheWord.js
[edit]
[-] Cdnfsd_CloudFront_Popup_View_Success.php
[edit]
[-] Util_WpFile_FilesystemChmodException.php
[edit]
[-] BrowserCache_Environment_Nginx.php
[edit]
[-] Cdnfsd_StackPath_Popup_View_Success.php
[edit]
[-] DbCache_Core.php
[edit]
[-] ConfigStateNote.php
[edit]
[-] Cdnfsd_LimeLight_Popup.php
[edit]
[-] Util_Content.php
[edit]
[-] Generic_Page_General.php
[edit]
[-] Extension_ImageService_Plugin_Admin.js
[edit]
[-] Cdn_StackPath2_Page.php
[edit]
[-] Cdn_RackSpaceCdn_Popup_View_Service_Created.php
[edit]
[-] Dispatcher.php
[edit]
[-] ConfigCompiler.php
[edit]
[-] Cdn_StackPath2_Api.php
[edit]
[-] UsageStatistics_Source_AccessLog.php
[edit]