uawdijnntqw1x1x1
IP : 216.73.216.109
Hostname : premium160.web-hosting.com
Kernel : Linux premium160.web-hosting.com 4.18.0-553.54.1.lve.el8.x86_64 #1 SMP Wed Jun 4 13:01:13 UTC 2025 x86_64
Disable Function : None :)
OS : Linux
PATH:
/
home
/
batcwwjx
/
www
/
wp-content
/
plugins
/
.
/
.
/
wp-smushit
/
core
/
media
/
class-attachment-url-cache.php
/
/
<?php namespace Smush\Core\Media; class Attachment_Url_Cache { private $cache = array(); /** * Static instance * * @var self */ private static $instance; private $fetch_in_advance = false; /** * Static instance getter */ public static function get_instance() { if ( empty( self::$instance ) ) { self::$instance = new self(); } return self::$instance; } public function has_cached( $url ) { return isset( $this->cache[ trim( $url ) ] ); } public function get_id_for_url( $url, $fetch = false ) { if ( ! isset( $this->cache[ trim( $url ) ] ) ) { $attachment_id = 0; if ( $fetch ) { $attachment_id = attachment_url_to_postid( $url ); } $this->set_id_for_url( $url, $attachment_id ); } return $this->cache[ trim( $url ) ] ?? 0; } public function set_id_for_url( $url, $attachment_id ) { $this->cache[ trim( $url ) ] = $attachment_id; } public function reset() { $this->cache = array(); } public function get_all() { return $this->cache; } public function set_fetch_in_advance( $fetch_in_advance ) { $this->fetch_in_advance = $fetch_in_advance; } public function fetch_in_advance() { return $this->fetch_in_advance; } }
/home/batcwwjx/www/wp-content/plugins/././wp-smushit/core/media/class-attachment-url-cache.php