| Server IP : 8.134.250.228 / Your IP : 216.73.217.16 Web Server : Apache System : Linux iZ7xv33p9e9ivk7yhmj7ibZ 5.10.134-18.al8.x86_64 #1 SMP Fri Dec 13 16:56:53 CST 2024 x86_64 User : www ( 1000) PHP Version : 8.0.26 Disable Function : passthru,exec,system,putenv,chroot,chgrp,chown,shell_exec,popen,proc_open,pcntl_exec,ini_alter,ini_restore,dl,openlog,syslog,readlink,symlink,popepassthru,pcntl_alarm,pcntl_fork,pcntl_waitpid,pcntl_wait,pcntl_wifexited,pcntl_wifstopped,pcntl_wifsignaled,pcntl_wifcontinued,pcntl_wexitstatus,pcntl_wtermsig,pcntl_wstopsig,pcntl_signal,pcntl_signal_dispatch,pcntl_get_last_error,pcntl_strerror,pcntl_sigprocmask,pcntl_sigwaitinfo,pcntl_sigtimedwait,pcntl_exec,pcntl_getpriority,pcntl_setpriority,imap_open,apache_setenv MySQL : OFF | cURL : ON | WGET : OFF | Perl : OFF | Python : OFF | Sudo : OFF | Pkexec : OFF Directory : /www/wwwroot/www.gobluemade.com/wp-content/plugins/elementor/modules/performance-lab/ |
Upload File : |
<?php
namespace Elementor\Modules\PerformanceLab;
use Elementor\Core\Base\Module as BaseModule;
use Elementor\Plugin;
if ( ! defined( 'ABSPATH' ) ) {
exit; // Exit if accessed directly.
}
class Module extends BaseModule {
const PERFORMANCE_LAB_FUNCTION_NAME = 'webp_uploads_img_tag_update_mime_type';
const PERFORMANCE_LAB_OPTION_NAME = 'site-health/webp-support';
public function get_name() {
return 'performance-lab';
}
private function is_performance_lab_is_active() {
if ( function_exists( self::PERFORMANCE_LAB_FUNCTION_NAME ) ) {
$perflab_modules_settings = get_option( self::PERFORMANCE_LAB_OPTION_NAME, [] );
if ( isset( $perflab_modules_settings ) && isset( $perflab_modules_settings[ self::PERFORMANCE_LAB_OPTION_NAME ] ) &&
'1' === $perflab_modules_settings[ self::PERFORMANCE_LAB_OPTION_NAME ]['enabled'] ) {
return true;
}
}
return false;
}
private function performance_lab_get_webp_src( $attachment_id, $size, $url ) {
$image_object = wp_get_attachment_image_src( $attachment_id, $size );
$image_src = call_user_func( self::PERFORMANCE_LAB_FUNCTION_NAME, $image_object[0], 'webp', $attachment_id );
if ( ! empty( $image_src ) ) {
return $image_src;
}
return $url;
}
private function replace_css_with_webp( $value, $css_property, $matches ) {
if ( 0 === strpos( $css_property, 'background-image' ) && '{{URL}}' === $matches[0] ) {
$value['url'] = $this->performance_lab_get_webp_src( $value['id'], 'full', $value['url'] );
}
return $value;
}
public function __construct() {
parent::__construct();
if ( $this->is_performance_lab_is_active() ) {
add_filter( 'elementor/files/css/property', function( $value, $css_property, $matches ) {
return $this->replace_css_with_webp( $value, $css_property, $matches );
}, 10, 3 );
}
}
}