![]() Server : LiteSpeed System : Linux premium84.web-hosting.com 4.18.0-553.44.1.lve.el8.x86_64 #1 SMP Thu Mar 13 14:29:12 UTC 2025 x86_64 User : claqxcrl ( 523) PHP Version : 8.1.32 Disable Function : NONE Directory : /home/claqxcrl/anfangola.com/wp-content/plugins/wp-smushit/core/parser/ |
<?php namespace Smush\Core\Parser; class Style { /** * @var string */ private $css; /** * @var Image_URL[] */ private $image_urls; public function __construct( $css, $image_urls ) { $this->css = $css; $this->image_urls = $image_urls; } /** * @return string */ public function get_css() { return $this->css; } public function get_image_urls() { return $this->image_urls; } public function has_updates() { foreach ( $this->image_urls as $image_url ) { if ( $image_url->has_updates() ) { return true; } } return false; } public function get_updated() { $updated = $this->css; foreach ( $this->image_urls as $image_url ) { if ( $image_url->has_updates() ) { $updated = str_replace( $image_url->get_previous_url(), esc_url_raw( $image_url->get_url() ), $updated ); } } return $updated; } }