HEX
Server: Apache
System: Linux webm013.cluster123.gra.hosting.ovh.net 6.18.42-ovh-vps-grsec-zfs+ #1 SMP PREEMPT_DYNAMIC Wed Aug 5 15:59:48 CEST 2026 x86_64
User: lesanew (165608)
PHP: 8.3.31
Disabled: _dyuweyrj4,_dyuweyrj4r,dl
Upload Files
File: /home/lesanew/www/wp-content/plugins/w3-total-cache/UserExperience_LazyLoad_Mutator_Picture.php
<?php
namespace W3TC;

class UserExperience_LazyLoad_Mutator_Picture {
	private $common;



	public function __construct( $common ) {
		$this->common = $common;
	}



	public function run( $content ) {
		$content = preg_replace_callback(
			'~(<img\s[^>]+>)~i',
			array( $this, 'tag_img' ), $content
		);

		$content = preg_replace_callback(
			'~(<source\s[^>]+>)~i',
			array( $this, 'tag_source' ), $content
		);

		return $content;
	}



	public function tag_img( $matches ) {
		$content = $matches[0];

		// get image dimensions
		$dim = $this->common->tag_get_dimensions( $content );
		return $this->common->tag_img_content_replace( $content, $dim );
	}



	/**
	 * Common replace code for picture and img tags
	 */
	private function tag_source( $matches ) {
		$content = $matches[0];

		$content = preg_replace( '~(\s)(srcset|sizes)=~i',
			'$1data-$2=', $content );

		return $content;
	}
}