HEX
Server: Apache/2
System: Linux s01 6.1.0-34-amd64 #1 SMP PREEMPT_DYNAMIC Debian 6.1.135-1 (2025-04-25) x86_64
User: beestg (1003)
PHP: 8.3.25
Disabled: exec,system,passthru,shell_exec,proc_close,proc_open,dl,popen,show_source,posix_kill,posix_mkfifo,posix_getpwuid,posix_setpgid,posix_setsid,posix_setuid,posix_setgid,posix_seteuid,posix_setegid,posix_uname
Upload Files
File: /home/beestg/public_html/wp-content/plugins/jetpack/modules/theme-tools/devicepx.php
<?php
/**
 * Loads the devicepx library which improves the resolution of gravatars and
 * wordpress.com uploads on hi-res and zoomed browsers.
 *
 * This feature will only be activated for themes that declare their support.
 * This can be done by adding code similar to the following during the
 * 'after_setup_theme' action:
 *
 * add_theme_support( 'jetpack-devicepx' );
 *
 * @package automattic/jetpack
 */

_deprecated_file( __FILE__, 'jetpack-13.4' );
/**
 * Enqueue the devicepx JS library, if enabled. The feature must
 * be enabled earlier during `after_setup_theme`.
 *
 * @uses current_theme_supports, add_action
 */
function jetpack_devicepx_init() {
	if ( current_theme_supports( 'jetpack-devicepx' ) ) {
		_deprecated_function( __FUNCTION__, 'jetpack-13.4' );
		add_action( 'wp_enqueue_scripts', 'jetpack_devicepx_enqueue' );
		add_action( 'customize_controls_enqueue_scripts', 'jetpack_devicepx_enqueue' );
		add_action( 'admin_enqueue_scripts', 'jetpack_devicepx_enqueue' );
	}
}

// Use a late priority to ensure that plugins and themes can enable or disable this feature.
add_action( 'init', 'jetpack_devicepx_init', 99 );

/**
 * Enqueue the devicepx JS library.
 *
 * @uses wp_enqueue_script
 */
function jetpack_devicepx_enqueue() {
	_deprecated_function( __FUNCTION__, 'jetpack-13.4' );
	wp_enqueue_script( 'devicepx', 'https://s0.wp.com/wp-content/js/devicepx-jetpack.js', array(), gmdate( 'oW' ), true );
}