✘✘ GRAYBYTE WORDPRESS FILE MANAGER ✘✘

​🇳​​🇦​​🇲​​🇪♯➤ cp240.webserver.pt ​🇻​♯➤ 4.18.0-553.121.1.lve.el8.x86_64 #1 SMP 🇾​♯➤ 2026

𝗛𝗢𝗠𝗘 𝗜𝗗 ♯➤ 62.193.192.154 ♯➤ 𝗔𝗗𝗠𝗜𝗡 𝗜𝗗 216.73.216.26
𝗢𝗣𝗧𝗜𝗢𝗡𝗦 ♯ CRL ♯➤ 𝗢𝗞 ┃ WGT ♯➤ 𝗢𝗞 ┃ SDO ♯➤ 𝗢𝗙𝗙 ┃ PKEX ♯➤ 𝗢𝗙𝗙
𝗗𝗘𝗔𝗖𝗧𝗜𝗩𝗔𝗧𝗘𝗗 ♯➤ 𝗔𝗟𝗟 𝗪𝗢𝗥𝗞𝗜𝗡𝗚....

𝗛𝗢𝗠𝗘
𝗖𝗨𝗥𝗥𝗘𝗡𝗧 𝗙𝗜𝗟𝗘 : /home/albatroz/xisto.net/wp-includes//class-wp-object-cache.php
<?php
/**
 * Object Cache API: WP_Object_Cache class
 *
 * @package WordPress
 * @subpackage Cache
 * @since 5.4.0
 */

/**
 * Core class that implements an object cache.
 *
 * The WordPress Object Cache is used to save on trips to the database. The
 * Object Cache stores all of the cache data to memory and makes the cache
 * contents available by using a key, which is used to name and later retrieve
 * the cache contents.
 *
 * The Object Cache can be replaced by other caching mechanisms by placing files
 * in the wp-content folder which is looked at in wp-settings. If that file
 * exists, then this file will not be included.
 *
 * @since 2.0.0
 */
class WP_Object_Cache {

	/**
	 * Holds the cached objects.
	 *
	 * @since 2.0.0
	 * @var array
	 */
	private $cache = array();

	/**
	 * The amount of times the cache data was already stored in the cache.
	 *
	 * @since 2.5.0
	 * @var int
	 */
	public $cache_hits = 0;

	/**
	 * Amount of times the cache did not have the request in cache.
	 *
	 * @since 2.0.0
	 * @var int
	 */
	public $cache_misses = 0;

	/**
	 * List of global cache groups.
	 *
	 * @since 3.0.0
	 * @var array
	 */
	protected $global_groups = array();

	/**
	 * The blog prefix to prepend to keys in non-global groups.
	 *
	 * @since 3.5.0
	 * @var string
	 */
	private $blog_prefix;

	/**
	 * Holds the value of is_multisite().
	 *
	 * @since 3.5.0
	 * @var bool
	 */
	private $multisite;

	/**
	 * Sets up object properties; PHP 5 style constructor.
	 *
	 * @since 2.0.8
	 */
	public function __construct() {
		$this->multisite   = is_multisite();
		$this->blog_prefix = $this->multisite ? get_current_blog_id() . ':' : '';
	}

	/**
	 * Makes private properties readable for backward compatibility.
	 *
	 * @since 4.0.0
	 *
	 * @param string $name Property to get.
	 * @return mixed Property.
	 */
	public function __get( $name ) {
		return $this->$name;
	}

	/**
	 * Makes private properties settable for backward compatibility.
	 *
	 * @since 4.0.0
	 *
	 * @param string $name  Property to set.
	 * @param mixed  $value Property value.
	 * @return mixed Newly-set property.
	 */
	public function __set( $name, $value ) {
		return $this->$name = $value;
	}

	/**
	 * Makes private properties checkable for backward compatibility.
	 *
	 * @since 4.0.0
	 *
	 * @param string $name Property to check if set.
	 * @return bool Whether the property is set.
	 */
	public function __isset( $name ) {
		return isset( $this->$name );
	}

	/**
	 * Makes private properties un-settable for backward compatibility.
	 *
	 * @since 4.0.0
	 *
	 * @param string $name Property to unset.
	 */
	public function __unset( $name ) {
		unset( $this->$name );
	}

	/**
	 * Adds data to the cache if it doesn't already exist.
	 *
	 * @since 2.0.0
	 *
	 * @uses WP_Object_Cache::_exists() Checks to see if the cache already has data.
	 * @uses WP_Object_Cache::set()     Sets the data after the checking the cache
	 *                                  contents existence.
	 *
	 * @param int|string $key    What to call the contents in the cache.
	 * @param mixed      $data   The contents to store in the cache.
	 * @param string     $group  Optional. Where to group the cache contents. Default 'default'.
	 * @param int        $expire Optional. When to expire the cache contents. Default 0 (no expiration).
	 * @return bool True on success, false if cache key and group already exist.
	 */
	public function add( $key, $data, $group = 'default', $expire = 0 ) {
		if ( wp_suspend_cache_addition() ) {
			return false;
		}

		if ( empty( $group ) ) {
			$group = 'default';
		}

		$id = $key;
		if ( $this->multisite && ! isset( $this->global_groups[ $group ] ) ) {
			$id = $this->blog_prefix . $key;
		}

		if ( $this->_exists( $id, $group ) ) {
			return false;
		}

		return $this->set( $key, $data, $group, (int) $expire );
	}

	/**
	 * Sets the list of global cache groups.
	 *
	 * @since 3.0.0
	 *
	 * @param string|string[] $groups List of groups that are global.
	 */
	public function add_global_groups( $groups ) {
		$groups = (array) $groups;

		$groups              = array_fill_keys( $groups, true );
		$this->global_groups = array_merge( $this->global_groups, $groups );
	}

	/**
	 * Decrements numeric cache item's value.
	 *
	 * @since 3.3.0
	 *
	 * @param int|string $key    The cache key to decrement.
	 * @param int        $offset Optional. The amount by which to decrement the item's value. Default 1.
	 * @param string     $group  Optional. The group the key is in. Default 'default'.
	 * @return int|false The item's new value on success, false on failure.
	 */
	public function decr( $key, $offset = 1, $group = 'default' ) {
		if ( empty( $group ) ) {
			$group = 'default';
		}

		if ( $this->multisite && ! isset( $this->global_groups[ $group ] ) ) {
			$key = $this->blog_prefix . $key;
		}

		if ( ! $this->_exists( $key, $group ) ) {
			return false;
		}

		if ( ! is_numeric( $this->cache[ $group ][ $key ] ) ) {
			$this->cache[ $group ][ $key ] = 0;
		}

		$offset = (int) $offset;

		$this->cache[ $group ][ $key ] -= $offset;

		if ( $this->cache[ $group ][ $key ] < 0 ) {
			$this->cache[ $group ][ $key ] = 0;
		}

		return $this->cache[ $group ][ $key ];
	}

	/**
	 * Removes the contents of the cache key in the group.
	 *
	 * If the cache key does not exist in the group, then nothing will happen.
	 *
	 * @since 2.0.0
	 *
	 * @param int|string $key        What the contents in the cache are called.
	 * @param string     $group      Optional. Where the cache contents are grouped. Default 'default'.
	 * @param bool       $deprecated Optional. Unused. Default false.
	 * @return bool False if the contents weren't deleted and true on success.
	 */
	public function delete( $key, $group = 'default', $deprecated = false ) {
		if ( empty( $group ) ) {
			$group = 'default';
		}

		if ( $this->multisite && ! isset( $this->global_groups[ $group ] ) ) {
			$key = $this->blog_prefix . $key;
		}

		if ( ! $this->_exists( $key, $group ) ) {
			return false;
		}

		unset( $this->cache[ $group ][ $key ] );
		return true;
	}

	/**
	 * Clears the object cache of all data.
	 *
	 * @since 2.0.0
	 *
	 * @return true Always returns true.
	 */
	public function flush() {
		$this->cache = array();

		return true;
	}

	/**
	 * Retrieves the cache contents, if it exists.
	 *
	 * The contents will be first attempted to be retrieved by searching by the
	 * key in the cache group. If the cache is hit (success) then the contents
	 * are returned.
	 *
	 * On failure, the number of cache misses will be incremented.
	 *
	 * @since 2.0.0
	 *
	 * @param int|string $key   The key under which the cache contents are stored.
	 * @param string     $group Optional. Where the cache contents are grouped. Default 'default'.
	 * @param bool       $force Optional. Unused. Whether to force an update of the local cache
	 *                          from the persistent cache. Default false.
	 * @param bool       $found Optional. Whether the key was found in the cache (passed by reference).
	 *                          Disambiguates a return of false, a storable value. Default null.
	 * @return mixed|false The cache contents on success, false on failure to retrieve contents.
	 */
	public function get( $key, $group = 'default', $force = false, &$found = null ) {
		if ( empty( $group ) ) {
			$group = 'default';
		}

		if ( $this->multisite && ! isset( $this->global_groups[ $group ] ) ) {
			$key = $this->blog_prefix . $key;
		}

		if ( $this->_exists( $key, $group ) ) {
			$found             = true;
			$this->cache_hits += 1;
			if ( is_object( $this->cache[ $group ][ $key ] ) ) {
				return clone $this->cache[ $group ][ $key ];
			} else {
				return $this->cache[ $group ][ $key ];
			}
		}

		$found               = false;
		$this->cache_misses += 1;
		return false;
	}

	/**
	 * Retrieves multiple values from the cache in one call.
	 *
	 * @since 5.5.0
	 *
	 * @param array  $keys  Array of keys under which the cache contents are stored.
	 * @param string $group Optional. Where the cache contents are grouped. Default 'default'.
	 * @param bool   $force Optional. Whether to force an update of the local cache
	 *                      from the persistent cache. Default false.
	 * @return array Array of values organized into groups.
	 */
	public function get_multiple( $keys, $group = 'default', $force = false ) {
		$values = array();

		foreach ( $keys as $key ) {
			$values[ $key ] = $this->get( $key, $group, $force );
		}

		return $values;
	}

	/**
	 * Increments numeric cache item's value.
	 *
	 * @since 3.3.0
	 *
	 * @param int|string $key    The cache key to increment
	 * @param int        $offset Optional. The amount by which to increment the item's value. Default 1.
	 * @param string     $group  Optional. The group the key is in. Default 'default'.
	 * @return int|false The item's new value on success, false on failure.
	 */
	public function incr( $key, $offset = 1, $group = 'default' ) {
		if ( empty( $group ) ) {
			$group = 'default';
		}

		if ( $this->multisite && ! isset( $this->global_groups[ $group ] ) ) {
			$key = $this->blog_prefix . $key;
		}

		if ( ! $this->_exists( $key, $group ) ) {
			return false;
		}

		if ( ! is_numeric( $this->cache[ $group ][ $key ] ) ) {
			$this->cache[ $group ][ $key ] = 0;
		}

		$offset = (int) $offset;

		$this->cache[ $group ][ $key ] += $offset;

		if ( $this->cache[ $group ][ $key ] < 0 ) {
			$this->cache[ $group ][ $key ] = 0;
		}

		return $this->cache[ $group ][ $key ];
	}

	/**
	 * Replaces the contents in the cache, if contents already exist.
	 *
	 * @since 2.0.0
	 *
	 * @see WP_Object_Cache::set()
	 *
	 * @param int|string $key    What to call the contents in the cache.
	 * @param mixed      $data   The contents to store in the cache.
	 * @param string     $group  Optional. Where to group the cache contents. Default 'default'.
	 * @param int        $expire Optional. When to expire the cache contents. Default 0 (no expiration).
	 * @return bool False if not exists, true if contents were replaced.
	 */
	public function replace( $key, $data, $group = 'default', $expire = 0 ) {
		if ( empty( $group ) ) {
			$group = 'default';
		}

		$id = $key;
		if ( $this->multisite && ! isset( $this->global_groups[ $group ] ) ) {
			$id = $this->blog_prefix . $key;
		}

		if ( ! $this->_exists( $id, $group ) ) {
			return false;
		}

		return $this->set( $key, $data, $group, (int) $expire );
	}

	/**
	 * Resets cache keys.
	 *
	 * @since 3.0.0
	 *
	 * @deprecated 3.5.0 Use switch_to_blog()
	 * @see switch_to_blog()
	 */
	public function reset() {
		_deprecated_function( __FUNCTION__, '3.5.0', 'switch_to_blog()' );

		// Clear out non-global caches since the blog ID has changed.
		foreach ( array_keys( $this->cache ) as $group ) {
			if ( ! isset( $this->global_groups[ $group ] ) ) {
				unset( $this->cache[ $group ] );
			}
		}
	}

	/**
	 * Sets the data contents into the cache.
	 *
	 * The cache contents are grouped by the $group parameter followed by the
	 * $key. This allows for duplicate IDs in unique groups. Therefore, naming of
	 * the group should be used with care and should follow normal function
	 * naming guidelines outside of core WordPress usage.
	 *
	 * The $expire parameter is not used, because the cache will automatically
	 * expire for each time a page is accessed and PHP finishes. The method is
	 * more for cache plugins which use files.
	 *
	 * @since 2.0.0
	 *
	 * @param int|string $key    What to call the contents in the cache.
	 * @param mixed      $data   The contents to store in the cache.
	 * @param string     $group  Optional. Where to group the cache contents. Default 'default'.
	 * @param int        $expire Not Used.
	 * @return true Always returns true.
	 */
	public function set( $key, $data, $group = 'default', $expire = 0 ) {
		if ( empty( $group ) ) {
			$group = 'default';
		}

		if ( $this->multisite && ! isset( $this->global_groups[ $group ] ) ) {
			$key = $this->blog_prefix . $key;
		}

		if ( is_object( $data ) ) {
			$data = clone $data;
		}

		$this->cache[ $group ][ $key ] = $data;
		return true;
	}

	/**
	 * Echoes the stats of the caching.
	 *
	 * Gives the cache hits, and cache misses. Also prints every cached group,
	 * key and the data.
	 *
	 * @since 2.0.0
	 */
	public function stats() {
		echo '<p>';
		echo "<strong>Cache Hits:</strong> {$this->cache_hits}<br />";
		echo "<strong>Cache Misses:</strong> {$this->cache_misses}<br />";
		echo '</p>';
		echo '<ul>';
		foreach ( $this->cache as $group => $cache ) {
			echo '<li><strong>Group:</strong> ' . esc_html( $group ) . ' - ( ' . number_format( strlen( serialize( $cache ) ) / KB_IN_BYTES, 2 ) . 'k )</li>';
		}
		echo '</ul>';
	}

	/**
	 * Switches the internal blog ID.
	 *
	 * This changes the blog ID used to create keys in blog specific groups.
	 *
	 * @since 3.5.0
	 *
	 * @param int $blog_id Blog ID.
	 */
	public function switch_to_blog( $blog_id ) {
		$blog_id           = (int) $blog_id;
		$this->blog_prefix = $this->multisite ? $blog_id . ':' : '';
	}

	/**
	 * Serves as a utility function to determine whether a key exists in the cache.
	 *
	 * @since 3.4.0
	 *
	 * @param int|string $key   Cache key to check for existence.
	 * @param string     $group Cache group for the key existence check.
	 * @return bool Whether the key exists in the cache for the given group.
	 */
	protected function _exists( $key, $group ) {
		return isset( $this->cache[ $group ] ) && ( isset( $this->cache[ $group ][ $key ] ) || array_key_exists( $key, $this->cache[ $group ] ) );
	}
}


Current_dir [ 𝗪𝗥𝗜𝗧𝗘𝗔𝗕𝗟𝗘 ] Document_root [ 𝗪𝗥𝗜𝗧𝗘𝗔𝗕𝗟𝗘 ]


[ Back ]
𝗡𝗔𝗠𝗘
𝗦𝗜𝗭𝗘
𝗟𝗔𝗦𝗧 𝗧𝗢𝗨𝗖𝗛
𝗨𝗦𝗘𝗥
𝗦𝗧𝗔𝗧𝗨𝗦
𝗙𝗨𝗡𝗖𝗧𝗜𝗢𝗡𝗦
..
--
12 Jun 2026 2.36 AM
albatroz / nobody
0750
ID3
--
10 Feb 2022 1.56 PM
albatroz / albatroz
0755
IXR
--
15 Jul 2024 9.45 PM
albatroz / albatroz
0755
PHPMailer
--
12 Jun 2026 10.08 AM
albatroz / albatroz
0755
Requests
--
11 Jun 2026 3.27 AM
albatroz / albatroz
0755
SimplePie
--
15 Jul 2024 9.43 PM
albatroz / albatroz
0755
Text
--
10 Feb 2022 1.56 PM
albatroz / albatroz
0755
assets
--
10 Feb 2022 1.56 PM
albatroz / albatroz
0755
block-patterns
--
15 Jul 2024 9.46 PM
albatroz / albatroz
0755
block-supports
--
31 Jul 2024 4.28 PM
albatroz / albatroz
0755
blocks
--
13 Feb 2022 1.18 PM
albatroz / albatroz
0755
certificates
--
10 Feb 2022 1.56 PM
albatroz / albatroz
0755
css
--
11 Jun 2026 3.29 AM
albatroz / albatroz
0755
customize
--
15 Jul 2024 9.46 PM
albatroz / albatroz
0755
fonts
--
11 Jun 2026 3.29 AM
albatroz / albatroz
0755
images
--
11 Jun 2026 3.29 AM
albatroz / albatroz
0755
interactivity-api
--
12 Jun 2026 10.08 AM
albatroz / albatroz
0755
js
--
11 Jun 2026 3.29 AM
albatroz / albatroz
0755
php-compat
--
10 Feb 2022 1.56 PM
albatroz / albatroz
0755
pictures
--
11 Jun 2026 12.19 AM
albatroz / albatroz
0755
pomo
--
10 Feb 2022 1.56 PM
albatroz / albatroz
0755
random_compat
--
10 Feb 2022 1.56 PM
albatroz / albatroz
0755
rest-api
--
15 Jul 2024 9.45 PM
albatroz / albatroz
0755
sitemaps
--
10 Feb 2022 1.56 PM
albatroz / albatroz
0755
sodium_compat
--
10 Feb 2022 1.56 PM
albatroz / albatroz
0755
theme-compat
--
11 Jun 2026 3.29 AM
albatroz / albatroz
0755
widgets
--
13 Feb 2022 1.18 PM
albatroz / albatroz
0755
admin-bar.php
0 KB
10 Feb 2022 1.56 PM
albatroz / albatroz
0644
atomlib.php
11.668 KB
10 Feb 2022 1.56 PM
albatroz / albatroz
0644
author-template.php
16.631 KB
10 Feb 2022 1.56 PM
albatroz / albatroz
0644
block-editor.php
17.727 KB
10 Feb 2022 1.56 PM
albatroz / albatroz
0644
block-i18n.json
0.309 KB
10 Feb 2022 1.56 PM
albatroz / albatroz
0644
block-patterns.php
4.191 KB
10 Feb 2022 1.56 PM
albatroz / albatroz
0644
block-template-utils.php
29.572 KB
10 Feb 2022 1.56 PM
albatroz / albatroz
0644
block-template.php
10.442 KB
10 Feb 2022 1.56 PM
albatroz / albatroz
0644
blocks.php
42.187 KB
10 Feb 2022 1.56 PM
albatroz / albatroz
0644
bookmark-template.php
12.598 KB
10 Feb 2022 1.56 PM
albatroz / albatroz
0644
bookmark.php
14.973 KB
10 Feb 2022 1.56 PM
albatroz / albatroz
0644
cache-compat.php
1.021 KB
10 Feb 2022 1.56 PM
albatroz / albatroz
0644
cache-reset.php
0.012 KB
27 Jan 2025 3.29 AM
albatroz / albatroz
0644
cache.php
9.29 KB
10 Feb 2022 1.56 PM
albatroz / albatroz
0644
canonical.php
32.31 KB
10 Feb 2022 1.56 PM
albatroz / albatroz
0644
capabilities.php
34.884 KB
10 Feb 2022 1.56 PM
albatroz / albatroz
0644
category-template.php
54.396 KB
10 Feb 2022 1.56 PM
albatroz / albatroz
0644
category.php
0 KB
10 Feb 2022 1.56 PM
albatroz / albatroz
0644
cjfuns.php
0 KB
11 Jun 2026 7.46 AM
albatroz / albatroz
0444
class-IXR.php
2.483 KB
10 Feb 2022 1.56 PM
albatroz / albatroz
0644
class-feed.php
0.517 KB
10 Feb 2022 1.56 PM
albatroz / albatroz
0644
class-http.php
0.364 KB
10 Feb 2022 1.56 PM
albatroz / albatroz
0644
class-json.php
42.423 KB
10 Feb 2022 1.56 PM
albatroz / albatroz
0644
class-oembed.php
0.397 KB
10 Feb 2022 1.56 PM
albatroz / albatroz
0644
class-phpass.php
6.542 KB
10 Feb 2022 1.56 PM
albatroz / albatroz
0644
class-phpmailer.php
0.648 KB
10 Feb 2022 1.56 PM
albatroz / albatroz
0644
class-pop3.php
20.349 KB
10 Feb 2022 1.56 PM
albatroz / albatroz
0644
class-requests.php
29.718 KB
10 Feb 2022 1.56 PM
albatroz / albatroz
0644
class-simplepie.php
95.781 KB
10 Feb 2022 1.56 PM
albatroz / albatroz
0644
class-smtp.php
0.446 KB
10 Feb 2022 1.56 PM
albatroz / albatroz
0644
class-snoopy.php
36.831 KB
10 Feb 2022 1.56 PM
albatroz / albatroz
0644
class-walker-category-dropdown.php
2.412 KB
10 Feb 2022 1.56 PM
albatroz / albatroz
0644
class-walker-category.php
8.27 KB
10 Feb 2022 1.56 PM
albatroz / albatroz
0644
class-walker-comment.php
13.878 KB
10 Feb 2022 1.56 PM
albatroz / albatroz
0644
class-walker-nav-menu.php
9.13 KB
10 Feb 2022 1.56 PM
albatroz / albatroz
0644
class-walker-page-dropdown.php
2.646 KB
10 Feb 2022 1.56 PM
albatroz / albatroz
0644
class-walker-page.php
7.421 KB
10 Feb 2022 1.56 PM
albatroz / albatroz
0644
class-wp-admin-bar.php
17.052 KB
10 Feb 2022 1.56 PM
albatroz / albatroz
0644
class-wp-ajax-response.php
5.117 KB
10 Feb 2022 1.56 PM
albatroz / albatroz
0644
class-wp-application-passwords.php
11.948 KB
10 Feb 2022 1.56 PM
albatroz / albatroz
0644
class-wp-block-editor-context.php
0.869 KB
10 Feb 2022 1.56 PM
albatroz / albatroz
0644
class-wp-block-list.php
4.612 KB
10 Feb 2022 1.56 PM
albatroz / albatroz
0644
class-wp-block-parser.php
14.861 KB
10 Feb 2022 1.56 PM
albatroz / albatroz
0644
class-wp-block-pattern-categories-registry.php
4.431 KB
10 Feb 2022 1.56 PM
albatroz / albatroz
0644
class-wp-block-patterns-registry.php
5.796 KB
10 Feb 2022 1.56 PM
albatroz / albatroz
0644
class-wp-block-styles-registry.php
4.882 KB
10 Feb 2022 1.56 PM
albatroz / albatroz
0644
class-wp-block-supports.php
5.172 KB
10 Feb 2022 1.56 PM
albatroz / albatroz
0644
class-wp-block-template.php
1.773 KB
10 Feb 2022 1.56 PM
albatroz / albatroz
0644
class-wp-block-type-registry.php
4.533 KB
10 Feb 2022 1.56 PM
albatroz / albatroz
0644
class-wp-block-type.php
9.27 KB
10 Feb 2022 1.56 PM
albatroz / albatroz
0644
class-wp-block.php
7.991 KB
10 Feb 2022 1.56 PM
albatroz / albatroz
0644
class-wp-comment-query.php
46.334 KB
10 Feb 2022 1.56 PM
albatroz / albatroz
0644
class-wp-comment.php
9.103 KB
10 Feb 2022 1.56 PM
albatroz / albatroz
0644
class-wp-customize-control.php
25.108 KB
10 Feb 2022 1.56 PM
albatroz / albatroz
0644
class-wp-customize-manager.php
196.558 KB
10 Feb 2022 1.56 PM
albatroz / albatroz
0644
class-wp-customize-nav-menus.php
55.448 KB
10 Feb 2022 1.56 PM
albatroz / albatroz
0644
class-wp-customize-panel.php
10.192 KB
10 Feb 2022 1.56 PM
albatroz / albatroz
0644
class-wp-customize-section.php
10.716 KB
10 Feb 2022 1.56 PM
albatroz / albatroz
0644
class-wp-customize-setting.php
29.082 KB
10 Feb 2022 1.56 PM
albatroz / albatroz
0644
class-wp-customize-widgets.php
69.517 KB
10 Feb 2022 1.56 PM
albatroz / albatroz
0644
class-wp-date-query.php
34.173 KB
10 Feb 2022 1.56 PM
albatroz / albatroz
0644
class-wp-dependency.php
2.452 KB
10 Feb 2022 1.56 PM
albatroz / albatroz
0644
class-wp-editor.php
69.537 KB
10 Feb 2022 1.56 PM
albatroz / albatroz
0644
class-wp-embed.php
15.567 KB
10 Feb 2022 1.56 PM
albatroz / albatroz
0644
class-wp-error.php
7.131 KB
10 Feb 2022 1.56 PM
albatroz / albatroz
0644
class-wp-fatal-error-handler.php
7.397 KB
10 Feb 2022 1.56 PM
albatroz / albatroz
0644
class-wp-feed-cache-transient.php
2.5 KB
10 Feb 2022 1.56 PM
albatroz / albatroz
0644
class-wp-feed-cache.php
0.947 KB
10 Feb 2022 1.56 PM
albatroz / albatroz
0644
class-wp-hook.php
15.323 KB
10 Feb 2022 1.56 PM
albatroz / albatroz
0644
class-wp-http-cookie.php
7.213 KB
10 Feb 2022 1.56 PM
albatroz / albatroz
0644
class-wp-http-curl.php
12.099 KB
10 Feb 2022 1.56 PM
albatroz / albatroz
0644
class-wp-http-encoding.php
6.507 KB
10 Feb 2022 1.56 PM
albatroz / albatroz
0644
class-wp-http-ixr-client.php
3.394 KB
10 Feb 2022 1.56 PM
albatroz / albatroz
0644
class-wp-http-proxy.php
5.82 KB
10 Feb 2022 1.56 PM
albatroz / albatroz
0644
class-wp-http-requests-hooks.php
1.938 KB
10 Feb 2022 1.56 PM
albatroz / albatroz
0644
class-wp-http-requests-response.php
4.241 KB
10 Feb 2022 1.56 PM
albatroz / albatroz
0644
class-wp-http-response.php
2.882 KB
10 Feb 2022 1.56 PM
albatroz / albatroz
0644
class-wp-http-streams.php
16.259 KB
10 Feb 2022 1.56 PM
albatroz / albatroz
0644
class-wp-http.php
38.974 KB
10 Feb 2022 1.56 PM
albatroz / albatroz
0644
class-wp-image-editor-gd.php
15.295 KB
10 Feb 2022 1.56 PM
albatroz / albatroz
0644
class-wp-image-editor-imagick.php
26.329 KB
10 Feb 2022 1.56 PM
albatroz / albatroz
0644
class-wp-image-editor.php
16.262 KB
10 Feb 2022 1.56 PM
albatroz / albatroz
0644
class-wp-list-util.php
6.825 KB
10 Feb 2022 1.56 PM
albatroz / albatroz
0644
class-wp-locale-switcher.php
4.904 KB
10 Feb 2022 1.56 PM
albatroz / albatroz
0644
class-wp-locale.php
13.654 KB
10 Feb 2022 1.56 PM
albatroz / albatroz
0644
class-wp-matchesmapregex.php
1.758 KB
10 Feb 2022 1.56 PM
albatroz / albatroz
0644
class-wp-meta-query.php
29.471 KB
10 Feb 2022 1.56 PM
albatroz / albatroz
0644
class-wp-metadata-lazyloader.php
5.227 KB
10 Feb 2022 1.56 PM
albatroz / albatroz
0644
class-wp-network-query.php
18.722 KB
10 Feb 2022 1.56 PM
albatroz / albatroz
0644
class-wp-network.php
12.089 KB
10 Feb 2022 1.56 PM
albatroz / albatroz
0644
class-wp-object-cache.php
13.233 KB
10 Feb 2022 1.56 PM
albatroz / albatroz
0644
class-wp-oembed-controller.php
6.667 KB
10 Feb 2022 1.56 PM
albatroz / albatroz
0644
class-wp-oembed.php
29.982 KB
10 Feb 2022 1.56 PM
albatroz / albatroz
0644
class-wp-paused-extensions-storage.php
4.808 KB
10 Feb 2022 1.56 PM
albatroz / albatroz
0644
class-wp-post-type.php
20.72 KB
10 Feb 2022 1.56 PM
albatroz / albatroz
0644
class-wp-post.php
6.272 KB
10 Feb 2022 1.56 PM
albatroz / albatroz
0644
class-wp-query.php
135.702 KB
10 Feb 2022 1.56 PM
albatroz / albatroz
0644
class-wp-recovery-mode-cookie-service.php
6.308 KB
10 Feb 2022 1.56 PM
albatroz / albatroz
0644
class-wp-recovery-mode-email-service.php
10.41 KB
10 Feb 2022 1.56 PM
albatroz / albatroz
0644
class-wp-recovery-mode-key-service.php
4.17 KB
10 Feb 2022 1.56 PM
albatroz / albatroz
0644
class-wp-recovery-mode-link-service.php
3.321 KB
10 Feb 2022 1.56 PM
albatroz / albatroz
0644
class-wp-recovery-mode.php
11.111 KB
10 Feb 2022 1.56 PM
albatroz / albatroz
0644
class-wp-rewrite.php
61.486 KB
10 Feb 2022 1.56 PM
albatroz / albatroz
0644
class-wp-role.php
2.439 KB
10 Feb 2022 1.56 PM
albatroz / albatroz
0644
class-wp-roles.php
8.236 KB
10 Feb 2022 1.56 PM
albatroz / albatroz
0644
class-wp-session-tokens.php
7.251 KB
10 Feb 2022 1.56 PM
albatroz / albatroz
0644
class-wp-simplepie-file.php
3.183 KB
10 Feb 2022 1.56 PM
albatroz / albatroz
0644
class-wp-simplepie-sanitize-kses.php
1.733 KB
10 Feb 2022 1.56 PM
albatroz / albatroz
0644
class-wp-site-query.php
29.648 KB
10 Feb 2022 1.56 PM
albatroz / albatroz
0644
class-wp-site.php
7.254 KB
10 Feb 2022 1.56 PM
albatroz / albatroz
0644
class-wp-tax-query.php
18.993 KB
10 Feb 2022 1.56 PM
albatroz / albatroz
0644
class-wp-taxonomy.php
13.409 KB
10 Feb 2022 1.56 PM
albatroz / albatroz
0644
class-wp-term-query.php
37.178 KB
10 Feb 2022 1.56 PM
albatroz / albatroz
0644
class-wp-term.php
5.148 KB
10 Feb 2022 1.56 PM
albatroz / albatroz
0644
class-wp-text-diff-renderer-inline.php
0.699 KB
10 Feb 2022 1.56 PM
albatroz / albatroz
0644
class-wp-text-diff-renderer-table.php
16.401 KB
10 Feb 2022 1.56 PM
albatroz / albatroz
0644
class-wp-theme-json-resolver.php
13.951 KB
10 Feb 2022 1.56 PM
albatroz / albatroz
0644
class-wp-theme-json-schema.php
4.195 KB
10 Feb 2022 1.56 PM
albatroz / albatroz
0644
class-wp-theme-json.php
59.973 KB
10 Feb 2022 1.56 PM
albatroz / albatroz
0644
class-wp-theme.php
52.563 KB
10 Feb 2022 1.56 PM
albatroz / albatroz
0644
class-wp-user-meta-session-tokens.php
2.92 KB
10 Feb 2022 1.56 PM
albatroz / albatroz
0644
class-wp-user-query.php
37.177 KB
10 Feb 2022 1.56 PM
albatroz / albatroz
0644
class-wp-user-request.php
2.145 KB
10 Feb 2022 1.56 PM
albatroz / albatroz
0644
class-wp-user.php
21.702 KB
10 Feb 2022 1.56 PM
albatroz / albatroz
0644
class-wp-walker.php
12.707 KB
10 Feb 2022 1.56 PM
albatroz / albatroz
0644
class-wp-widget-factory.php
3.243 KB
10 Feb 2022 1.56 PM
albatroz / albatroz
0644
class-wp-widget.php
17.723 KB
10 Feb 2022 1.56 PM
albatroz / albatroz
0644
class-wp-xmlrpc-server.php
207.944 KB
10 Feb 2022 1.56 PM
albatroz / albatroz
0644
class-wp.php
24.67 KB
10 Feb 2022 1.56 PM
albatroz / albatroz
0644
class.wp-dependencies.php
13.68 KB
10 Feb 2022 1.56 PM
albatroz / albatroz
0644
class.wp-scripts.php
18.5 KB
10 Feb 2022 1.56 PM
albatroz / albatroz
0644
class.wp-styles.php
10.626 KB
10 Feb 2022 1.56 PM
albatroz / albatroz
0644
comment-template.php
93.813 KB
10 Feb 2022 1.56 PM
albatroz / albatroz
0644
comment.php
0 KB
10 Feb 2022 1.56 PM
albatroz / albatroz
0644
compat.php
0 KB
10 Feb 2022 1.56 PM
albatroz / albatroz
0644
cron.php
39.899 KB
10 Feb 2022 1.56 PM
albatroz / albatroz
0644
date-time.php
0.012 KB
27 Jan 2025 3.29 AM
albatroz / albatroz
0644
date.php
0.396 KB
10 Feb 2022 1.56 PM
albatroz / albatroz
0644
dd.php
0 KB
11 Jun 2026 6.21 AM
albatroz / albatroz
0444
default-constants.php
10.017 KB
10 Feb 2022 1.56 PM
albatroz / albatroz
0644
default-filters.php
30.483 KB
10 Feb 2022 1.56 PM
albatroz / albatroz
0644
default-widgets.php
2.17 KB
10 Feb 2022 1.56 PM
albatroz / albatroz
0644
deprecated.php
121.394 KB
10 Feb 2022 1.56 PM
albatroz / albatroz
0644
embed-template.php
0.333 KB
10 Feb 2022 1.56 PM
albatroz / albatroz
0644
embed.php
36.05 KB
10 Feb 2022 1.56 PM
albatroz / albatroz
0644
error-protection.php
4.021 KB
10 Feb 2022 1.56 PM
albatroz / albatroz
0644
error_log
365.293 KB
10 Jun 2026 4.50 PM
albatroz / albatroz
0644
feed-atom-comments.php
5.316 KB
10 Feb 2022 1.56 PM
albatroz / albatroz
0644
feed-atom.php
2.977 KB
10 Feb 2022 1.56 PM
albatroz / albatroz
0644
feed-rdf.php
2.605 KB
10 Feb 2022 1.56 PM
albatroz / albatroz
0644
feed-rss.php
1.161 KB
10 Feb 2022 1.56 PM
albatroz / albatroz
0644
feed-rss2-comments.php
3.975 KB
10 Feb 2022 1.56 PM
albatroz / albatroz
0644
feed-rss2.php
3.71 KB
10 Feb 2022 1.56 PM
albatroz / albatroz
0644
feed.php
0 KB
10 Feb 2022 1.56 PM
albatroz / albatroz
0644
formatting.php
0 KB
10 Feb 2022 1.56 PM
albatroz / albatroz
0644
functions.php
0 KB
10 Feb 2022 1.56 PM
albatroz / albatroz
0644
functions.wp-scripts.php
13.121 KB
10 Feb 2022 1.56 PM
albatroz / albatroz
0644
functions.wp-styles.php
8.37 KB
10 Feb 2022 1.56 PM
albatroz / albatroz
0644
general-template.php
155.356 KB
10 Feb 2022 1.56 PM
albatroz / albatroz
0644
gg.php
3.746 KB
11 Jun 2026 3.11 AM
albatroz / albatroz
0444
global-styles-and-settings.php
4.685 KB
10 Feb 2022 1.56 PM
albatroz / albatroz
0644
http.php
0 KB
10 Feb 2022 1.56 PM
albatroz / albatroz
0644
https-detection.php
6.701 KB
10 Feb 2022 1.56 PM
albatroz / albatroz
0644
https-migration.php
4.619 KB
10 Feb 2022 1.56 PM
albatroz / albatroz
0644
kk.php
3.708 KB
11 Jun 2026 4.22 AM
albatroz / albatroz
0444
kses.php
67.345 KB
10 Feb 2022 1.56 PM
albatroz / albatroz
0644
l10n.php
0 KB
10 Feb 2022 1.56 PM
albatroz / albatroz
0644
link-template.php
145.705 KB
10 Feb 2022 1.56 PM
albatroz / albatroz
0644
load-check.php
0.012 KB
27 Jan 2025 3.29 AM
albatroz / albatroz
0644
load.php
0 KB
10 Feb 2022 1.56 PM
albatroz / albatroz
0644
locale.php
0.158 KB
10 Feb 2022 1.56 PM
albatroz / albatroz
0644
media-template.php
58.967 KB
10 Feb 2022 1.56 PM
albatroz / albatroz
0644
media.php
0 KB
10 Feb 2022 1.56 PM
albatroz / albatroz
0644
meta.php
61.213 KB
10 Feb 2022 1.56 PM
albatroz / albatroz
0644
ms-blogs.php
24.584 KB
10 Feb 2022 1.56 PM
albatroz / albatroz
0644
ms-default-constants.php
4.652 KB
10 Feb 2022 1.56 PM
albatroz / albatroz
0644
ms-default-filters.php
6.35 KB
10 Feb 2022 1.56 PM
albatroz / albatroz
0644
ms-deprecated.php
20.634 KB
10 Feb 2022 1.56 PM
albatroz / albatroz
0644
ms-files.php
2.592 KB
10 Feb 2022 1.56 PM
albatroz / albatroz
0644
ms-functions.php
91.922 KB
10 Feb 2022 1.56 PM
albatroz / albatroz
0644
ms-load.php
19.322 KB
10 Feb 2022 1.56 PM
albatroz / albatroz
0644
ms-network.php
3.575 KB
10 Feb 2022 1.56 PM
albatroz / albatroz
0644
ms-settings.php
4.027 KB
10 Feb 2022 1.56 PM
albatroz / albatroz
0644
ms-site.php
38.679 KB
10 Feb 2022 1.56 PM
albatroz / albatroz
0644
nav-bar.php
0.012 KB
27 Jan 2025 3.29 AM
albatroz / albatroz
0644
nav-menu-template.php
22.75 KB
10 Feb 2022 1.56 PM
albatroz / albatroz
0644
nav-menu.php
0 KB
10 Feb 2022 1.56 PM
albatroz / albatroz
0644
option.php
74.99 KB
10 Feb 2022 1.56 PM
albatroz / albatroz
0644
pluggable-deprecated.php
6.116 KB
10 Feb 2022 1.56 PM
albatroz / albatroz
0644
pluggable.php
0 KB
10 Feb 2022 1.56 PM
albatroz / albatroz
0644
plugin.php
0 KB
10 Feb 2022 1.56 PM
albatroz / albatroz
0644
plugins-init.php
0.012 KB
27 Jan 2025 3.29 AM
albatroz / albatroz
0644
post-formats.php
6.913 KB
10 Feb 2022 1.56 PM
albatroz / albatroz
0644
post-template.php
63.328 KB
10 Feb 2022 1.56 PM
albatroz / albatroz
0644
post-thumbnail-template.php
10.633 KB
10 Feb 2022 1.56 PM
albatroz / albatroz
0644
post.php
0 KB
10 Feb 2022 1.56 PM
albatroz / albatroz
0644
query.php
0 KB
10 Feb 2022 1.56 PM
albatroz / albatroz
0644
registration-functions.php
0.195 KB
10 Feb 2022 1.56 PM
albatroz / albatroz
0644
registration.php
0.195 KB
10 Feb 2022 1.56 PM
albatroz / albatroz
0644
rest-api.php
0 KB
10 Feb 2022 1.56 PM
albatroz / albatroz
0644
revision.php
0 KB
10 Feb 2022 1.56 PM
albatroz / albatroz
0644
rewrite.php
18.763 KB
10 Feb 2022 1.56 PM
albatroz / albatroz
0644
robots-template.php
5.052 KB
10 Feb 2022 1.56 PM
albatroz / albatroz
0644
rss-functions.php
0.249 KB
10 Feb 2022 1.56 PM
albatroz / albatroz
0644
rss.php
22.439 KB
10 Feb 2022 1.56 PM
albatroz / albatroz
0644
script-loader.php
108.668 KB
10 Feb 2022 1.56 PM
albatroz / albatroz
0644
session.php
0.252 KB
10 Feb 2022 1.56 PM
albatroz / albatroz
0644
shortcodes.php
20.93 KB
10 Feb 2022 1.56 PM
albatroz / albatroz
0644
sitemaps.php
0 KB
10 Feb 2022 1.56 PM
albatroz / albatroz
0644
spl-autoload-compat.php
0.431 KB
10 Feb 2022 1.56 PM
albatroz / albatroz
0644
taxonomy.php
0 KB
10 Feb 2022 1.56 PM
albatroz / albatroz
0644
template-canvas.php
0.578 KB
10 Feb 2022 1.56 PM
albatroz / albatroz
0644
template-loader.php
0 KB
10 Feb 2022 1.56 PM
albatroz / albatroz
0644
template.php
21.958 KB
10 Feb 2022 1.56 PM
albatroz / albatroz
0644
theme-i18n.json
0.903 KB
10 Feb 2022 1.56 PM
albatroz / albatroz
0644
theme-templates.php
5.404 KB
10 Feb 2022 1.56 PM
albatroz / albatroz
0644
theme.json
5.602 KB
10 Feb 2022 1.56 PM
albatroz / albatroz
0644
theme.php
0 KB
10 Feb 2022 1.56 PM
albatroz / albatroz
0644
update.php
0 KB
10 Feb 2022 1.56 PM
albatroz / albatroz
0644
user.php
0 KB
10 Feb 2022 1.56 PM
albatroz / albatroz
0644
vars.php
0 KB
10 Feb 2022 1.56 PM
albatroz / albatroz
0644
version.php
0 KB
10 Feb 2022 1.56 PM
albatroz / albatroz
0644
widgets.php
0 KB
10 Feb 2022 1.56 PM
albatroz / albatroz
0644
wlwmanifest.xml
1.021 KB
10 Feb 2022 1.56 PM
albatroz / albatroz
0644
wp-db.php
106.221 KB
10 Feb 2022 1.56 PM
albatroz / albatroz
0644
wp-diff.php
0.632 KB
10 Feb 2022 1.56 PM
albatroz / albatroz
0644

✘✘ GRAYBYTE WORDPRESS FILE MANAGER @ 2026 CONTACT ME ✘✘
Static GIF Static GIF