GRAYBYTE WORDPRESS FILE MANAGER5028

Server IP : 149.255.58.128 / Your IP : 216.73.216.59
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-recovery-mode-email-service.php
<?php
/**
 * Error Protection API: WP_Recovery_Mode_Email_Link class
 *
 * @package WordPress
 * @since 5.2.0
 */

/**
 * Core class used to send an email with a link to begin Recovery Mode.
 *
 * @since 5.2.0
 */
#[AllowDynamicProperties]
final class WP_Recovery_Mode_Email_Service {

	const RATE_LIMIT_OPTION = 'recovery_mode_email_last_sent';

	/**
	 * Service to generate recovery mode URLs.
	 *
	 * @since 5.2.0
	 * @var WP_Recovery_Mode_Link_Service
	 */
	private $link_service;

	/**
	 * WP_Recovery_Mode_Email_Service constructor.
	 *
	 * @since 5.2.0
	 *
	 * @param WP_Recovery_Mode_Link_Service $link_service
	 */
	public function __construct( WP_Recovery_Mode_Link_Service $link_service ) {
		$this->link_service = $link_service;
	}

	/**
	 * Sends the recovery mode email if the rate limit has not been sent.
	 *
	 * @since 5.2.0
	 *
	 * @param int   $rate_limit Number of seconds before another email can be sent.
	 * @param array $error      Error details from `error_get_last()`.
	 * @param array $extension {
	 *     The extension that caused the error.
	 *
	 *     @type string $slug The extension slug. The plugin or theme's directory.
	 *     @type string $type The extension type. Either 'plugin' or 'theme'.
	 * }
	 * @return true|WP_Error True if email sent, WP_Error otherwise.
	 */
	public function maybe_send_recovery_mode_email( $rate_limit, $error, $extension ) {

		$last_sent = get_option( self::RATE_LIMIT_OPTION );

		if ( ! $last_sent || time() > $last_sent + $rate_limit ) {
			if ( ! update_option( self::RATE_LIMIT_OPTION, time() ) ) {
				return new WP_Error( 'storage_error', __( 'Could not update the email last sent time.' ) );
			}

			$sent = $this->send_recovery_mode_email( $rate_limit, $error, $extension );

			if ( $sent ) {
				return true;
			}

			return new WP_Error(
				'email_failed',
				sprintf(
					/* translators: %s: mail() */
					__( 'The email could not be sent. Possible reason: your host may have disabled the %s function.' ),
					'mail()'
				)
			);
		}

		$err_message = sprintf(
			/* translators: 1: Last sent as a human time diff, 2: Wait time as a human time diff. */
			__( 'A recovery link was already sent %1$s ago. Please wait another %2$s before requesting a new email.' ),
			human_time_diff( $last_sent ),
			human_time_diff( $last_sent + $rate_limit )
		);

		return new WP_Error( 'email_sent_already', $err_message );
	}

	/**
	 * Clears the rate limit, allowing a new recovery mode email to be sent immediately.
	 *
	 * @since 5.2.0
	 *
	 * @return bool True on success, false on failure.
	 */
	public function clear_rate_limit() {
		return delete_option( self::RATE_LIMIT_OPTION );
	}

	/**
	 * Sends the Recovery Mode email to the site admin email address.
	 *
	 * @since 5.2.0
	 *
	 * @param int   $rate_limit Number of seconds before another email can be sent.
	 * @param array $error      Error details from `error_get_last()`.
	 * @param array $extension {
	 *     The extension that caused the error.
	 *
	 *     @type string $slug The extension slug. The directory of the plugin or theme.
	 *     @type string $type The extension type. Either 'plugin' or 'theme'.
	 * }
	 * @return bool Whether the email was sent successfully.
	 */
	private function send_recovery_mode_email( $rate_limit, $error, $extension ) {

		$url      = $this->link_service->generate_url();
		$blogname = wp_specialchars_decode( get_option( 'blogname' ), ENT_QUOTES );

		$switched_locale = switch_to_locale( get_locale() );

		if ( $extension ) {
			$cause   = $this->get_cause( $extension );
			$details = wp_strip_all_tags( wp_get_extension_error_description( $error ) );

			if ( $details ) {
				$header  = __( 'Error Details' );
				$details = "\n\n" . $header . "\n" . str_pad( '', strlen( $header ), '=' ) . "\n" . $details;
			}
		} else {
			$cause   = '';
			$details = '';
		}

		/**
		 * Filters the support message sent with the the fatal error protection email.
		 *
		 * @since 5.2.0
		 *
		 * @param string $message The Message to include in the email.
		 */
		$support = apply_filters( 'recovery_email_support_info', __( 'Please contact your host for assistance with investigating this issue further.' ) );

		/**
		 * Filters the debug information included in the fatal error protection email.
		 *
		 * @since 5.3.0
		 *
		 * @param array $message An associative array of debug information.
		 */
		$debug = apply_filters( 'recovery_email_debug_info', $this->get_debug( $extension ) );

		/* translators: Do not translate LINK, EXPIRES, CAUSE, DETAILS, SITEURL, PAGEURL, SUPPORT. DEBUG: those are placeholders. */
		$message = __(
			'Howdy!

WordPress has a built-in feature that detects when a plugin or theme causes a fatal error on your site, and notifies you with this automated email.
###CAUSE###
First, visit your website (###SITEURL###) and check for any visible issues. Next, visit the page where the error was caught (###PAGEURL###) and check for any visible issues.

###SUPPORT###

If your site appears broken and you can\'t access your dashboard normally, WordPress now has a special "recovery mode". This lets you safely login to your dashboard and investigate further.

###LINK###

To keep your site safe, this link will expire in ###EXPIRES###. Don\'t worry about that, though: a new link will be emailed to you if the error occurs again after it expires.

When seeking help with this issue, you may be asked for some of the following information:
###DEBUG###

###DETAILS###'
		);
		$message = str_replace(
			array(
				'###LINK###',
				'###EXPIRES###',
				'###CAUSE###',
				'###DETAILS###',
				'###SITEURL###',
				'###PAGEURL###',
				'###SUPPORT###',
				'###DEBUG###',
			),
			array(
				$url,
				human_time_diff( time() + $rate_limit ),
				$cause ? "\n{$cause}\n" : "\n",
				$details,
				home_url( '/' ),
				home_url( $_SERVER['REQUEST_URI'] ),
				$support,
				implode( "\r\n", $debug ),
			),
			$message
		);

		$email = array(
			'to'          => $this->get_recovery_mode_email_address(),
			/* translators: %s: Site title. */
			'subject'     => __( '[%s] Your Site is Experiencing a Technical Issue' ),
			'message'     => $message,
			'headers'     => '',
			'attachments' => '',
		);

		/**
		 * Filters the contents of the Recovery Mode email.
		 *
		 * @since 5.2.0
		 * @since 5.6.0 The `$email` argument includes the `attachments` key.
		 *
		 * @param array  $email {
		 *     Used to build a call to wp_mail().
		 *
		 *     @type string|array $to          Array or comma-separated list of email addresses to send message.
		 *     @type string       $subject     Email subject
		 *     @type string       $message     Message contents
		 *     @type string|array $headers     Optional. Additional headers.
		 *     @type string|array $attachments Optional. Files to attach.
		 * }
		 * @param string $url   URL to enter recovery mode.
		 */
		$email = apply_filters( 'recovery_mode_email', $email, $url );

		$sent = wp_mail(
			$email['to'],
			wp_specialchars_decode( sprintf( $email['subject'], $blogname ) ),
			$email['message'],
			$email['headers'],
			$email['attachments']
		);

		if ( $switched_locale ) {
			restore_previous_locale();
		}

		return $sent;
	}

	/**
	 * Gets the email address to send the recovery mode link to.
	 *
	 * @since 5.2.0
	 *
	 * @return string Email address to send recovery mode link to.
	 */
	private function get_recovery_mode_email_address() {
		if ( defined( 'RECOVERY_MODE_EMAIL' ) && is_email( RECOVERY_MODE_EMAIL ) ) {
			return RECOVERY_MODE_EMAIL;
		}

		return get_option( 'admin_email' );
	}

	/**
	 * Gets the description indicating the possible cause for the error.
	 *
	 * @since 5.2.0
	 *
	 * @param array $extension {
	 *     The extension that caused the error.
	 *
	 *     @type string $slug The extension slug. The directory of the plugin or theme.
	 *     @type string $type The extension type. Either 'plugin' or 'theme'.
	 * }
	 * @return string Message about which extension caused the error.
	 */
	private function get_cause( $extension ) {

		if ( 'plugin' === $extension['type'] ) {
			$plugin = $this->get_plugin( $extension );

			if ( false === $plugin ) {
				$name = $extension['slug'];
			} else {
				$name = $plugin['Name'];
			}

			/* translators: %s: Plugin name. */
			$cause = sprintf( __( 'In this case, WordPress caught an error with one of your plugins, %s.' ), $name );
		} else {
			$theme = wp_get_theme( $extension['slug'] );
			$name  = $theme->exists() ? $theme->display( 'Name' ) : $extension['slug'];

			/* translators: %s: Theme name. */
			$cause = sprintf( __( 'In this case, WordPress caught an error with your theme, %s.' ), $name );
		}

		return $cause;
	}

	/**
	 * Return the details for a single plugin based on the extension data from an error.
	 *
	 * @since 5.3.0
	 *
	 * @param array $extension {
	 *     The extension that caused the error.
	 *
	 *     @type string $slug The extension slug. The directory of the plugin or theme.
	 *     @type string $type The extension type. Either 'plugin' or 'theme'.
	 * }
	 * @return array|false A plugin array {@see get_plugins()} or `false` if no plugin was found.
	 */
	private function get_plugin( $extension ) {
		if ( ! function_exists( 'get_plugins' ) ) {
			require_once ABSPATH . 'wp-admin/includes/plugin.php';
		}

		$plugins = get_plugins();

		// Assume plugin main file name first since it is a common convention.
		if ( isset( $plugins[ "{$extension['slug']}/{$extension['slug']}.php" ] ) ) {
			return $plugins[ "{$extension['slug']}/{$extension['slug']}.php" ];
		} else {
			foreach ( $plugins as $file => $plugin_data ) {
				if ( str_starts_with( $file, "{$extension['slug']}/" ) || $file === $extension['slug'] ) {
					return $plugin_data;
				}
			}
		}

		return false;
	}

	/**
	 * Return debug information in an easy to manipulate format.
	 *
	 * @since 5.3.0
	 *
	 * @param array $extension {
	 *     The extension that caused the error.
	 *
	 *     @type string $slug The extension slug. The directory of the plugin or theme.
	 *     @type string $type The extension type. Either 'plugin' or 'theme'.
	 * }
	 * @return array An associative array of debug information.
	 */
	private function get_debug( $extension ) {
		$theme      = wp_get_theme();
		$wp_version = get_bloginfo( 'version' );

		if ( $extension ) {
			$plugin = $this->get_plugin( $extension );
		} else {
			$plugin = null;
		}

		$debug = array(
			'wp'    => sprintf(
				/* translators: %s: Current WordPress version number. */
				__( 'WordPress version %s' ),
				$wp_version
			),
			'theme' => sprintf(
				/* translators: 1: Current active theme name. 2: Current active theme version. */
				__( 'Active theme: %1$s (version %2$s)' ),
				$theme->get( 'Name' ),
				$theme->get( 'Version' )
			),
		);

		if ( null !== $plugin ) {
			$debug['plugin'] = sprintf(
				/* translators: 1: The failing plugins name. 2: The failing plugins version. */
				__( 'Current plugin: %1$s (version %2$s)' ),
				$plugin['Name'],
				$plugin['Version']
			);
		}

		$debug['php'] = sprintf(
			/* translators: %s: The currently used PHP version. */
			__( 'PHP version %s' ),
			PHP_VERSION
		);

		return $debug;
	}
}

[ 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