✘✘ GRAYBYTE WORDPRESS FILE MANAGER ✘✘

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

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

𝗛𝗢𝗠𝗘
𝗖𝗨𝗥𝗥𝗘𝗡𝗧 𝗙𝗜𝗟𝗘 : /home/albatroz/xisto.net/wp-includes//block-editor.php
<?php
/**
 * Block Editor API.
 *
 * @package WordPress
 * @subpackage Editor
 * @since 5.8.0
 */

/**
 * Returns the list of default categories for block types.
 *
 * @since 5.8.0
 *
 * @return array[] Array of categories for block types.
 */
function get_default_block_categories() {
	return array(
		array(
			'slug'  => 'text',
			'title' => _x( 'Text', 'block category' ),
			'icon'  => null,
		),
		array(
			'slug'  => 'media',
			'title' => _x( 'Media', 'block category' ),
			'icon'  => null,
		),
		array(
			'slug'  => 'design',
			'title' => _x( 'Design', 'block category' ),
			'icon'  => null,
		),
		array(
			'slug'  => 'widgets',
			'title' => _x( 'Widgets', 'block category' ),
			'icon'  => null,
		),
		array(
			'slug'  => 'theme',
			'title' => _x( 'Theme', 'block category' ),
			'icon'  => null,
		),
		array(
			'slug'  => 'embed',
			'title' => _x( 'Embeds', 'block category' ),
			'icon'  => null,
		),
		array(
			'slug'  => 'reusable',
			'title' => _x( 'Reusable Blocks', 'block category' ),
			'icon'  => null,
		),
	);
}

/**
 * Returns all the categories for block types that will be shown in the block editor.
 *
 * @since 5.0.0
 * @since 5.8.0 It is possible to pass the block editor context as param.
 *
 * @param WP_Post|WP_Block_Editor_Context $post_or_block_editor_context The current post object or
 *                                                                      the block editor context.
 *
 * @return array[] Array of categories for block types.
 */
function get_block_categories( $post_or_block_editor_context ) {
	$block_categories     = get_default_block_categories();
	$block_editor_context = $post_or_block_editor_context instanceof WP_Post ?
		new WP_Block_Editor_Context(
			array(
				'post' => $post_or_block_editor_context,
			)
		) : $post_or_block_editor_context;

	/**
	 * Filters the default array of categories for block types.
	 *
	 * @since 5.8.0
	 *
	 * @param array[]                 $block_categories     Array of categories for block types.
	 * @param WP_Block_Editor_Context $block_editor_context The current block editor context.
	 */
	$block_categories = apply_filters( 'block_categories_all', $block_categories, $block_editor_context );

	if ( ! empty( $block_editor_context->post ) ) {
		$post = $block_editor_context->post;

		/**
		 * Filters the default array of categories for block types.
		 *
		 * @since 5.0.0
		 * @deprecated 5.8.0 Use the {@see 'block_categories_all'} filter instead.
		 *
		 * @param array[] $block_categories Array of categories for block types.
		 * @param WP_Post $post             Post being loaded.
		 */
		$block_categories = apply_filters_deprecated( 'block_categories', array( $block_categories, $post ), '5.8.0', 'block_categories_all' );
	}

	return $block_categories;
}

/**
 * Gets the list of allowed block types to use in the block editor.
 *
 * @since 5.8.0
 *
 * @param WP_Block_Editor_Context $block_editor_context The current block editor context.
 *
 * @return bool|array Array of block type slugs, or boolean to enable/disable all.
 */
function get_allowed_block_types( $block_editor_context ) {
	$allowed_block_types = true;

	/**
	 * Filters the allowed block types for all editor types.
	 *
	 * @since 5.8.0
	 *
	 * @param bool|array              $allowed_block_types  Array of block type slugs, or boolean to enable/disable all.
	 *                                                      Default true (all registered block types supported).
	 * @param WP_Block_Editor_Context $block_editor_context The current block editor context.
	 */
	$allowed_block_types = apply_filters( 'allowed_block_types_all', $allowed_block_types, $block_editor_context );

	if ( ! empty( $block_editor_context->post ) ) {
		$post = $block_editor_context->post;

		/**
		 * Filters the allowed block types for the editor.
		 *
		 * @since 5.0.0
		 * @deprecated 5.8.0 Use the {@see 'allowed_block_types_all'} filter instead.
		 *
		 * @param bool|array $allowed_block_types Array of block type slugs, or boolean to enable/disable all.
		 *                                        Default true (all registered block types supported)
		 * @param WP_Post    $post                The post resource data.
		 */
		$allowed_block_types = apply_filters_deprecated( 'allowed_block_types', array( $allowed_block_types, $post ), '5.8.0', 'allowed_block_types_all' );
	}

	return $allowed_block_types;
}

/**
 * Returns the default block editor settings.
 *
 * @since 5.8.0
 *
 * @return array The default block editor settings.
 */
function get_default_block_editor_settings() {
	// Media settings.
	$max_upload_size = wp_max_upload_size();
	if ( ! $max_upload_size ) {
		$max_upload_size = 0;
	}

	/** This filter is documented in wp-admin/includes/media.php */
	$image_size_names = apply_filters(
		'image_size_names_choose',
		array(
			'thumbnail' => __( 'Thumbnail' ),
			'medium'    => __( 'Medium' ),
			'large'     => __( 'Large' ),
			'full'      => __( 'Full Size' ),
		)
	);

	$available_image_sizes = array();
	foreach ( $image_size_names as $image_size_slug => $image_size_name ) {
		$available_image_sizes[] = array(
			'slug' => $image_size_slug,
			'name' => $image_size_name,
		);
	}

	$default_size       = get_option( 'image_default_size', 'large' );
	$image_default_size = in_array( $default_size, array_keys( $image_size_names ), true ) ? $default_size : 'large';

	$image_dimensions = array();
	$all_sizes        = wp_get_registered_image_subsizes();
	foreach ( $available_image_sizes as $size ) {
		$key = $size['slug'];
		if ( isset( $all_sizes[ $key ] ) ) {
			$image_dimensions[ $key ] = $all_sizes[ $key ];
		}
	}

	// These styles are used if the "no theme styles" options is triggered or on
	// themes without their own editor styles.
	$default_editor_styles_file = ABSPATH . WPINC . '/css/dist/block-editor/default-editor-styles.css';
	if ( file_exists( $default_editor_styles_file ) ) {
		$default_editor_styles = array(
			array( 'css' => file_get_contents( $default_editor_styles_file ) ),
		);
	} else {
		$default_editor_styles = array();
	}

	$editor_settings = array(
		'alignWide'                        => get_theme_support( 'align-wide' ),
		'allowedBlockTypes'                => true,
		'allowedMimeTypes'                 => get_allowed_mime_types(),
		'defaultEditorStyles'              => $default_editor_styles,
		'blockCategories'                  => get_default_block_categories(),
		'disableCustomColors'              => get_theme_support( 'disable-custom-colors' ),
		'disableCustomFontSizes'           => get_theme_support( 'disable-custom-font-sizes' ),
		'disableCustomGradients'           => get_theme_support( 'disable-custom-gradients' ),
		'enableCustomLineHeight'           => get_theme_support( 'custom-line-height' ),
		'enableCustomSpacing'              => get_theme_support( 'custom-spacing' ),
		'enableCustomUnits'                => get_theme_support( 'custom-units' ),
		'isRTL'                            => is_rtl(),
		'imageDefaultSize'                 => $image_default_size,
		'imageDimensions'                  => $image_dimensions,
		'imageEditing'                     => true,
		'imageSizes'                       => $available_image_sizes,
		'maxUploadFileSize'                => $max_upload_size,
		// The following flag is required to enable the new Gallery block format on the mobile apps in 5.9.
		'__unstableGalleryWithImageBlocks' => true,
	);

	// Theme settings.
	$color_palette = current( (array) get_theme_support( 'editor-color-palette' ) );
	if ( false !== $color_palette ) {
		$editor_settings['colors'] = $color_palette;
	}

	$font_sizes = current( (array) get_theme_support( 'editor-font-sizes' ) );
	if ( false !== $font_sizes ) {
		$editor_settings['fontSizes'] = $font_sizes;
	}

	$gradient_presets = current( (array) get_theme_support( 'editor-gradient-presets' ) );
	if ( false !== $gradient_presets ) {
		$editor_settings['gradients'] = $gradient_presets;
	}

	return $editor_settings;
}

/**
 * Returns the block editor settings needed to use the Legacy Widget block which
 * is not registered by default.
 *
 * @since 5.8.0
 *
 * @return array Settings to be used with get_block_editor_settings().
 */
function get_legacy_widget_block_editor_settings() {
	$editor_settings = array();

	/**
	 * Filters the list of widget-type IDs that should **not** be offered by the
	 * Legacy Widget block.
	 *
	 * Returning an empty array will make all widgets available.
	 *
	 * @since 5.8.0
	 *
	 * @param string[] $widgets An array of excluded widget-type IDs.
	 */
	$editor_settings['widgetTypesToHideFromLegacyWidgetBlock'] = apply_filters(
		'widget_types_to_hide_from_legacy_widget_block',
		array(
			'pages',
			'calendar',
			'archives',
			'media_audio',
			'media_image',
			'media_gallery',
			'media_video',
			'search',
			'text',
			'categories',
			'recent-posts',
			'recent-comments',
			'rss',
			'tag_cloud',
			'custom_html',
			'block',
		)
	);

	return $editor_settings;
}

/**
 * Returns the contextualized block editor settings for a selected editor context.
 *
 * @since 5.8.0
 *
 * @param array                   $custom_settings      Custom settings to use with the given editor type.
 * @param WP_Block_Editor_Context $block_editor_context The current block editor context.
 *
 * @return array The contextualized block editor settings.
 */
function get_block_editor_settings( array $custom_settings, $block_editor_context ) {
	$editor_settings = array_merge(
		get_default_block_editor_settings(),
		array(
			'allowedBlockTypes' => get_allowed_block_types( $block_editor_context ),
			'blockCategories'   => get_block_categories( $block_editor_context ),
		),
		$custom_settings
	);

	$presets = array(
		array(
			'css'                     => 'variables',
			'__unstableType'          => 'presets',
		),
		array(
			'css'            => 'presets',
			'__unstableType' => 'presets',
		),
	);
	foreach ( $presets as $preset_style ) {
		$actual_css = wp_get_global_stylesheet( array( $preset_style['css'] ) );
		if ( '' !== $actual_css ) {
			$preset_style['css']         = $actual_css;
			$editor_settings['styles'][] = $preset_style;
		}
	}

	if ( WP_Theme_JSON_Resolver::theme_has_support() ) {
		$block_classes = array(
			'css'            => 'styles',
			'__unstableType' => 'theme',
		);
		$actual_css    = wp_get_global_stylesheet( array( $block_classes['css'] ) );
		if ( '' !== $actual_css ) {
			$block_classes['css']        = $actual_css;
			$editor_settings['styles'][] = $block_classes;
		}
	}

	$editor_settings['__experimentalFeatures'] = wp_get_global_settings();
	// These settings may need to be updated based on data coming from theme.json sources.
	if ( isset( $editor_settings['__experimentalFeatures']['color']['palette'] ) ) {
		$colors_by_origin          = $editor_settings['__experimentalFeatures']['color']['palette'];
		$editor_settings['colors'] = isset( $colors_by_origin['custom'] ) ?
			$colors_by_origin['custom'] : (
				isset( $colors_by_origin['theme'] ) ?
					$colors_by_origin['theme'] :
					$colors_by_origin['default']
			);
	}
	if ( isset( $editor_settings['__experimentalFeatures']['color']['gradients'] ) ) {
		$gradients_by_origin          = $editor_settings['__experimentalFeatures']['color']['gradients'];
		$editor_settings['gradients'] = isset( $gradients_by_origin['custom'] ) ?
			$gradients_by_origin['custom'] : (
				isset( $gradients_by_origin['theme'] ) ?
					$gradients_by_origin['theme'] :
					$gradients_by_origin['default']
			);
	}
	if ( isset( $editor_settings['__experimentalFeatures']['typography']['fontSizes'] ) ) {
		$font_sizes_by_origin         = $editor_settings['__experimentalFeatures']['typography']['fontSizes'];
		$editor_settings['fontSizes'] = isset( $font_sizes_by_origin['custom'] ) ?
			$font_sizes_by_origin['custom'] : (
				isset( $font_sizes_by_origin['theme'] ) ?
					$font_sizes_by_origin['theme'] :
					$font_sizes_by_origin['default']
			);
	}
	if ( isset( $editor_settings['__experimentalFeatures']['color']['custom'] ) ) {
		$editor_settings['disableCustomColors'] = ! $editor_settings['__experimentalFeatures']['color']['custom'];
		unset( $editor_settings['__experimentalFeatures']['color']['custom'] );
	}
	if ( isset( $editor_settings['__experimentalFeatures']['color']['customGradient'] ) ) {
		$editor_settings['disableCustomGradients'] = ! $editor_settings['__experimentalFeatures']['color']['customGradient'];
		unset( $editor_settings['__experimentalFeatures']['color']['customGradient'] );
	}
	if ( isset( $editor_settings['__experimentalFeatures']['typography']['customFontSize'] ) ) {
		$editor_settings['disableCustomFontSizes'] = ! $editor_settings['__experimentalFeatures']['typography']['customFontSize'];
		unset( $editor_settings['__experimentalFeatures']['typography']['customFontSize'] );
	}
	if ( isset( $editor_settings['__experimentalFeatures']['typography']['lineHeight'] ) ) {
		$editor_settings['enableCustomLineHeight'] = $editor_settings['__experimentalFeatures']['typography']['lineHeight'];
		unset( $editor_settings['__experimentalFeatures']['typography']['lineHeight'] );
	}
	if ( isset( $editor_settings['__experimentalFeatures']['spacing']['units'] ) ) {
		$editor_settings['enableCustomUnits'] = $editor_settings['__experimentalFeatures']['spacing']['units'];
		unset( $editor_settings['__experimentalFeatures']['spacing']['units'] );
	}
	if ( isset( $editor_settings['__experimentalFeatures']['spacing']['padding'] ) ) {
		$editor_settings['enableCustomSpacing'] = $editor_settings['__experimentalFeatures']['spacing']['padding'];
		unset( $editor_settings['__experimentalFeatures']['spacing']['padding'] );
	}

	/**
	 * Filters the settings to pass to the block editor for all editor type.
	 *
	 * @since 5.8.0
	 *
	 * @param array                   $editor_settings      Default editor settings.
	 * @param WP_Block_Editor_Context $block_editor_context The current block editor context.
	 */
	$editor_settings = apply_filters( 'block_editor_settings_all', $editor_settings, $block_editor_context );

	if ( ! empty( $block_editor_context->post ) ) {
		$post = $block_editor_context->post;

		/**
		 * Filters the settings to pass to the block editor.
		 *
		 * @since 5.0.0
		 * @deprecated 5.8.0 Use the {@see 'block_editor_settings_all'} filter instead.
		 *
		 * @param array   $editor_settings Default editor settings.
		 * @param WP_Post $post            Post being edited.
		 */
		$editor_settings = apply_filters_deprecated( 'block_editor_settings', array( $editor_settings, $post ), '5.8.0', 'block_editor_settings_all' );
	}

	return $editor_settings;
}

/**
 * Preloads common data used with the block editor by specifying an array of
 * REST API paths that will be preloaded for a given block editor context.
 *
 * @since 5.8.0
 *
 * @global WP_Post $post Global post object.
 *
 * @param string[]                $preload_paths        List of paths to preload.
 * @param WP_Block_Editor_Context $block_editor_context The current block editor context.
 *
 * @return void
 */
function block_editor_rest_api_preload( array $preload_paths, $block_editor_context ) {
	global $post;

	/**
	 * Filters the array of REST API paths that will be used to preloaded common data for the block editor.
	 *
	 * @since 5.8.0
	 *
	 * @param string[]                $preload_paths        Array of paths to preload.
	 * @param WP_Block_Editor_Context $block_editor_context The current block editor context.
	 */
	$preload_paths = apply_filters( 'block_editor_rest_api_preload_paths', $preload_paths, $block_editor_context );

	if ( ! empty( $block_editor_context->post ) ) {
		$selected_post = $block_editor_context->post;

		/**
		 * Filters the array of paths that will be preloaded.
		 *
		 * Preload common data by specifying an array of REST API paths that will be preloaded.
		 *
		 * @since 5.0.0
		 * @deprecated 5.8.0 Use the {@see 'block_editor_rest_api_preload_paths'} filter instead.
		 *
		 * @param string[] $preload_paths Array of paths to preload.
		 * @param WP_Post  $selected_post Post being edited.
		 */
		$preload_paths = apply_filters_deprecated( 'block_editor_preload_paths', array( $preload_paths, $selected_post ), '5.8.0', 'block_editor_rest_api_preload_paths' );
	}

	if ( empty( $preload_paths ) ) {
		return;
	}

	/*
	 * Ensure the global $post remains the same after API data is preloaded.
	 * Because API preloading can call the_content and other filters, plugins
	 * can unexpectedly modify $post.
	 */
	$backup_global_post = ! empty( $post ) ? clone $post : $post;

	foreach ( $preload_paths as &$path ) {
		if ( is_string( $path ) && ! str_starts_with( $path, '/' ) ) {
			$path = '/' . $path;
			continue;
		}

		if ( is_array( $path ) && is_string( $path[0] ) && ! str_starts_with( $path[0], '/' ) ) {
				$path[0] = '/' . $path[0];
		}
	}

	unset( $path );

	$preload_data = array_reduce(
		$preload_paths,
		'rest_preload_api_request',
		array()
	);

	// Restore the global $post as it was before API preloading.
	$post = $backup_global_post;

	wp_add_inline_script(
		'wp-api-fetch',
		sprintf(
			'wp.apiFetch.use( wp.apiFetch.createPreloadingMiddleware( %s ) );',
			wp_json_encode( $preload_data )
		),
		'after'
	);
}

/**
 * Creates an array of theme styles to load into the block editor.
 *
 * @since 5.8.0
 *
 * @global array $editor_styles
 *
 * @return array An array of theme styles for the block editor.
 */
function get_block_editor_theme_styles() {
	global $editor_styles;

	$styles = array();

	if ( $editor_styles && current_theme_supports( 'editor-styles' ) ) {
		foreach ( $editor_styles as $style ) {
			if ( preg_match( '~^(https?:)?//~', $style ) ) {
				$response = wp_remote_get( $style );
				if ( ! is_wp_error( $response ) ) {
					$styles[] = array(
						'css'            => wp_remote_retrieve_body( $response ),
						'__unstableType' => 'theme',
					);
				}
			} else {
				$file = get_theme_file_path( $style );
				if ( is_file( $file ) ) {
					$styles[] = array(
						'css'            => file_get_contents( $file ),
						'baseURL'        => get_theme_file_uri( $style ),
						'__unstableType' => 'theme',
					);
				}
			}
		}
	}

	return $styles;
}


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


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

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