| Server IP : 37.9.174.138 / Your IP : 216.73.216.117 Web Server : Apache System : Linux vps6.backend.sk 6.12.100+deb13-amd64 #1 SMP PREEMPT_DYNAMIC Debian 6.12.100-1 (2026-07-30) x86_64 User : ftpuser ( 1001) PHP Version : 8.4.24 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : OFF | Sudo : ON | Pkexec : ON Directory : /var/www/html/brusiaren.com/web/wp-content/ |
Upload File : |
<?php
/**
* Hummingbird Advanced Tools module
*
* @package Hummingbird
*/
if ( ! defined( 'ABSPATH' ) ) {
die();
}
/**
* Load necessary modules for caching.
*/
if ( ! class_exists( 'Hummingbird\\Core\\Modules\\Page_Cache' ) ) {
if ( defined( 'WP_ADMIN' ) && WP_ADMIN ) {
return;
}
if ( is_dir( WP_CONTENT_DIR . '/plugins/wp-hummingbird/' ) ) {
$plugin_path = WP_CONTENT_DIR . '/plugins/wp-hummingbird/';
} elseif ( is_dir( WP_CONTENT_DIR . '/plugins/hummingbird-performance/' ) ) {
$plugin_path = WP_CONTENT_DIR . '/plugins/hummingbird-performance/';
} else {
return;
}
if ( ! file_exists( $plugin_path . 'core/cache.php' ) ) {
return;
}
define( 'WPHB_ADVANCED_CACHE', true );
include_once $plugin_path . 'core/cache.php';
}