| Server IP : 130.225.57.55 / Your IP : 216.73.216.60 Web Server : Apache System : Linux wp-vhost07 5.15.0-173-generic #183-Ubuntu SMP Fri Mar 6 13:29:34 UTC 2026 x86_64 User : root ( 0) PHP Version : 8.1.2-1ubuntu2.25 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : OFF | Perl : OFF | Python : OFF | Sudo : OFF | Pkexec : OFF Directory : /srv/www/reco2st.eu/https/wp-content/plugins/w3-total-cache/ |
Upload File : |
<?php
/**
* File: CdnEngine_Mirror.php
*
* @package W3TC
*/
namespace W3TC;
/**
* Class CdnEngine_Mirror
*
* W3 CDN Mirror Class
*/
class CdnEngine_Mirror extends CdnEngine_Base {
/**
* Constructor for the CdnEngine_Mirror class.
*
* @param array $w3tc_config Optional configuration settings for the engine.
*
* @return void
*/
public function __construct( $w3tc_config = array() ) {
$w3tc_config = array_merge(
array(
'domain' => array(),
),
$w3tc_config
);
parent::__construct( $w3tc_config );
}
/**
* Uploads files to the mirror CDN.
*
* @param array $files Array of files to upload.
* @param array $results Reference to an array for storing upload results.
* @param bool $force_rewrite Whether to force overwriting existing files.
* @param int $timeout_time Optional timeout time in seconds.
*
* @return bool True on success, false otherwise.
*/
public function upload( $files, &$results, $force_rewrite = false, $timeout_time = null ) {
$results = $this->_get_results( $files, W3TC_CDN_RESULT_OK, 'OK' );
return true;
}
/**
* Deletes files from the mirror CDN.
*
* @param array $files Array of files to delete.
* @param array $results Reference to an array for storing deletion results.
*
* @return bool True on success, false otherwise.
*/
public function delete( $files, &$results ) {
$results = $this->_get_results( $files, W3TC_CDN_RESULT_OK, 'OK' );
return true;
}
/**
* Tests the connectivity and functionality of the mirror CDN.
*
* @param string $error Reference to a string for storing any error message.
*
* @return bool True if the test succeeds, false otherwise.
*/
public function test( &$error ) {
if ( ! parent::test( $error ) ) {
return false;
}
$results = array();
$files = array(
array(
'local_path' => '',
'remote_path' => 'purge_test_' . time(),
),
);
if ( ! $this->purge( $files, $results ) && isset( $results[0]['error'] ) ) {
$error = $results[0]['error'];
return false;
}
return true;
}
/**
* Retrieves the list of configured CDN domains.
*
* @return array List of configured domains.
*/
public function get_domains() {
if ( ! empty( $this->_config['domain'] ) ) {
return (array) $this->_config['domain'];
}
return array();
}
/**
* Indicates support for headers in the mirror CDN.
*
* @return int Header support constant.
*/
public function headers_support() {
return W3TC_CDN_HEADER_MIRRORING;
}
}