| Server IP : 216.238.66.20 / Your IP : 216.73.216.51 Web Server : nginx/1.30.4 System : Linux woropds 5.15.0-187-generic #197-Ubuntu SMP Fri Jul 17 19:17:01 UTC 2026 x86_64 User : root ( 0) PHP Version : 8.2.33 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : OFF | Perl : OFF | Python : OFF | Sudo : OFF | Pkexec : OFF Directory : /var/www/sweetheart.mx/htdocs/wp-content/plugins/backwpup/inc/ThirdParty/ |
Upload File : |
<?php
namespace BackWPup\ThirdParty;
if ( ! defined( 'ABSPATH' ) ) {
exit;
}
class W3TotalCache implements ThirdPartyInterface {
/**
* {@inheritDoc}
*
* @param array $excluded_folders
*
* @return mixed
*/
public function exclude_folders( $excluded_folders ) {
if (
! is_array( $excluded_folders ) ||
! self::is_active()
) {
return $excluded_folders;
}
if (
defined( 'W3TC_DIR' ) &&
! in_array( W3TC_DIR, $excluded_folders, true )
) {
$excluded_folders[] = W3TC_DIR;
}
if (
defined( 'W3TC_CONFIG_DIR' ) &&
! in_array( W3TC_CONFIG_DIR, $excluded_folders, true )
) {
$excluded_folders[] = W3TC_CONFIG_DIR;
}
return $excluded_folders;
}
/**
* {@inheritDoc}
*
* @param array $excluded_cache_folders
*
* @return mixed
*/
public function exclude_cache_folders( $excluded_cache_folders ) {
if (
! is_array( $excluded_cache_folders ) ||
! self::is_active()
) {
return $excluded_cache_folders;
}
if (
defined( 'W3TC_CACHE_DIR' ) &&
! in_array( W3TC_CACHE_DIR, $excluded_cache_folders, true )
) {
$excluded_cache_folders[] = W3TC_CACHE_DIR;
}
return $excluded_cache_folders;
}
/**
* {@inheritDoc}
*
* @return bool
*/
public static function is_active(): bool {
return defined( 'W3TC' );
}
/**
* {@inheritDoc}
*
* @return void
*/
public function init(): void {
if ( self::is_active() ) {
add_filter( 'backwpup_exclusion_plugins_folders', [ $this, 'exclude_folders' ] );
add_filter( 'backwpup_exclusion_plugins_cache_folders', [ $this, 'exclude_cache_folders' ] );
}
}
}