403Webshell
Server IP : 195.130.67.5  /  Your IP : 216.73.217.154
Web Server : Microsoft-IIS/10.0
System : Windows NT WEBSERVER1 10.0 build 17763 (Windows Server 2016) i586
User : IUSR ( 0)
PHP Version : 7.4.19
Disable Function : NONE
MySQL : OFF  |  cURL : ON  |  WGET : OFF  |  Perl : OFF  |  Python : OFF  |  Sudo : OFF  |  Pkexec : OFF
Directory :  /Old Sites/ict/wp-content/plugins/w3-total-cache/

Upload File :
current_dir [ Writeable ] document_root [ Writeable ]

 

Command :


[ Back ]     

Current File : /Old Sites/ict/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;
	}
}

Youez - 2016 - github.com/yon3zu
LinuXploit