$83 GRAYBYTE WORDPRESS FILE MANAGER $20

SERVER : webd004.cluster105.gra.hosting.ovh.net #1 SMP Fri May 15 02:41:25 UTC 2026
SERVER IP : 213.186.33.16 | ADMIN IP 216.73.217.13
OPTIONS : CRL = ON | WGT = ON | SDO = OFF | PKEX = OFF
DEACTIVATED : _dyuweyrj4,_dyuweyrj4r,dl

/home/agencefrei/www/wp-includes/

HOME
Current File : /home/agencefrei/www/wp-includes//compat.php
<?php
/**
 * WordPress implementation for PHP functions either missing from older PHP versions or not included by default.
 *
 * This file is loaded extremely early and the functions can be relied upon by drop-ins.
 * Ergo, please ensure you do not rely on external functions when writing code for this file.
 * Only use functions built into PHP or are defined in this file and have adequate testing
 * and error suppression to ensure the file will run correctly and not break websites.
 *
 * @package PHP
 * @access private
 */

// If gettext isn't available.
if ( ! function_exists( '_' ) ) {
	/**
	 * Compat function to mimic _(), an alias of gettext().
	 *
	 * @since 0.71
	 *
	 * @see https://php.net/manual/en/function.gettext.php
	 *
	 * @param string $message The message being translated.
	 * @return string
	 */
	function _( $message ) {
		return $message;
	}
}

/**
 * Returns whether PCRE/u (PCRE_UTF8 modifier) is available for use.
 *
 * @ignore
 * @since 4.2.2
 * @since 6.9.0 Deprecated the `$set` argument.
 * @access private
 *
 * @param bool $set Deprecated. This argument is no longer used for testing purposes.
 */
function _wp_can_use_pcre_u( $set = null ) {
	static $utf8_pcre = null;

	if ( isset( $set ) ) {
		_deprecated_argument( __FUNCTION__, '6.9.0' );
	}

	if ( isset( $utf8_pcre ) ) {
		return $utf8_pcre;
	}

	$utf8_pcre = true;
	set_error_handler(
		function ( $errno, $errstr ) use ( &$utf8_pcre ) {
			if ( str_starts_with( $errstr, 'preg_match():' ) ) {
				$utf8_pcre = false;
				return true;
			}

			return false;
		},
		E_WARNING
	);

	/*
	 * Attempt to compile a PCRE pattern with the PCRE_UTF8 flag. For
	 * systems lacking Unicode support this will trigger a warning
	 * during compilation, which the error handler will intercept.
	 */
	preg_match( '//u', '' );
	restore_error_handler();

	return $utf8_pcre;
}

/**
 * Indicates if a given slug for a character set represents the UTF-8 text encoding.
 *
 * A charset is considered to represent UTF-8 if it is a case-insensitive match
 * of "UTF-8" with or without the hyphen.
 *
 * Example:
 *
 *     true  === _is_utf8_charset( 'UTF-8' );
 *     true  === _is_utf8_charset( 'utf8' );
 *     false === _is_utf8_charset( 'latin1' );
 *     false === _is_utf8_charset( 'UTF 8' );
 *
 *     // Only strings match.
 *     false === _is_utf8_charset( [ 'charset' => 'utf-8' ] );
 *
 * `is_utf8_charset` should be used outside of this file.
 *
 * @ignore
 * @since 6.6.1
 *
 * @param string $charset_slug Slug representing a text character encoding, or "charset".
 *                             E.g. "UTF-8", "Windows-1252", "ISO-8859-1", "SJIS".
 *
 * @return bool Whether the slug represents the UTF-8 encoding.
 */
function _is_utf8_charset( $charset_slug ) {
	if ( ! is_string( $charset_slug ) ) {
		return false;
	}

	return (
		0 === strcasecmp( 'UTF-8', $charset_slug ) ||
		0 === strcasecmp( 'UTF8', $charset_slug )
	);
}

if ( ! function_exists( 'mb_substr' ) ) :
	/**
	 * Compat function to mimic mb_substr().
	 *
	 * @ignore
	 * @since 3.2.0
	 *
	 * @see _mb_substr()
	 *
	 * @param string      $string   The string to extract the substring from.
	 * @param int         $start    Position to being extraction from in `$string`.
	 * @param int|null    $length   Optional. Maximum number of characters to extract from `$string`.
	 *                              Default null.
	 * @param string|null $encoding Optional. Character encoding to use. Default null.
	 * @return string Extracted substring.
	 */
	function mb_substr( $string, $start, $length = null, $encoding = null ) { // phpcs:ignore Universal.NamingConventions.NoReservedKeywordParameterNames.stringFound
		return _mb_substr( $string, $start, $length, $encoding );
	}
endif;

/**
 * Internal compat function to mimic mb_substr().
 *
 * Only supports UTF-8 and non-shifting single-byte encodings. For all other encodings
 * expect the substrings to be misaligned. When the given encoding (or the `blog_charset`
 * if none is provided) isn’t UTF-8 then the function returns the output of {@see \substr()}.
 *
 * @ignore
 * @since 3.2.0
 *
 * @param string      $str      The string to extract the substring from.
 * @param int         $start    Character offset at which to start the substring extraction.
 * @param int|null    $length   Optional. Maximum number of characters to extract from `$str`.
 *                              Default null.
 * @param string|null $encoding Optional. Character encoding to use. Default null.
 * @return string Extracted substring.
 */
function _mb_substr( $str, $start, $length = null, $encoding = null ) {
	if ( null === $str ) {
		return '';
	}

	// The solution below works only for UTF-8; treat all other encodings as byte streams.
	if ( ! _is_utf8_charset( $encoding ?? get_option( 'blog_charset' ) ) ) {
		return is_null( $length ) ? substr( $str, $start ) : substr( $str, $start, $length );
	}

	$total_length = ( $start < 0 || $length < 0 )
		? _wp_utf8_codepoint_count( $str )
		: 0;

	$normalized_start = $start < 0
		? max( 0, $total_length + $start )
		: $start;

	/*
	 * The starting offset is provided as characters, which means this needs to
	 * find how many bytes that many characters occupies at the start of the string.
	 */
	$starting_byte_offset = _wp_utf8_codepoint_span( $str, 0, $normalized_start );

	$normalized_length = $length < 0
		? max( 0, $total_length - $normalized_start + $length )
		: $length;

	/*
	 * This is the main step. It finds how many bytes the given length of code points
	 * occupies in the input, starting at the byte offset calculated above.
	 */
	$byte_length = isset( $normalized_length )
		? _wp_utf8_codepoint_span( $str, $starting_byte_offset, $normalized_length )
		: ( strlen( $str ) - $starting_byte_offset );

	// The result is a normal byte-level substring using the computed ranges.
	return substr( $str, $starting_byte_offset, $byte_length );
}

if ( ! function_exists( 'mb_strlen' ) ) :
	/**
	 * Compat function to mimic mb_strlen().
	 *
	 * @ignore
	 * @since 4.2.0
	 *
	 * @see _mb_strlen()
	 *
	 * @param string      $string   The string to retrieve the character length from.
	 * @param string|null $encoding Optional. Character encoding to use. Default null.
	 * @return int String length of `$string`.
	 */
	function mb_strlen( $string, $encoding = null ) { // phpcs:ignore Universal.NamingConventions.NoReservedKeywordParameterNames.stringFound
		return _mb_strlen( $string, $encoding );
	}
endif;

/**
 * Internal compat function to mimic mb_strlen().
 *
 * Only supports UTF-8 and non-shifting single-byte encodings. For all other
 * encodings expect the counts to be wrong. When the given encoding (or the
 * `blog_charset` if none is provided) isn’t UTF-8 then the function returns
 * the byte-count of the provided string.
 *
 * @ignore
 * @since 4.2.0
 *
 * @param string      $str      The string to retrieve the character length from.
 * @param string|null $encoding Optional. Count characters according to this encoding.
 *                              Default is to consult `blog_charset`.
 * @return int Count of code points if UTF-8, byte length otherwise.
 */
function _mb_strlen( $str, $encoding = null ) {
	return _is_utf8_charset( $encoding ?? get_option( 'blog_charset' ) )
		? _wp_utf8_codepoint_count( $str )
		: strlen( $str );
}

if ( ! function_exists( 'utf8_encode' ) ) :
	if ( extension_loaded( 'mbstring' ) ) :
		/**
		 * Converts a string from ISO-8859-1 to UTF-8.
		 *
		 * @deprecated Use {@see \mb_convert_encoding()} instead.
		 *
		 * @since 6.9.0
		 *
		 * @param string $iso_8859_1_text Text treated as ISO-8859-1 (latin1) bytes.
		 * @return string Text converted into a UTF-8.
		 */
		function utf8_encode( $iso_8859_1_text ): string {
			_deprecated_function( __FUNCTION__, '6.9.0', 'mb_convert_encoding' );

			return mb_convert_encoding( $iso_8859_1_text, 'UTF-8', 'ISO-8859-1' );
		}

	else :
		/**
		 * @ignore
		 * @private
		 *
		 * @since 6.9.0
		 */
		function utf8_encode( $iso_8859_1_text ): string {
			_deprecated_function( __FUNCTION__, '6.9.0', 'mb_convert_encoding' );

			return _wp_utf8_encode_fallback( $iso_8859_1_text );
		}

	endif;
endif;

if ( ! function_exists( 'utf8_decode' ) ) :
	if ( extension_loaded( 'mbstring' ) ) :
		/**
		 * Converts a string from UTF-8 to ISO-8859-1.
		 *
		 * @deprecated Use {@see \mb_convert_encoding()} instead.
		 *
		 * @since 6.9.0
		 *
		 * @param string $utf8_text Text treated as UTF-8.
		 * @return string Text converted into ISO-8859-1.
		 */
		function utf8_decode( $utf8_text ): string {
			_deprecated_function( __FUNCTION__, '6.9.0', 'mb_convert_encoding' );

			return mb_convert_encoding( $utf8_text, 'ISO-8859-1', 'UTF-8' );
		}

	else :
		/**
		 * @ignore
		 * @private
		 *
		 * @since 6.9.0
		 */
		function utf8_decode( $utf8_text ): string {
			_deprecated_function( __FUNCTION__, '6.9.0', 'mb_convert_encoding' );

			return _wp_utf8_decode_fallback( $utf8_text );
		}

	endif;
endif;

// sodium_crypto_box() was introduced with Sodium in PHP 7.2, but the extension may not be enabled.
if ( ! function_exists( 'sodium_crypto_box' ) ) {
	require ABSPATH . WPINC . '/sodium_compat/autoload.php';
}

if ( ! function_exists( 'array_is_list' ) ) {
	/**
	 * Polyfill for `array_is_list()` function added in PHP 8.1.
	 *
	 * Determines if the given array is a list.
	 *
	 * An array is considered a list if its keys consist of consecutive numbers from 0 to count($array)-1.
	 *
	 * @see https://github.com/symfony/polyfill-php81/tree/main
	 *
	 * @since 6.5.0
	 *
	 * @param array<mixed> $arr The array being evaluated.
	 * @return bool True if array is a list, false otherwise.
	 */
	function array_is_list( $arr ) {
		if ( ( array() === $arr ) || ( array_values( $arr ) === $arr ) ) {
			return true;
		}

		$next_key = -1;

		foreach ( $arr as $k => $v ) {
			if ( ++$next_key !== $k ) {
				return false;
			}
		}

		return true;
	}
}

if ( ! function_exists( 'str_contains' ) ) {
	/**
	 * Polyfill for `str_contains()` function added in PHP 8.0.
	 *
	 * Performs a case-sensitive check indicating if needle is
	 * contained in haystack.
	 *
	 * @since 5.9.0
	 *
	 * @param string $haystack The string to search in.
	 * @param string $needle   The substring to search for in the `$haystack`.
	 * @return bool True if `$needle` is in `$haystack`, otherwise false.
	 */
	function str_contains( $haystack, $needle ) {
		if ( '' === $needle ) {
			return true;
		}

		return false !== strpos( $haystack, $needle );
	}
}

if ( ! function_exists( 'str_starts_with' ) ) {
	/**
	 * Polyfill for `str_starts_with()` function added in PHP 8.0.
	 *
	 * Performs a case-sensitive check indicating if
	 * the haystack begins with needle.
	 *
	 * @since 5.9.0
	 *
	 * @param string $haystack The string to search in.
	 * @param string $needle   The substring to search for in the `$haystack`.
	 * @return bool True if `$haystack` starts with `$needle`, otherwise false.
	 */
	function str_starts_with( $haystack, $needle ) {
		if ( '' === $needle ) {
			return true;
		}

		return 0 === strpos( $haystack, $needle );
	}
}

if ( ! function_exists( 'str_ends_with' ) ) {
	/**
	 * Polyfill for `str_ends_with()` function added in PHP 8.0.
	 *
	 * Performs a case-sensitive check indicating if
	 * the haystack ends with needle.
	 *
	 * @since 5.9.0
	 *
	 * @param string $haystack The string to search in.
	 * @param string $needle   The substring to search for in the `$haystack`.
	 * @return bool True if `$haystack` ends with `$needle`, otherwise false.
	 */
	function str_ends_with( $haystack, $needle ) {
		if ( '' === $haystack ) {
			return '' === $needle;
		}

		$len = strlen( $needle );

		return substr( $haystack, -$len, $len ) === $needle;
	}
}

if ( ! function_exists( 'array_find' ) ) {
	/**
	 * Polyfill for `array_find()` function added in PHP 8.4.
	 *
	 * Searches an array for the first element that passes a given callback.
	 *
	 * @since 6.8.0
	 *
	 * @param array    $array    The array to search.
	 * @param callable $callback The callback to run for each element.
	 * @return mixed|null The first element in the array that passes the `$callback`, otherwise null.
	 */
	function array_find( array $array, callable $callback ) { // phpcs:ignore Universal.NamingConventions.NoReservedKeywordParameterNames.arrayFound
		foreach ( $array as $key => $value ) {
			if ( $callback( $value, $key ) ) {
				return $value;
			}
		}

		return null;
	}
}

if ( ! function_exists( 'array_find_key' ) ) {
	/**
	 * Polyfill for `array_find_key()` function added in PHP 8.4.
	 *
	 * Searches an array for the first key that passes a given callback.
	 *
	 * @since 6.8.0
	 *
	 * @param array    $array    The array to search.
	 * @param callable $callback The callback to run for each element.
	 * @return int|string|null The first key in the array that passes the `$callback`, otherwise null.
	 */
	function array_find_key( array $array, callable $callback ) { // phpcs:ignore Universal.NamingConventions.NoReservedKeywordParameterNames.arrayFound
		foreach ( $array as $key => $value ) {
			if ( $callback( $value, $key ) ) {
				return $key;
			}
		}

		return null;
	}
}

if ( ! function_exists( 'array_any' ) ) {
	/**
	 * Polyfill for `array_any()` function added in PHP 8.4.
	 *
	 * Checks if any element of an array passes a given callback.
	 *
	 * @since 6.8.0
	 *
	 * @param array    $array    The array to check.
	 * @param callable $callback The callback to run for each element.
	 * @return bool True if any element in the array passes the `$callback`, otherwise false.
	 */
	function array_any( array $array, callable $callback ): bool { // phpcs:ignore Universal.NamingConventions.NoReservedKeywordParameterNames.arrayFound
		foreach ( $array as $key => $value ) {
			if ( $callback( $value, $key ) ) {
				return true;
			}
		}

		return false;
	}
}

if ( ! function_exists( 'array_all' ) ) {
	/**
	 * Polyfill for `array_all()` function added in PHP 8.4.
	 *
	 * Checks if all elements of an array pass a given callback.
	 *
	 * @since 6.8.0
	 *
	 * @param array    $array    The array to check.
	 * @param callable $callback The callback to run for each element.
	 * @return bool True if all elements in the array pass the `$callback`, otherwise false.
	 */
	function array_all( array $array, callable $callback ): bool { // phpcs:ignore Universal.NamingConventions.NoReservedKeywordParameterNames.arrayFound
		foreach ( $array as $key => $value ) {
			if ( ! $callback( $value, $key ) ) {
				return false;
			}
		}

		return true;
	}
}

if ( ! function_exists( 'array_first' ) ) {
	/**
	 * Polyfill for `array_first()` function added in PHP 8.5.
	 *
	 * Returns the first element of an array.
	 *
	 * @since 6.9.0
	 *
	 * @param array $array The array to get the first element from.
	 * @return mixed|null The first element of the array, or null if the array is empty.
	 */
	function array_first( array $array ) { // phpcs:ignore Universal.NamingConventions.NoReservedKeywordParameterNames.arrayFound
		if ( empty( $array ) ) {
			return null;
		}

		foreach ( $array as $value ) {
			return $value;
		}
	}
}

if ( ! function_exists( 'array_last' ) ) {
	/**
	 * Polyfill for `array_last()` function added in PHP 8.5.
	 *
	 * Returns the last element of an array.
	 *
	 * @since 6.9.0
	 *
	 * @param array $array The array to get the last element from.
	 * @return mixed|null The last element of the array, or null if the array is empty.
	 */
	function array_last( array $array ) { // phpcs:ignore Universal.NamingConventions.NoReservedKeywordParameterNames.arrayFound
		if ( empty( $array ) ) {
			return null;
		}

		return $array[ array_key_last( $array ) ];
	}
}

// IMAGETYPE_AVIF constant is only defined in PHP 8.x or later.
if ( ! defined( 'IMAGETYPE_AVIF' ) ) {
	define( 'IMAGETYPE_AVIF', 19 );
}

// IMG_AVIF constant is only defined in PHP 8.x or later.
if ( ! defined( 'IMG_AVIF' ) ) {
	define( 'IMG_AVIF', IMAGETYPE_AVIF );
}

// IMAGETYPE_HEIF constant is only defined in PHP 8.5 or later.
if ( ! defined( 'IMAGETYPE_HEIF' ) ) {
	define( 'IMAGETYPE_HEIF', 20 );
}

Current_dir [ WRITEABLE ] Document_root [ WRITEABLE ]


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

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