GRAYBYTE WORDPRESS FILE MANAGER2957

Server IP : 149.255.58.128 / Your IP : 216.73.216.150
System : Linux cloud516.thundercloud.uk 5.14.0-427.26.1.el9_4.x86_64 #1 SMP PREEMPT_DYNAMIC Wed Jul 17 15:51:13 EDT 2024 x86_64
PHP Version : 8.2.28
Disable Function : allow_url_include, apache_child_terminate, apache_setenv, exec, passthru, pcntl_exec, posix_kill, posix_mkfifo, posix_getpwuid, posix_setpgid, posix_setsid, posix_setuid, posix_setgid, posix_seteuid, posix_setegid, posix_uname, proc_close, proc_get_status, proc_open, proc_terminate, shell_exec, show_source, system
cURL : ON | WGET : ON | Sudo : OFF | Pkexec : OFF
Directory : /home/wheelch2/www.mobilityantalya.co.uk/wp-includes/
Upload Files :
Current_dir [ Writeable ] Document_root [ Writeable ]

Command :


Current File : /home/wheelch2/www.mobilityantalya.co.uk/wp-includes//class-wp-image-editor.php
<?php
/**
 * Base WordPress Image Editor
 *
 * @package WordPress
 * @subpackage Image_Editor
 */

/**
 * Base image editor class from which implementations extend
 *
 * @since 3.5.0
 */
#[AllowDynamicProperties]
abstract class WP_Image_Editor {
	protected $file              = null;
	protected $size              = null;
	protected $mime_type         = null;
	protected $output_mime_type  = null;
	protected $default_mime_type = 'image/jpeg';
	protected $quality           = false;

	// Deprecated since 5.8.1. See get_default_quality() below.
	protected $default_quality = 82;

	/**
	 * Each instance handles a single file.
	 *
	 * @param string $file Path to the file to load.
	 */
	public function __construct( $file ) {
		$this->file = $file;
	}

	/**
	 * Checks to see if current environment supports the editor chosen.
	 * Must be overridden in a subclass.
	 *
	 * @since 3.5.0
	 *
	 * @abstract
	 *
	 * @param array $args
	 * @return bool
	 */
	public static function test( $args = array() ) {
		return false;
	}

	/**
	 * Checks to see if editor supports the mime-type specified.
	 * Must be overridden in a subclass.
	 *
	 * @since 3.5.0
	 *
	 * @abstract
	 *
	 * @param string $mime_type
	 * @return bool
	 */
	public static function supports_mime_type( $mime_type ) {
		return false;
	}

	/**
	 * Loads image from $this->file into editor.
	 *
	 * @since 3.5.0
	 * @abstract
	 *
	 * @return true|WP_Error True if loaded; WP_Error on failure.
	 */
	abstract public function load();

	/**
	 * Saves current image to file.
	 *
	 * @since 3.5.0
	 * @since 6.0.0 The `$filesize` value was added to the returned array.
	 * @abstract
	 *
	 * @param string $destfilename Optional. Destination filename. Default null.
	 * @param string $mime_type    Optional. The mime-type. Default null.
	 * @return array|WP_Error {
	 *     Array on success or WP_Error if the file failed to save.
	 *
	 *     @type string $path      Path to the image file.
	 *     @type string $file      Name of the image file.
	 *     @type int    $width     Image width.
	 *     @type int    $height    Image height.
	 *     @type string $mime-type The mime type of the image.
	 *     @type int    $filesize  File size of the image.
	 * }
	 */
	abstract public function save( $destfilename = null, $mime_type = null );

	/**
	 * Resizes current image.
	 *
	 * At minimum, either a height or width must be provided.
	 * If one of the two is set to null, the resize will
	 * maintain aspect ratio according to the provided dimension.
	 *
	 * @since 3.5.0
	 * @abstract
	 *
	 * @param int|null   $max_w Image width.
	 * @param int|null   $max_h Image height.
	 * @param bool|array $crop  {
	 *     Optional. Image cropping behavior. If false, the image will be scaled (default).
	 *     If true, image will be cropped to the specified dimensions using center positions.
	 *     If an array, the image will be cropped using the array to specify the crop location:
	 *
	 *     @type string $0 The x crop position. Accepts 'left' 'center', or 'right'.
	 *     @type string $1 The y crop position. Accepts 'top', 'center', or 'bottom'.
	 * }
	 * @return true|WP_Error
	 */
	abstract public function resize( $max_w, $max_h, $crop = false );

	/**
	 * Resize multiple images from a single source.
	 *
	 * @since 3.5.0
	 * @abstract
	 *
	 * @param array $sizes {
	 *     An array of image size arrays. Default sizes are 'small', 'medium', 'large'.
	 *
	 *     @type array ...$0 {
	 *         @type int        $width  Image width.
	 *         @type int        $height Image height.
	 *         @type bool|array $crop   Optional. Whether to crop the image. Default false.
	 *     }
	 * }
	 * @return array An array of resized images metadata by size.
	 */
	abstract public function multi_resize( $sizes );

	/**
	 * Crops Image.
	 *
	 * @since 3.5.0
	 * @abstract
	 *
	 * @param int  $src_x   The start x position to crop from.
	 * @param int  $src_y   The start y position to crop from.
	 * @param int  $src_w   The width to crop.
	 * @param int  $src_h   The height to crop.
	 * @param int  $dst_w   Optional. The destination width.
	 * @param int  $dst_h   Optional. The destination height.
	 * @param bool $src_abs Optional. If the source crop points are absolute.
	 * @return true|WP_Error
	 */
	abstract public function crop( $src_x, $src_y, $src_w, $src_h, $dst_w = null, $dst_h = null, $src_abs = false );

	/**
	 * Rotates current image counter-clockwise by $angle.
	 *
	 * @since 3.5.0
	 * @abstract
	 *
	 * @param float $angle
	 * @return true|WP_Error
	 */
	abstract public function rotate( $angle );

	/**
	 * Flips current image.
	 *
	 * @since 3.5.0
	 * @abstract
	 *
	 * @param bool $horz Flip along Horizontal Axis
	 * @param bool $vert Flip along Vertical Axis
	 * @return true|WP_Error
	 */
	abstract public function flip( $horz, $vert );

	/**
	 * Streams current image to browser.
	 *
	 * @since 3.5.0
	 * @abstract
	 *
	 * @param string $mime_type The mime type of the image.
	 * @return true|WP_Error True on success, WP_Error object on failure.
	 */
	abstract public function stream( $mime_type = null );

	/**
	 * Gets dimensions of image.
	 *
	 * @since 3.5.0
	 *
	 * @return int[] {
	 *     Dimensions of the image.
	 *
	 *     @type int $width  The image width.
	 *     @type int $height The image height.
	 * }
	 */
	public function get_size() {
		return $this->size;
	}

	/**
	 * Sets current image size.
	 *
	 * @since 3.5.0
	 *
	 * @param int $width
	 * @param int $height
	 * @return true
	 */
	protected function update_size( $width = null, $height = null ) {
		$this->size = array(
			'width'  => (int) $width,
			'height' => (int) $height,
		);
		return true;
	}

	/**
	 * Gets the Image Compression quality on a 1-100% scale.
	 *
	 * @since 4.0.0
	 *
	 * @return int Compression Quality. Range: [1,100]
	 */
	public function get_quality() {
		if ( ! $this->quality ) {
			$this->set_quality();
		}

		return $this->quality;
	}

	/**
	 * Sets Image Compression quality on a 1-100% scale.
	 *
	 * @since 3.5.0
	 *
	 * @param int $quality Compression Quality. Range: [1,100]
	 * @return true|WP_Error True if set successfully; WP_Error on failure.
	 */
	public function set_quality( $quality = null ) {
		// Use the output mime type if present. If not, fall back to the input/initial mime type.
		$mime_type = ! empty( $this->output_mime_type ) ? $this->output_mime_type : $this->mime_type;
		// Get the default quality setting for the mime type.
		$default_quality = $this->get_default_quality( $mime_type );

		if ( null === $quality ) {
			/**
			 * Filters the default image compression quality setting.
			 *
			 * Applies only during initial editor instantiation, or when set_quality() is run
			 * manually without the `$quality` argument.
			 *
			 * The WP_Image_Editor::set_quality() method has priority over the filter.
			 *
			 * @since 3.5.0
			 *
			 * @param int    $quality   Quality level between 1 (low) and 100 (high).
			 * @param string $mime_type Image mime type.
			 */
			$quality = apply_filters( 'wp_editor_set_quality', $default_quality, $mime_type );

			if ( 'image/jpeg' === $mime_type ) {
				/**
				 * Filters the JPEG compression quality for backward-compatibility.
				 *
				 * Applies only during initial editor instantiation, or when set_quality() is run
				 * manually without the `$quality` argument.
				 *
				 * The WP_Image_Editor::set_quality() method has priority over the filter.
				 *
				 * The filter is evaluated under two contexts: 'image_resize', and 'edit_image',
				 * (when a JPEG image is saved to file).
				 *
				 * @since 2.5.0
				 *
				 * @param int    $quality Quality level between 0 (low) and 100 (high) of the JPEG.
				 * @param string $context Context of the filter.
				 */
				$quality = apply_filters( 'jpeg_quality', $quality, 'image_resize' );
			}

			if ( $quality < 0 || $quality > 100 ) {
				$quality = $default_quality;
			}
		}

		// Allow 0, but squash to 1 due to identical images in GD, and for backward compatibility.
		if ( 0 === $quality ) {
			$quality = 1;
		}

		if ( ( $quality >= 1 ) && ( $quality <= 100 ) ) {
			$this->quality = $quality;
			return true;
		} else {
			return new WP_Error( 'invalid_image_quality', __( 'Attempted to set image quality outside of the range [1,100].' ) );
		}
	}

	/**
	 * Returns the default compression quality setting for the mime type.
	 *
	 * @since 5.8.1
	 *
	 * @param string $mime_type
	 * @return int The default quality setting for the mime type.
	 */
	protected function get_default_quality( $mime_type ) {
		switch ( $mime_type ) {
			case 'image/webp':
				$quality = 86;
				break;
			case 'image/jpeg':
			default:
				$quality = $this->default_quality;
		}

		return $quality;
	}

	/**
	 * Returns preferred mime-type and extension based on provided
	 * file's extension and mime, or current file's extension and mime.
	 *
	 * Will default to $this->default_mime_type if requested is not supported.
	 *
	 * Provides corrected filename only if filename is provided.
	 *
	 * @since 3.5.0
	 *
	 * @param string $filename
	 * @param string $mime_type
	 * @return array { filename|null, extension, mime-type }
	 */
	protected function get_output_format( $filename = null, $mime_type = null ) {
		$new_ext = null;

		// By default, assume specified type takes priority.
		if ( $mime_type ) {
			$new_ext = $this->get_extension( $mime_type );
		}

		if ( $filename ) {
			$file_ext  = strtolower( pathinfo( $filename, PATHINFO_EXTENSION ) );
			$file_mime = $this->get_mime_type( $file_ext );
		} else {
			// If no file specified, grab editor's current extension and mime-type.
			$file_ext  = strtolower( pathinfo( $this->file, PATHINFO_EXTENSION ) );
			$file_mime = $this->mime_type;
		}

		/*
		 * Check to see if specified mime-type is the same as type implied by
		 * file extension. If so, prefer extension from file.
		 */
		if ( ! $mime_type || ( $file_mime === $mime_type ) ) {
			$mime_type = $file_mime;
			$new_ext   = $file_ext;
		}

		/**
		 * Filters the image editor output format mapping.
		 *
		 * Enables filtering the mime type used to save images. By default,
		 * the mapping array is empty, so the mime type matches the source image.
		 *
		 * @see WP_Image_Editor::get_output_format()
		 *
		 * @since 5.8.0
		 *
		 * @param string[] $output_format {
		 *     An array of mime type mappings. Maps a source mime type to a new
		 *     destination mime type. Default empty array.
		 *
		 *     @type string ...$0 The new mime type.
		 * }
		 * @param string $filename  Path to the image.
		 * @param string $mime_type The source image mime type.
		 */
		$output_format = apply_filters( 'image_editor_output_format', array(), $filename, $mime_type );

		if ( isset( $output_format[ $mime_type ] )
			&& $this->supports_mime_type( $output_format[ $mime_type ] )
		) {
			$mime_type = $output_format[ $mime_type ];
			$new_ext   = $this->get_extension( $mime_type );
		}

		/*
		 * Double-check that the mime-type selected is supported by the editor.
		 * If not, choose a default instead.
		 */
		if ( ! $this->supports_mime_type( $mime_type ) ) {
			/**
			 * Filters default mime type prior to getting the file extension.
			 *
			 * @see wp_get_mime_types()
			 *
			 * @since 3.5.0
			 *
			 * @param string $mime_type Mime type string.
			 */
			$mime_type = apply_filters( 'image_editor_default_mime_type', $this->default_mime_type );
			$new_ext   = $this->get_extension( $mime_type );
		}

		/*
		 * Ensure both $filename and $new_ext are not empty.
		 * $this->get_extension() returns false on error which would effectively remove the extension
		 * from $filename. That shouldn't happen, files without extensions are not supported.
		 */
		if ( $filename && $new_ext ) {
			$dir = pathinfo( $filename, PATHINFO_DIRNAME );
			$ext = pathinfo( $filename, PATHINFO_EXTENSION );

			$filename = trailingslashit( $dir ) . wp_basename( $filename, ".$ext" ) . ".{$new_ext}";
		}

		if ( $mime_type && ( $mime_type !== $this->mime_type ) ) {
			// The image will be converted when saving. Set the quality for the new mime-type if not already set.
			if ( $mime_type !== $this->output_mime_type ) {
				$this->output_mime_type = $mime_type;
			}
			$this->set_quality();
		} elseif ( ! empty( $this->output_mime_type ) ) {
			// Reset output_mime_type and quality.
			$this->output_mime_type = null;
			$this->set_quality();
		}

		return array( $filename, $new_ext, $mime_type );
	}

	/**
	 * Builds an output filename based on current file, and adding proper suffix
	 *
	 * @since 3.5.0
	 *
	 * @param string $suffix
	 * @param string $dest_path
	 * @param string $extension
	 * @return string filename
	 */
	public function generate_filename( $suffix = null, $dest_path = null, $extension = null ) {
		// $suffix will be appended to the destination filename, just before the extension.
		if ( ! $suffix ) {
			$suffix = $this->get_suffix();
		}

		$dir = pathinfo( $this->file, PATHINFO_DIRNAME );
		$ext = pathinfo( $this->file, PATHINFO_EXTENSION );

		$name    = wp_basename( $this->file, ".$ext" );
		$new_ext = strtolower( $extension ? $extension : $ext );

		if ( ! is_null( $dest_path ) ) {
			if ( ! wp_is_stream( $dest_path ) ) {
				$_dest_path = realpath( $dest_path );
				if ( $_dest_path ) {
					$dir = $_dest_path;
				}
			} else {
				$dir = $dest_path;
			}
		}

		return trailingslashit( $dir ) . "{$name}-{$suffix}.{$new_ext}";
	}

	/**
	 * Builds and returns proper suffix for file based on height and width.
	 *
	 * @since 3.5.0
	 *
	 * @return string|false suffix
	 */
	public function get_suffix() {
		if ( ! $this->get_size() ) {
			return false;
		}

		return "{$this->size['width']}x{$this->size['height']}";
	}

	/**
	 * Check if a JPEG image has EXIF Orientation tag and rotate it if needed.
	 *
	 * @since 5.3.0
	 *
	 * @return bool|WP_Error True if the image was rotated. False if not rotated (no EXIF data or the image doesn't need to be rotated).
	 *                       WP_Error if error while rotating.
	 */
	public function maybe_exif_rotate() {
		$orientation = null;

		if ( is_callable( 'exif_read_data' ) && 'image/jpeg' === $this->mime_type ) {
			$exif_data = @exif_read_data( $this->file );

			if ( ! empty( $exif_data['Orientation'] ) ) {
				$orientation = (int) $exif_data['Orientation'];
			}
		}

		/**
		 * Filters the `$orientation` value to correct it before rotating or to prevent rotating the image.
		 *
		 * @since 5.3.0
		 *
		 * @param int    $orientation EXIF Orientation value as retrieved from the image file.
		 * @param string $file        Path to the image file.
		 */
		$orientation = apply_filters( 'wp_image_maybe_exif_rotate', $orientation, $this->file );

		if ( ! $orientation || 1 === $orientation ) {
			return false;
		}

		switch ( $orientation ) {
			case 2:
				// Flip horizontally.
				$result = $this->flip( false, true );
				break;
			case 3:
				/*
				 * Rotate 180 degrees or flip horizontally and vertically.
				 * Flipping seems faster and uses less resources.
				 */
				$result = $this->flip( true, true );
				break;
			case 4:
				// Flip vertically.
				$result = $this->flip( true, false );
				break;
			case 5:
				// Rotate 90 degrees counter-clockwise and flip vertically.
				$result = $this->rotate( 90 );

				if ( ! is_wp_error( $result ) ) {
					$result = $this->flip( true, false );
				}

				break;
			case 6:
				// Rotate 90 degrees clockwise (270 counter-clockwise).
				$result = $this->rotate( 270 );
				break;
			case 7:
				// Rotate 90 degrees counter-clockwise and flip horizontally.
				$result = $this->rotate( 90 );

				if ( ! is_wp_error( $result ) ) {
					$result = $this->flip( false, true );
				}

				break;
			case 8:
				// Rotate 90 degrees counter-clockwise.
				$result = $this->rotate( 90 );
				break;
		}

		return $result;
	}

	/**
	 * Either calls editor's save function or handles file as a stream.
	 *
	 * @since 3.5.0
	 *
	 * @param string   $filename
	 * @param callable $callback
	 * @param array    $arguments
	 * @return bool
	 */
	protected function make_image( $filename, $callback, $arguments ) {
		$stream = wp_is_stream( $filename );
		if ( $stream ) {
			ob_start();
		} else {
			// The directory containing the original file may no longer exist when using a replication plugin.
			wp_mkdir_p( dirname( $filename ) );
		}

		$result = call_user_func_array( $callback, $arguments );

		if ( $result && $stream ) {
			$contents = ob_get_contents();

			$fp = fopen( $filename, 'w' );

			if ( ! $fp ) {
				ob_end_clean();
				return false;
			}

			fwrite( $fp, $contents );
			fclose( $fp );
		}

		if ( $stream ) {
			ob_end_clean();
		}

		return $result;
	}

	/**
	 * Returns first matched mime-type from extension,
	 * as mapped from wp_get_mime_types()
	 *
	 * @since 3.5.0
	 *
	 * @param string $extension
	 * @return string|false
	 */
	protected static function get_mime_type( $extension = null ) {
		if ( ! $extension ) {
			return false;
		}

		$mime_types = wp_get_mime_types();
		$extensions = array_keys( $mime_types );

		foreach ( $extensions as $_extension ) {
			if ( preg_match( "/{$extension}/i", $_extension ) ) {
				return $mime_types[ $_extension ];
			}
		}

		return false;
	}

	/**
	 * Returns first matched extension from Mime-type,
	 * as mapped from wp_get_mime_types()
	 *
	 * @since 3.5.0
	 *
	 * @param string $mime_type
	 * @return string|false
	 */
	protected static function get_extension( $mime_type = null ) {
		if ( empty( $mime_type ) ) {
			return false;
		}

		return wp_get_default_extension_for_mime_type( $mime_type );
	}
}

[ Back ]
Name
Size
Last Modified
Owner / Group
Permissions
Options
..
--
May 23 2025 17:53:00
1032 / wheelch2
0755
ID3
--
May 21 2025 00:30:57
1032 / wheelch2
0755
IXR
--
May 21 2025 00:30:57
1032 / wheelch2
0755
PHPMailer
--
May 21 2025 00:30:57
1032 / wheelch2
0755
Requests
--
May 21 2025 00:30:57
1032 / wheelch2
0755
SimplePie
--
May 21 2025 00:30:57
1032 / wheelch2
0755
Text
--
May 21 2025 00:30:57
1032 / wheelch2
0755
assets
--
May 21 2025 00:30:57
1032 / wheelch2
0755
block-patterns
--
May 21 2025 00:30:57
1032 / wheelch2
0755
block-supports
--
May 21 2025 00:30:57
1032 / wheelch2
0755
blocks
--
May 21 2025 00:30:57
1032 / wheelch2
0755
certificates
--
May 21 2025 00:30:57
1032 / wheelch2
0755
css
--
May 21 2025 00:30:57
1032 / wheelch2
0755
customize
--
May 21 2025 00:30:57
1032 / wheelch2
0755
fonts
--
May 21 2025 00:30:57
1032 / wheelch2
0755
html-api
--
May 21 2025 00:30:57
1032 / wheelch2
0755
images
--
May 21 2025 00:30:57
1032 / wheelch2
0755
js
--
May 21 2025 00:30:57
1032 / wheelch2
0755
php-compat
--
May 21 2025 00:30:57
1032 / wheelch2
0755
pomo
--
May 21 2025 00:30:57
1032 / wheelch2
0755
rest-api
--
May 21 2025 00:30:57
1032 / wheelch2
0755
sitemaps
--
May 21 2025 00:30:57
1032 / wheelch2
0755
sodium_compat
--
May 21 2025 00:30:57
1032 / wheelch2
0755
style-engine
--
May 21 2025 00:30:57
1032 / wheelch2
0755
theme-compat
--
May 21 2025 00:30:57
1032 / wheelch2
0755
widgets
--
May 21 2025 00:30:57
1032 / wheelch2
0755
wp-backup
--
May 21 2025 00:30:57
1032 / wheelch2
0755
.htaccess
0.124 KB
May 21 2025 00:30:57
1032 / wheelch2
0444
admin-bar.php
35.152 KB
May 21 2025 00:30:03
1032 / wheelch2
0644
atomlib.php
11.67 KB
April 21 2022 15:54:18
1032 / wheelch2
0644
author-template.php
18.507 KB
May 14 2023 22:28:24
1032 / wheelch2
0644
block-editor.php
27.269 KB
September 27 2023 22:10:20
1032 / wheelch2
0644
block-i18n.json
0.309 KB
August 11 2021 13:38:02
1032 / wheelch2
0644
block-patterns.php
12.639 KB
November 10 2023 21:30:26
1032 / wheelch2
0644
block-template-utils.php
47.348 KB
November 17 2023 12:47:24
1032 / wheelch2
0644
block-template.php
12 KB
October 27 2023 23:06:22
1032 / wheelch2
0644
blocks.php
71.176 KB
June 25 2024 05:51:04
1032 / wheelch2
0644
bookmark-template.php
12.606 KB
June 22 2023 19:27:24
1032 / wheelch2
0644
bookmark.php
15.018 KB
July 10 2023 00:47:30
1032 / wheelch2
0644
cache-compat.php
5.829 KB
October 10 2022 22:52:12
1032 / wheelch2
0644
cache.php
13.158 KB
October 10 2022 22:52:12
1032 / wheelch2
0644
canonical.php
33.269 KB
January 31 2024 13:55:32
1032 / wheelch2
0644
capabilities.php
39.088 KB
July 10 2023 00:47:30
1032 / wheelch2
0644
category-template.php
55.667 KB
September 26 2023 04:57:12
1032 / wheelch2
0644
category.php
12.411 KB
May 21 2025 00:30:03
1032 / wheelch2
0644
class-IXR.php
2.483 KB
February 06 2020 12:03:12
1032 / wheelch2
0644
class-feed.php
0.517 KB
February 06 2020 12:03:12
1032 / wheelch2
0644
class-http.php
0.358 KB
June 17 2022 15:50:14
1032 / wheelch2
0644
class-json.php
42.66 KB
February 03 2023 19:05:20
1032 / wheelch2
0644
class-oembed.php
0.392 KB
June 17 2022 15:50:14
1032 / wheelch2
0644
class-phpass.php
6.551 KB
February 13 2023 14:38:24
1032 / wheelch2
0644
class-phpmailer.php
0.648 KB
July 21 2020 17:28:02
1032 / wheelch2
0644
class-pop3.php
20.478 KB
February 11 2023 18:13:22
1032 / wheelch2
0644
class-requests.php
2.185 KB
April 05 2023 17:42:26
1032 / wheelch2
0644
class-simplepie.php
95.824 KB
May 13 2023 02:05:22
1032 / wheelch2
0644
class-smtp.php
0.446 KB
January 26 2021 19:15:58
1032 / wheelch2
0644
class-snoopy.php
36.831 KB
February 03 2023 19:05:20
1032 / wheelch2
0644
class-walker-category-dropdown.php
2.411 KB
September 14 2023 17:16:20
1032 / wheelch2
0644
class-walker-category.php
8.278 KB
September 08 2023 14:02:24
1032 / wheelch2
0644
class-walker-comment.php
13.88 KB
September 09 2023 13:58:26
1032 / wheelch2
0644
class-walker-nav-menu.php
11.048 KB
June 27 2023 19:56:28
1032 / wheelch2
0644
class-walker-page-dropdown.php
2.646 KB
September 14 2023 17:16:20
1032 / wheelch2
0644
class-walker-page.php
7.434 KB
September 14 2023 17:16:20
1032 / wheelch2
0644
class-wp-admin-bar.php
16.957 KB
July 10 2023 00:47:30
1032 / wheelch2
0644
class-wp-ajax-response.php
5.143 KB
September 12 2022 20:17:14
1032 / wheelch2
0644
class-wp-application-passwords.php
12.553 KB
May 09 2023 03:07:24
1032 / wheelch2
0644
class-wp-block-editor-context.php
1.318 KB
September 12 2022 20:17:14
1032 / wheelch2
0644
class-wp-block-list.php
4.661 KB
October 09 2023 15:53:28
1032 / wheelch2
0644
class-wp-block-parser-block.php
2.495 KB
June 27 2023 05:15:38
1032 / wheelch2
0644
class-wp-block-parser-frame.php
1.871 KB
June 27 2023 05:15:38
1032 / wheelch2
0644
class-wp-block-parser.php
11.262 KB
October 16 2023 23:47:20
1032 / wheelch2
0644
class-wp-block-pattern-categories-registry.php
5.245 KB
September 12 2022 20:17:14
1032 / wheelch2
0644
class-wp-block-patterns-registry.php
9.841 KB
October 17 2023 20:18:24
1032 / wheelch2
0644
class-wp-block-styles-registry.php
5.745 KB
September 12 2022 20:17:14
1032 / wheelch2
0644
class-wp-block-supports.php
5.39 KB
September 29 2023 14:50:30
1032 / wheelch2
0644
class-wp-block-template.php
1.905 KB
June 23 2023 10:59:24
1032 / wheelch2
0644
class-wp-block-type-registry.php
4.896 KB
October 12 2023 17:04:34
1032 / wheelch2
0644
class-wp-block-type.php
14.397 KB
September 14 2023 17:55:18
1032 / wheelch2
0644
class-wp-block.php
8.204 KB
September 09 2023 13:58:26
1032 / wheelch2
0644
class-wp-classic-to-block-menu-converter.php
3.992 KB
August 21 2023 22:21:20
1032 / wheelch2
0644
class-wp-comment-query.php
46.708 KB
September 09 2023 13:58:26
1032 / wheelch2
0644
class-wp-comment.php
9.152 KB
August 24 2023 13:14:24
1032 / wheelch2
0644
class-wp-customize-control.php
25.236 KB
September 08 2023 14:02:24
1032 / wheelch2
0644
class-wp-customize-manager.php
197.517 KB
September 30 2023 02:09:26
1032 / wheelch2
0644
class-wp-customize-nav-menus.php
55.975 KB
September 26 2023 01:35:22
1032 / wheelch2
0644
class-wp-customize-panel.php
10.42 KB
September 10 2023 13:34:18
1032 / wheelch2
0644
class-wp-customize-section.php
10.98 KB
September 10 2023 13:34:18
1032 / wheelch2
0644
class-wp-customize-setting.php
29.188 KB
September 10 2023 13:34:18
1032 / wheelch2
0644
class-wp-customize-widgets.php
69.934 KB
September 26 2023 01:35:22
1032 / wheelch2
0644
class-wp-date-query.php
34.882 KB
June 22 2023 19:06:26
1032 / wheelch2
0644
class-wp-dependencies.php
13.732 KB
September 08 2023 14:02:24
1032 / wheelch2
0644
class-wp-dependency.php
2.565 KB
November 25 2022 20:42:16
1032 / wheelch2
0644
class-wp-duotone.php
38.519 KB
October 24 2023 15:38:26
1032 / wheelch2
0644
class-wp-editor.php
70.395 KB
July 15 2023 01:29:26
1032 / wheelch2
0644
class-wp-embed.php
15.619 KB
July 10 2023 00:47:30
1032 / wheelch2
0644
class-wp-error.php
7.326 KB
February 21 2023 22:09:20
1032 / wheelch2
0644
class-wp-fatal-error-handler.php
7.688 KB
February 23 2023 16:08:22
1032 / wheelch2
0644
class-wp-feed-cache-transient.php
2.525 KB
September 12 2022 20:17:14
1032 / wheelch2
0644
class-wp-feed-cache.php
0.946 KB
August 10 2023 05:36:22
1032 / wheelch2
0644
class-wp-hook.php
15.625 KB
September 18 2023 17:11:18
1032 / wheelch2
0644
class-wp-http-cookie.php
7.216 KB
June 24 2023 21:47:24
1032 / wheelch2
0644
class-wp-http-curl.php
12.247 KB
September 21 2023 22:59:12
1032 / wheelch2
0644
class-wp-http-encoding.php
6.532 KB
June 22 2023 19:27:24
1032 / wheelch2
0644
class-wp-http-ixr-client.php
3.419 KB
September 12 2022 20:17:14
1032 / wheelch2
0644
class-wp-http-proxy.php
5.84 KB
June 22 2023 19:06:26
1032 / wheelch2
0644
class-wp-http-requests-hooks.php
1.975 KB
December 16 2022 03:02:18
1032 / wheelch2
0644
class-wp-http-requests-response.php
4.297 KB
October 11 2023 11:35:26
1032 / wheelch2
0644
class-wp-http-response.php
2.907 KB
September 12 2022 20:17:14
1032 / wheelch2
0644
class-wp-http-streams.php
16.464 KB
September 21 2023 22:59:12
1032 / wheelch2
0644
class-wp-http.php
39.634 KB
September 26 2023 21:25:20
1032 / wheelch2
0644
class-wp-image-editor-gd.php
17.114 KB
August 19 2023 04:40:24
1032 / wheelch2
0644
class-wp-image-editor-imagick.php
30.47 KB
September 08 2023 14:02:24
1032 / wheelch2
0644
class-wp-image-editor.php
17.172 KB
September 07 2023 19:29:22
1032 / wheelch2
0644
class-wp-list-util.php
7.269 KB
September 09 2023 13:58:26
1032 / wheelch2
0644
class-wp-locale-switcher.php
6.407 KB
July 10 2023 01:55:24
1032 / wheelch2
0644
class-wp-locale.php
15.737 KB
July 10 2023 01:55:24
1032 / wheelch2
0644
class-wp-matchesmapregex.php
1.783 KB
September 12 2022 20:17:14
1032 / wheelch2
0644
class-wp-meta-query.php
29.817 KB
September 09 2023 13:58:26
1032 / wheelch2
0644
class-wp-metadata-lazyloader.php
6.673 KB
May 11 2023 15:45:24
1032 / wheelch2
0644
class-wp-navigation-fallback.php
8.995 KB
October 06 2023 18:36:22
1032 / wheelch2
0644
class-wp-network-query.php
18.839 KB
March 10 2023 22:00:04
1032 / wheelch2
0644
class-wp-network.php
11.903 KB
July 12 2023 14:16:26
1032 / wheelch2
0644
class-wp-object-cache.php
17.182 KB
March 14 2023 22:25:20
1032 / wheelch2
0644
class-wp-oembed-controller.php
6.718 KB
November 13 2022 19:21:20
1032 / wheelch2
0644
class-wp-oembed.php
30.658 KB
July 10 2023 01:55:24
1032 / wheelch2
0644
class-wp-paused-extensions-storage.php
4.943 KB
September 12 2022 20:17:14
1032 / wheelch2
0644
class-wp-post-type.php
29.275 KB
October 10 2023 18:35:22
1032 / wheelch2
0644
class-wp-post.php
6.332 KB
September 12 2022 20:17:14
1032 / wheelch2
0644
class-wp-query.php
148.029 KB
October 13 2023 04:11:24
1032 / wheelch2
0644
class-wp-recovery-mode-cookie-service.php
6.716 KB
October 04 2022 08:29:14
1032 / wheelch2
0644
class-wp-recovery-mode-email-service.php
10.921 KB
May 02 2023 20:15:22
1032 / wheelch2
0644
class-wp-recovery-mode-key-service.php
4.396 KB
February 21 2023 21:29:18
1032 / wheelch2
0644
class-wp-recovery-mode-link-service.php
3.382 KB
September 12 2022 20:17:14
1032 / wheelch2
0644
class-wp-recovery-mode.php
11.167 KB
May 02 2023 20:15:22
1032 / wheelch2
0644
class-wp-rewrite.php
61.943 KB
September 09 2023 13:58:26
1032 / wheelch2
0644
class-wp-role.php
2.464 KB
September 08 2023 14:02:24
1032 / wheelch2
0644
class-wp-roles.php
8.379 KB
July 28 2023 16:07:26
1032 / wheelch2
0644
class-wp-scripts.php
27.991 KB
October 13 2023 23:16:22
1032 / wheelch2
0644
class-wp-session-tokens.php
7.276 KB
September 12 2022 20:17:14
1032 / wheelch2
0644
class-wp-simplepie-file.php
3.298 KB
August 10 2023 05:36:22
1032 / wheelch2
0644
class-wp-simplepie-sanitize-kses.php
1.729 KB
August 10 2023 05:36:22
1032 / wheelch2
0644
class-wp-site-query.php
30.293 KB
June 22 2023 19:06:26
1032 / wheelch2
0644
class-wp-site.php
7.279 KB
September 12 2022 20:17:14
1032 / wheelch2
0644
class-wp-styles.php
10.643 KB
May 02 2023 20:15:22
1032 / wheelch2
0644
class-wp-tax-query.php
19.087 KB
July 08 2023 15:18:24
1032 / wheelch2
0644
class-wp-taxonomy.php
18.132 KB
April 28 2023 03:45:18
1032 / wheelch2
0644
class-wp-term-query.php
40.054 KB
November 01 2023 20:45:16
1032 / wheelch2
0644
class-wp-term.php
5.174 KB
September 12 2022 20:17:14
1032 / wheelch2
0644
class-wp-text-diff-renderer-inline.php
0.81 KB
September 08 2023 14:02:24
1032 / wheelch2
0644
class-wp-text-diff-renderer-table.php
18.366 KB
October 15 2023 19:25:24
1032 / wheelch2
0644
class-wp-textdomain-registry.php
5.836 KB
July 10 2023 01:55:24
1032 / wheelch2
0644
class-wp-theme-json-data.php
1.517 KB
September 08 2023 14:02:24
1032 / wheelch2
0644
class-wp-theme-json-resolver.php
24.063 KB
September 26 2023 18:17:20
1032 / wheelch2
0644
class-wp-theme-json-schema.php
4.124 KB
October 02 2023 15:57:24
1032 / wheelch2
0644
class-wp-theme-json.php
126.521 KB
October 10 2023 08:13:22
1032 / wheelch2
0644
class-wp-theme.php
62.761 KB
October 21 2023 00:06:02
1032 / wheelch2
0644
class-wp-user-meta-session-tokens.php
2.92 KB
January 09 2019 10:34:50
1032 / wheelch2
0644
class-wp-user-query.php
42.374 KB
September 08 2023 01:15:16
1032 / wheelch2
0644
class-wp-user-request.php
2.17 KB
September 12 2022 20:17:14
1032 / wheelch2
0644
class-wp-user.php
22.229 KB
July 10 2023 17:23:26
1032 / wheelch2
0644
class-wp-walker.php
12.857 KB
September 09 2023 13:58:26
1032 / wheelch2
0644
class-wp-widget-factory.php
3.269 KB
September 12 2022 20:17:14
1032 / wheelch2
0644
class-wp-widget.php
17.955 KB
August 25 2023 05:58:16
1032 / wheelch2
0644
class-wp-xmlrpc-server.php
209.121 KB
September 21 2023 00:01:20
1032 / wheelch2
0644
class-wp.php
25.598 KB
December 16 2023 06:01:02
1032 / wheelch2
0644
class-wpdb.php
116.657 KB
November 09 2023 02:08:22
1032 / wheelch2
0644
class.wp-dependencies.php
0.364 KB
September 20 2022 18:47:12
1032 / wheelch2
0644
class.wp-scripts.php
0.335 KB
September 20 2022 18:47:12
1032 / wheelch2
0644
class.wp-styles.php
0.33 KB
September 20 2022 18:47:12
1032 / wheelch2
0644
comment-template.php
99.055 KB
September 26 2023 01:35:22
1032 / wheelch2
0644
comment.php
126.086 KB
May 21 2025 00:30:03
1032 / wheelch2
0644
compat.php
14.862 KB
May 21 2025 00:30:03
1032 / wheelch2
0644
cron.php
40.664 KB
May 21 2025 00:30:03
1032 / wheelch2
0644
date.php
0.391 KB
June 17 2022 15:50:14
1032 / wheelch2
0644
default-constants.php
10.909 KB
September 26 2023 22:03:20
1032 / wheelch2
0644
default-filters.php
33.697 KB
January 31 2024 13:55:32
1032 / wheelch2
0644
default-widgets.php
2.17 KB
May 25 2021 12:57:58
1032 / wheelch2
0644
deprecated.php
179.501 KB
October 13 2023 21:51:22
1032 / wheelch2
0644
embed-template.php
0.33 KB
June 17 2022 15:50:14
1032 / wheelch2
0644
embed.php
36.776 KB
September 25 2023 21:36:34
1032 / wheelch2
0644
error-protection.php
4.024 KB
May 02 2023 20:15:22
1032 / wheelch2
0644
error_log
632.365 KB
May 18 2025 10:15:06
1032 / wheelch2
0644
feed-atom-comments.php
5.323 KB
July 29 2023 05:01:36
1032 / wheelch2
0644
feed-atom.php
2.977 KB
November 29 2021 15:22:00
1032 / wheelch2
0644
feed-rdf.php
2.605 KB
January 29 2020 06:15:18
1032 / wheelch2
0644
feed-rss.php
1.161 KB
January 29 2020 06:15:18
1032 / wheelch2
0644
feed-rss2-comments.php
3.984 KB
February 12 2023 23:38:22
1032 / wheelch2
0644
feed-rss2.php
3.71 KB
January 29 2020 06:15:18
1032 / wheelch2
0644
feed.php
22.517 KB
May 21 2025 00:30:03
1032 / wheelch2
0644
fonts.php
2.283 KB
May 21 2025 00:30:03
1032 / wheelch2
0644
formatting.php
327.14 KB
May 21 2025 00:30:03
1032 / wheelch2
0644
functions.php
269.945 KB
May 21 2025 00:30:01
1032 / wheelch2
0444
functions.wp-scripts.php
14.413 KB
November 01 2023 20:45:16
1032 / wheelch2
0644
functions.wp-styles.php
8.382 KB
January 15 2023 20:27:14
1032 / wheelch2
0644
general-template.php
163.918 KB
May 13 2024 09:31:55
1032 / wheelch2
0644
global-styles-and-settings.php
19.731 KB
August 25 2023 00:29:18
1032 / wheelch2
0644
http.php
23.293 KB
May 21 2025 00:30:03
1032 / wheelch2
0644
https-detection.php
5.528 KB
September 22 2023 23:38:20
1032 / wheelch2
0644
https-migration.php
4.63 KB
July 11 2023 03:08:26
1032 / wheelch2
0644
kses.php
70.208 KB
September 19 2023 17:00:14
1032 / wheelch2
0644
l10n.php
61.312 KB
May 21 2025 00:30:03
1032 / wheelch2
0644
link-template.php
152.417 KB
October 16 2023 04:37:26
1032 / wheelch2
0644
load.php
52.86 KB
May 21 2025 00:30:03
1032 / wheelch2
0644
locale.php
0.158 KB
October 08 2019 21:49:04
1032 / wheelch2
0644
media-template.php
60.372 KB
September 26 2023 19:15:24
1032 / wheelch2
0644
media.php
202.505 KB
May 21 2025 00:30:03
1032 / wheelch2
0644
meta.php
62.576 KB
September 26 2023 20:02:20
1032 / wheelch2
0644
ms-blogs.php
25.027 KB
December 05 2023 01:29:20
1032 / wheelch2
0644
ms-default-constants.php
4.785 KB
July 11 2023 03:18:22
1032 / wheelch2
0644
ms-default-filters.php
6.48 KB
February 24 2023 06:53:20
1032 / wheelch2
0644
ms-deprecated.php
21.248 KB
June 22 2023 19:27:24
1032 / wheelch2
0644
ms-files.php
2.647 KB
August 23 2023 20:23:24
1032 / wheelch2
0644
ms-functions.php
89.119 KB
July 11 2023 03:18:22
1032 / wheelch2
0644
ms-load.php
19.404 KB
July 11 2023 03:18:22
1032 / wheelch2
0644
ms-network.php
3.693 KB
May 02 2023 15:56:24
1032 / wheelch2
0644
ms-settings.php
4.027 KB
June 22 2023 19:27:24
1032 / wheelch2
0644
ms-site.php
39.553 KB
September 09 2023 13:58:26
1032 / wheelch2
0644
nav-menu-template.php
25.181 KB
February 16 2023 05:34:22
1032 / wheelch2
0644
nav-menu.php
43.045 KB
May 21 2025 00:30:03
1032 / wheelch2
0644
option.php
89.199 KB
October 31 2023 04:53:24
1032 / wheelch2
0644
pluggable-deprecated.php
6.116 KB
January 12 2020 00:02:06
1032 / wheelch2
0644
pluggable.php
110.372 KB
May 21 2025 00:30:03
1032 / wheelch2
0644
plugin.php
34.773 KB
May 21 2025 00:30:01
1032 / wheelch2
0444
post-formats.php
6.934 KB
February 21 2023 22:09:20
1032 / wheelch2
0644
post-template.php
65.228 KB
August 22 2023 17:00:30
1032 / wheelch2
0644
post-thumbnail-template.php
10.066 KB
May 17 2023 23:01:24
1032 / wheelch2
0644
post.php
271.797 KB
May 21 2025 00:30:03
1032 / wheelch2
0644
query.php
36.167 KB
May 21 2025 00:30:03
1032 / wheelch2
0644
registration-functions.php
0.195 KB
November 12 2020 16:47:08
1032 / wheelch2
0644
registration.php
0.195 KB
November 12 2020 16:47:08
1032 / wheelch2
0644
rest-api.php
94.867 KB
May 21 2025 00:30:03
1032 / wheelch2
0644
revision.php
30.181 KB
May 21 2025 00:30:03
1032 / wheelch2
0644
rewrite.php
19.057 KB
July 11 2023 15:45:28
1032 / wheelch2
0644
robots-template.php
5.063 KB
April 06 2022 20:03:04
1032 / wheelch2
0644
rss-functions.php
0.249 KB
November 17 2020 04:22:06
1032 / wheelch2
0644
rss.php
22.476 KB
April 11 2023 00:01:18
1032 / wheelch2
0644
script-loader.php
127.03 KB
October 02 2023 23:18:24
1032 / wheelch2
0644
session.php
0.252 KB
February 06 2020 12:03:12
1032 / wheelch2
0644
shortcodes.php
23.297 KB
October 12 2023 17:17:22
1032 / wheelch2
0644
sitemaps.php
3.162 KB
May 21 2025 00:30:03
1032 / wheelch2
0644
spl-autoload-compat.php
0.431 KB
November 12 2020 16:47:08
1032 / wheelch2
0644
style-engine.php
7.031 KB
May 21 2025 00:30:03
1032 / wheelch2
0644
taxonomy.php
169.461 KB
May 21 2025 00:30:03
1032 / wheelch2
0644
template-canvas.php
0.531 KB
October 01 2023 04:52:28
1032 / wheelch2
0644
template-loader.php
3.085 KB
May 21 2025 00:30:03
1032 / wheelch2
0644
template.php
22.974 KB
September 20 2023 21:57:24
1032 / wheelch2
0644
theme-i18n.json
1.124 KB
September 21 2022 16:13:14
1032 / wheelch2
0644
theme-previews.php
2.76 KB
October 03 2023 03:12:24
1032 / wheelch2
0644
theme-templates.php
6.077 KB
October 13 2023 21:51:22
1032 / wheelch2
0644
theme.json
7.132 KB
September 21 2023 11:05:20
1032 / wheelch2
0644
theme.php
128.134 KB
May 21 2025 00:30:03
1032 / wheelch2
0644
update.php
35.961 KB
May 21 2025 00:30:03
1032 / wheelch2
0644
user.php
167.136 KB
May 21 2025 00:30:03
1032 / wheelch2
0644
vars.php
6.057 KB
May 21 2025 00:30:03
1032 / wheelch2
0644
version.php
0.906 KB
May 21 2025 00:30:03
1032 / wheelch2
0644
widgets.php
68.237 KB
May 21 2025 00:30:03
1032 / wheelch2
0644
wp-db.php
0.435 KB
July 22 2022 03:15:12
1032 / wheelch2
0644
wp-diff.php
0.632 KB
February 06 2020 12:03:12
1032 / wheelch2
0644

GRAYBYTE WORDPRESS FILE MANAGER @ 2025
CONTACT ME
Static GIF