| Server IP : 216.238.66.20 / Your IP : 216.73.216.249 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/ |
Upload File : |
<?php
use BackWPup\ThirdParty\Autoptimize;
use BackWPup\ThirdParty\Breeze;
use BackWPup\ThirdParty\HummingbirdPerformance;
use BackWPup\ThirdParty\SGCachepress;
use BackWPup\ThirdParty\W3TotalCache;
use BackWPup\ThirdParty\WPOptimize;
use BackWPup\ThirdParty\WPRocket;
use BackWPup\ThirdParty\WPSuperCache;
use BackWPup\ThirdParty\WPFastestCache;
class BackWPup_ThirdParties {
/**
* Register all the third parties
*
* @return void
*/
public static function register() {
$autoptimize = new Autoptimize();
$autoptimize->init();
$breeze = new Breeze();
$breeze->init();
$hummingbird = new HummingbirdPerformance();
$hummingbird->init();
$sg_cachepress = new SGCachepress();
$sg_cachepress->init();
$w3_total_cache = new W3TotalCache();
$w3_total_cache->init();
$wp_optimize = new WPOptimize();
$wp_optimize->init();
$wp_rocket = new WPRocket();
$wp_rocket->init();
$wp_super_cache = new WPSuperCache();
$wp_super_cache->init();
$wp_fastest_cache = new WPFastestCache();
$wp_fastest_cache->init();
}
}