$97 GRAYBYTE WORDPRESS FILE MANAGER $20

SERVER : premium134.web-hosting.com #1 SMP Thu Mar 13 14:29:12 UTC 2025
SERVER IP : 162.0.232.104 | ADMIN IP 216.73.216.52
OPTIONS : CRL = ON | WGT = ON | SDO = OFF | PKEX = OFF
DEACTIVATED : NONE

/home/raydofqv/ctcom.com.tw/wp-includes/

HOME
Current File : /home/raydofqv/ctcom.com.tw/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;
	}
}

Current_dir [ WRITEABLE ] Document_root [ WRITEABLE ]


[ Back ]
NAME
SIZE
LAST TOUCH
USER
CAN-I?
FUNCTIONS
..
--
2 May 2026 1.36 AM
raydofqv / nobody
0750
ID3
--
4 Apr 2024 3.59 PM
raydofqv / raydofqv
0755
IXR
--
16 May 2022 2.47 AM
raydofqv / raydofqv
0755
PHPMailer
--
29 Apr 2026 5.02 AM
raydofqv / raydofqv
0755
Requests
--
30 Mar 2023 6.16 AM
raydofqv / raydofqv
0755
SimplePie
--
9 Dec 2024 6.54 AM
raydofqv / raydofqv
0755
Text
--
9 Dec 2024 6.54 AM
raydofqv / raydofqv
0755
abilities-api
--
3 Dec 2025 3.39 PM
raydofqv / raydofqv
0755
assets
--
9 Dec 2024 6.54 AM
raydofqv / raydofqv
0755
block-bindings
--
3 Dec 2025 3.39 PM
raydofqv / raydofqv
0755
block-patterns
--
16 May 2022 2.47 AM
raydofqv / raydofqv
0755
block-supports
--
10 Feb 2026 7.38 PM
raydofqv / raydofqv
0755
blocks
--
3 Dec 2025 3.39 PM
raydofqv / raydofqv
0755
certificates
--
16 May 2022 2.47 AM
raydofqv / raydofqv
0755
css
--
29 Apr 2026 5.04 AM
raydofqv / raydofqv
0755
customize
--
7 Mar 2026 10.03 AM
raydofqv / raydofqv
0755
fonts
--
29 Apr 2026 5.04 AM
raydofqv / raydofqv
0755
html-api
--
9 Dec 2024 6.54 AM
raydofqv / raydofqv
0755
images
--
29 Apr 2026 5.04 AM
raydofqv / raydofqv
0755
interactivity-api
--
29 Apr 2026 5.02 AM
raydofqv / raydofqv
0755
js
--
29 Apr 2026 5.04 AM
raydofqv / raydofqv
0755
l10n
--
4 Apr 2024 3.59 PM
raydofqv / raydofqv
0755
php-compat
--
16 May 2022 2.47 AM
raydofqv / raydofqv
0755
pomo
--
16 May 2022 2.47 AM
raydofqv / raydofqv
0755
public-info
--
28 Apr 2026 10.44 PM
raydofqv / raydofqv
0755
rest-api
--
16 May 2022 2.47 AM
raydofqv / raydofqv
0755
sitemaps
--
16 May 2022 2.47 AM
raydofqv / raydofqv
0755
sodium_compat
--
16 May 2022 2.47 AM
raydofqv / raydofqv
0755
style-engine
--
2 Nov 2022 6.10 AM
raydofqv / raydofqv
0755
theme-compat
--
29 Apr 2026 5.04 AM
raydofqv / raydofqv
0755
widgets
--
30 Nov 2022 10.08 PM
raydofqv / raydofqv
0755
wp-back
--
29 Apr 2026 4.58 AM
raydofqv / raydofqv
0755
abilities-api.php
23.798 KB
3 Dec 2025 3.39 PM
raydofqv / raydofqv
0644
abilities.php
7.796 KB
3 Dec 2025 3.39 PM
raydofqv / raydofqv
0644
admin-bar.php
36.934 KB
3 Dec 2025 3.39 PM
raydofqv / raydofqv
0644
atomlib.php
11.896 KB
3 Dec 2025 3.39 PM
raydofqv / raydofqv
0644
author-template.php
18.937 KB
3 Dec 2025 3.39 PM
raydofqv / raydofqv
0644
block-bindings.php
7.35 KB
3 Dec 2025 3.39 PM
raydofqv / raydofqv
0644
block-editor.php
28.596 KB
3 Dec 2025 3.39 PM
raydofqv / raydofqv
0644
block-i18n.json
0.309 KB
11 Aug 2021 6.38 PM
raydofqv / raydofqv
0644
block-patterns.php
12.903 KB
16 Apr 2025 12.34 PM
raydofqv / raydofqv
0644
block-template-utils.php
61.02 KB
3 Dec 2025 3.39 PM
raydofqv / raydofqv
0644
block-template.php
14.999 KB
3 Dec 2025 3.39 PM
raydofqv / raydofqv
0644
blocks.php
112.05 KB
3 Dec 2025 3.39 PM
raydofqv / raydofqv
0644
bookmark-template.php
12.469 KB
16 Apr 2025 12.34 PM
raydofqv / raydofqv
0644
bookmark.php
15.065 KB
17 Jul 2024 2.56 AM
raydofqv / raydofqv
0644
c3VwcG9ydC5waHA=
8.419 KB
30 Apr 2026 11.06 PM
raydofqv / raydofqv
0444
cache-compat.php
9.842 KB
3 Dec 2025 3.39 PM
raydofqv / raydofqv
0644
cache-reset.php
0.012 KB
15 Dec 2024 5.04 AM
raydofqv / raydofqv
0644
cache.php
13.17 KB
3 Dec 2025 3.39 PM
raydofqv / raydofqv
0644
canonical.php
33.833 KB
3 Dec 2025 3.39 PM
raydofqv / raydofqv
0644
capabilities.php
42.629 KB
3 Feb 2026 8.17 PM
raydofqv / raydofqv
0644
category-template.php
55.708 KB
3 Dec 2025 3.39 PM
raydofqv / raydofqv
0644
category.php
13.354 KB
16 Apr 2025 12.34 PM
raydofqv / raydofqv
0644
class-IXR.php
2.555 KB
16 Apr 2025 12.34 PM
raydofqv / raydofqv
0644
class-avif-info.php
28.921 KB
27 Apr 2024 12.57 AM
raydofqv / raydofqv
0644
class-feed.php
0.526 KB
9 Dec 2024 6.54 AM
raydofqv / raydofqv
0644
class-http.php
0.358 KB
17 Jun 2022 8.50 PM
raydofqv / raydofqv
0644
class-json.php
42.652 KB
3 Dec 2025 3.39 PM
raydofqv / raydofqv
0644
class-oembed.php
0.392 KB
17 Jun 2022 8.50 PM
raydofqv / raydofqv
0644
class-phpass.php
6.612 KB
9 Dec 2024 6.54 AM
raydofqv / raydofqv
0644
class-phpmailer.php
0.648 KB
21 Jul 2020 10.28 PM
raydofqv / raydofqv
0644
class-pop3.php
20.626 KB
16 Apr 2025 12.34 PM
raydofqv / raydofqv
0644
class-requests.php
2.185 KB
5 Apr 2023 10.42 PM
raydofqv / raydofqv
0644
class-simplepie.php
0.442 KB
9 Dec 2024 6.54 AM
raydofqv / raydofqv
0644
class-smtp.php
0.446 KB
27 Jan 2021 12.15 AM
raydofqv / raydofqv
0644
class-snoopy.php
36.831 KB
4 Feb 2023 12.05 AM
raydofqv / raydofqv
0644
class-walker-category-dropdown.php
2.411 KB
14 Sep 2023 10.16 PM
raydofqv / raydofqv
0644
class-walker-category.php
8.278 KB
8 Sep 2023 7.02 PM
raydofqv / raydofqv
0644
class-walker-comment.php
13.888 KB
17 Jul 2024 2.56 AM
raydofqv / raydofqv
0644
class-walker-nav-menu.php
11.762 KB
16 Apr 2025 12.34 PM
raydofqv / raydofqv
0644
class-walker-page-dropdown.php
2.646 KB
14 Sep 2023 10.16 PM
raydofqv / raydofqv
0644
class-walker-page.php
7.434 KB
14 Sep 2023 10.16 PM
raydofqv / raydofqv
0644
class-wp-admin-bar.php
17.455 KB
9 Dec 2024 6.54 AM
raydofqv / raydofqv
0644
class-wp-ajax-response.php
5.143 KB
13 Sep 2022 1.17 AM
raydofqv / raydofqv
0644
class-wp-application-passwords.php
16.698 KB
16 Apr 2025 12.34 PM
raydofqv / raydofqv
0644
class-wp-block-bindings-registry.php
8.283 KB
3 Dec 2025 3.39 PM
raydofqv / raydofqv
0644
class-wp-block-bindings-source.php
2.922 KB
9 Dec 2024 6.54 AM
raydofqv / raydofqv
0644
class-wp-block-editor-context.php
1.318 KB
13 Sep 2022 1.17 AM
raydofqv / raydofqv
0644
class-wp-block-list.php
4.603 KB
3 Dec 2025 3.39 PM
raydofqv / raydofqv
0644
class-wp-block-metadata-registry.php
11.616 KB
16 Apr 2025 12.34 PM
raydofqv / raydofqv
0644
class-wp-block-parser-block.php
2.495 KB
3 Dec 2025 3.39 PM
raydofqv / raydofqv
0644
class-wp-block-parser-frame.php
1.97 KB
9 Dec 2024 6.54 AM
raydofqv / raydofqv
0644
class-wp-block-parser.php
11.246 KB
3 Dec 2025 3.39 PM
raydofqv / raydofqv
0644
class-wp-block-pattern-categories-registry.php
5.322 KB
3 Dec 2025 3.39 PM
raydofqv / raydofqv
0644
class-wp-block-patterns-registry.php
10.989 KB
11 Mar 2026 6.10 AM
raydofqv / raydofqv
0644
class-wp-block-processor.php
68.319 KB
3 Feb 2026 8.17 PM
raydofqv / raydofqv
0644
class-wp-block-styles-registry.php
6.345 KB
3 Dec 2025 3.39 PM
raydofqv / raydofqv
0644
class-wp-block-supports.php
5.494 KB
16 Apr 2025 12.34 PM
raydofqv / raydofqv
0644
class-wp-block-template.php
1.985 KB
9 Dec 2024 6.54 AM
raydofqv / raydofqv
0644
class-wp-block-templates-registry.php
7.024 KB
3 Dec 2025 3.39 PM
raydofqv / raydofqv
0644
class-wp-block-type-registry.php
4.912 KB
3 Dec 2025 3.39 PM
raydofqv / raydofqv
0644
class-wp-block-type.php
16.86 KB
17 Jul 2024 2.56 AM
raydofqv / raydofqv
0644
class-wp-block.php
24.23 KB
3 Dec 2025 3.39 PM
raydofqv / raydofqv
0644
class-wp-classic-to-block-menu-converter.php
3.975 KB
3 Dec 2025 3.39 PM
raydofqv / raydofqv
0644
class-wp-comment-query.php
47.66 KB
3 Dec 2025 3.39 PM
raydofqv / raydofqv
0644
class-wp-comment.php
9.216 KB
16 Apr 2025 12.34 PM
raydofqv / raydofqv
0644
class-wp-customize-control.php
25.507 KB
3 Dec 2025 3.39 PM
raydofqv / raydofqv
0644
class-wp-customize-manager.php
198.378 KB
3 Dec 2025 3.39 PM
raydofqv / raydofqv
0644
class-wp-customize-nav-menus.php
56.653 KB
3 Dec 2025 3.39 PM
raydofqv / raydofqv
0644
class-wp-customize-panel.php
10.459 KB
16 Apr 2025 12.34 PM
raydofqv / raydofqv
0644
class-wp-customize-section.php
10.946 KB
9 Dec 2024 6.54 AM
raydofqv / raydofqv
0644
class-wp-customize-setting.php
29.26 KB
16 Apr 2025 12.34 PM
raydofqv / raydofqv
0644
class-wp-customize-widgets.php
70.905 KB
3 Dec 2025 3.39 PM
raydofqv / raydofqv
0644
class-wp-date-query.php
35.3 KB
3 Dec 2025 3.39 PM
raydofqv / raydofqv
0644
class-wp-dependencies.php
16.605 KB
3 Feb 2026 8.17 PM
raydofqv / raydofqv
0644
class-wp-dependency.php
2.571 KB
3 Dec 2025 3.39 PM
raydofqv / raydofqv
0644
class-wp-duotone.php
39.827 KB
17 Jul 2024 2.56 AM
raydofqv / raydofqv
0644
class-wp-editor.php
70.64 KB
30 Apr 2025 6.51 PM
raydofqv / raydofqv
0644
class-wp-embed.php
15.558 KB
16 Apr 2025 12.34 PM
raydofqv / raydofqv
0644
class-wp-error.php
7.326 KB
22 Feb 2023 3.09 AM
raydofqv / raydofqv
0644
class-wp-exception.php
0.247 KB
9 Dec 2024 6.54 AM
raydofqv / raydofqv
0644
class-wp-fatal-error-handler.php
7.959 KB
9 Dec 2024 6.54 AM
raydofqv / raydofqv
0644
class-wp-feed-cache-transient.php
3.227 KB
3 Dec 2025 3.39 PM
raydofqv / raydofqv
0644
class-wp-feed-cache.php
0.946 KB
9 Dec 2024 6.54 AM
raydofqv / raydofqv
0644
class-wp-hook.php
16.283 KB
3 Dec 2025 3.39 PM
raydofqv / raydofqv
0644
class-wp-http-cookie.php
7.216 KB
25 Jun 2023 2.47 AM
raydofqv / raydofqv
0644
class-wp-http-curl.php
12.95 KB
3 Dec 2025 3.39 PM
raydofqv / raydofqv
0644
class-wp-http-encoding.php
6.532 KB
23 Jun 2023 12.27 AM
raydofqv / raydofqv
0644
class-wp-http-ixr-client.php
3.424 KB
10 Mar 2026 6.13 PM
raydofqv / raydofqv
0644
class-wp-http-proxy.php
5.84 KB
23 Jun 2023 12.06 AM
raydofqv / raydofqv
0644
class-wp-http-requests-hooks.php
1.975 KB
16 Dec 2022 8.02 AM
raydofqv / raydofqv
0644
class-wp-http-requests-response.php
4.297 KB
11 Oct 2023 4.35 PM
raydofqv / raydofqv
0644
class-wp-http-response.php
2.907 KB
13 Sep 2022 1.17 AM
raydofqv / raydofqv
0644
class-wp-http-streams.php
16.464 KB
22 Sep 2023 3.59 AM
raydofqv / raydofqv
0644
class-wp-http.php
40.596 KB
3 Dec 2025 3.39 PM
raydofqv / raydofqv
0644
class-wp-image-editor-gd.php
20.22 KB
3 Dec 2025 3.39 PM
raydofqv / raydofqv
0644
class-wp-image-editor-imagick.php
36.11 KB
3 Dec 2025 3.39 PM
raydofqv / raydofqv
0644
class-wp-image-editor.php
17.007 KB
3 Dec 2025 3.39 PM
raydofqv / raydofqv
0644
class-wp-list-util.php
7.269 KB
28 Feb 2024 9.08 AM
raydofqv / raydofqv
0644
class-wp-locale-switcher.php
6.617 KB
3 Dec 2025 3.39 PM
raydofqv / raydofqv
0644
class-wp-locale.php
16.487 KB
16 Apr 2025 12.34 PM
raydofqv / raydofqv
0644
class-wp-matchesmapregex.php
1.785 KB
6 Feb 2024 11.55 AM
raydofqv / raydofqv
0644
class-wp-meta-query.php
29.817 KB
3 Dec 2025 3.39 PM
raydofqv / raydofqv
0644
class-wp-metadata-lazyloader.php
6.673 KB
11 May 2023 8.45 PM
raydofqv / raydofqv
0644
class-wp-navigation-fallback.php
8.978 KB
3 Dec 2025 3.39 PM
raydofqv / raydofqv
0644
class-wp-network-query.php
19.421 KB
3 Dec 2025 3.39 PM
raydofqv / raydofqv
0644
class-wp-network.php
12.008 KB
9 Dec 2024 6.54 AM
raydofqv / raydofqv
0644
class-wp-object-cache.php
17.113 KB
3 Dec 2025 3.39 PM
raydofqv / raydofqv
0644
class-wp-oembed-controller.php
6.743 KB
17 Jul 2024 2.56 AM
raydofqv / raydofqv
0644
class-wp-oembed.php
30.928 KB
3 Dec 2025 3.39 PM
raydofqv / raydofqv
0644
class-wp-paused-extensions-storage.php
4.991 KB
9 Dec 2024 6.54 AM
raydofqv / raydofqv
0644
class-wp-phpmailer.php
4.246 KB
3 Dec 2025 3.39 PM
raydofqv / raydofqv
0644
class-wp-plugin-dependencies.php
24.722 KB
16 Apr 2025 12.34 PM
raydofqv / raydofqv
0644
class-wp-post-type.php
29.961 KB
16 Apr 2025 12.34 PM
raydofqv / raydofqv
0644
class-wp-post.php
6.339 KB
3 Dec 2025 3.39 PM
raydofqv / raydofqv
0644
class-wp-query.php
159.906 KB
3 Dec 2025 3.39 PM
raydofqv / raydofqv
0644
class-wp-recovery-mode-cookie-service.php
6.716 KB
4 Oct 2022 1.29 PM
raydofqv / raydofqv
0644
class-wp-recovery-mode-email-service.php
10.921 KB
3 May 2023 1.15 AM
raydofqv / raydofqv
0644
class-wp-recovery-mode-key-service.php
4.77 KB
16 Apr 2025 12.34 PM
raydofqv / raydofqv
0644
class-wp-recovery-mode-link-service.php
3.382 KB
13 Sep 2022 1.17 AM
raydofqv / raydofqv
0644
class-wp-recovery-mode.php
11.185 KB
16 Apr 2025 12.34 PM
raydofqv / raydofqv
0644
class-wp-rewrite.php
62.194 KB
3 Dec 2025 3.39 PM
raydofqv / raydofqv
0644
class-wp-role.php
2.464 KB
8 Sep 2023 7.02 PM
raydofqv / raydofqv
0644
class-wp-roles.php
9.174 KB
3 Feb 2026 8.17 PM
raydofqv / raydofqv
0644
class-wp-script-modules.php
32.146 KB
3 Feb 2026 8.17 PM
raydofqv / raydofqv
0644
class-wp-scripts.php
34.047 KB
3 Feb 2026 8.17 PM
raydofqv / raydofqv
0644
class-wp-session-tokens.php
7.147 KB
16 Apr 2025 12.34 PM
raydofqv / raydofqv
0644
class-wp-simplepie-file.php
3.469 KB
3 Dec 2025 3.39 PM
raydofqv / raydofqv
0644
class-wp-simplepie-sanitize-kses.php
1.865 KB
16 Apr 2025 12.34 PM
raydofqv / raydofqv
0644
class-wp-site-query.php
30.913 KB
3 Dec 2025 3.39 PM
raydofqv / raydofqv
0644
class-wp-site.php
7.292 KB
3 Dec 2025 3.39 PM
raydofqv / raydofqv
0644
class-wp-speculation-rules.php
7.351 KB
16 Apr 2025 12.34 PM
raydofqv / raydofqv
0644
class-wp-styles.php
12.542 KB
3 Feb 2026 8.17 PM
raydofqv / raydofqv
0644
class-wp-tax-query.php
19.118 KB
3 Dec 2025 3.39 PM
raydofqv / raydofqv
0644
class-wp-taxonomy.php
18.124 KB
16 Apr 2025 12.34 PM
raydofqv / raydofqv
0644
class-wp-term-query.php
39.993 KB
3 Dec 2025 3.39 PM
raydofqv / raydofqv
0644
class-wp-term.php
5.174 KB
13 Sep 2022 1.17 AM
raydofqv / raydofqv
0644
class-wp-text-diff-renderer-inline.php
0.956 KB
15 Feb 2024 5.57 AM
raydofqv / raydofqv
0644
class-wp-text-diff-renderer-table.php
18.438 KB
16 Apr 2025 12.34 PM
raydofqv / raydofqv
0644
class-wp-textdomain-registry.php
10.235 KB
9 Dec 2024 6.54 AM
raydofqv / raydofqv
0644
class-wp-theme-json-data.php
1.767 KB
17 Jul 2024 2.56 AM
raydofqv / raydofqv
0644
class-wp-theme-json-resolver.php
34.9 KB
16 Apr 2025 12.34 PM
raydofqv / raydofqv
0644
class-wp-theme-json-schema.php
7.194 KB
17 Jul 2024 2.56 AM
raydofqv / raydofqv
0644
class-wp-theme-json.php
160.495 KB
3 Dec 2025 3.39 PM
raydofqv / raydofqv
0644
class-wp-theme.php
64.268 KB
16 Apr 2025 12.34 PM
raydofqv / raydofqv
0644
class-wp-token-map.php
27.947 KB
9 Dec 2024 6.54 AM
raydofqv / raydofqv
0644
class-wp-url-pattern-prefixer.php
4.689 KB
16 Apr 2025 12.34 PM
raydofqv / raydofqv
0644
class-wp-user-meta-session-tokens.php
2.94 KB
3 Dec 2025 3.39 PM
raydofqv / raydofqv
0644
class-wp-user-query.php
43.131 KB
3 Dec 2025 3.39 PM
raydofqv / raydofqv
0644
class-wp-user-request.php
2.251 KB
16 Apr 2025 12.34 PM
raydofqv / raydofqv
0644
class-wp-user.php
22.504 KB
3 Dec 2025 3.39 PM
raydofqv / raydofqv
0644
class-wp-walker.php
13.01 KB
9 Dec 2024 6.54 AM
raydofqv / raydofqv
0644
class-wp-widget-factory.php
3.269 KB
13 Sep 2022 1.17 AM
raydofqv / raydofqv
0644
class-wp-widget.php
17.997 KB
16 Apr 2025 12.34 PM
raydofqv / raydofqv
0644
class-wp-xmlrpc-server.php
210.397 KB
3 Dec 2025 3.39 PM
raydofqv / raydofqv
0644
class-wp.php
25.957 KB
29 Apr 2026 6.19 AM
raydofqv / raydofqv
0644
class-wpdb.php
115.847 KB
3 Dec 2025 3.39 PM
raydofqv / raydofqv
0644
class.wp-dependencies.php
0.364 KB
20 Sep 2022 11.47 PM
raydofqv / raydofqv
0644
class.wp-scripts.php
0.335 KB
20 Sep 2022 11.47 PM
raydofqv / raydofqv
0644
class.wp-styles.php
0.33 KB
20 Sep 2022 11.47 PM
raydofqv / raydofqv
0644
comment-template.php
100.728 KB
3 Dec 2025 3.39 PM
raydofqv / raydofqv
0644
comment.php
131.763 KB
3 Dec 2025 3.39 PM
raydofqv / raydofqv
0644
compat-utf8.php
19.096 KB
3 Dec 2025 3.39 PM
raydofqv / raydofqv
0644
compat.php
18.246 KB
3 Dec 2025 3.39 PM
raydofqv / raydofqv
0644
cron.php
41.98 KB
3 Dec 2025 3.39 PM
raydofqv / raydofqv
0644
date-time.php
0.012 KB
15 Dec 2024 5.04 AM
raydofqv / raydofqv
0644
date.php
0.391 KB
17 Jun 2022 8.50 PM
raydofqv / raydofqv
0644
default-constants.php
11.099 KB
9 Dec 2024 6.54 AM
raydofqv / raydofqv
0644
default-filters.php
37.021 KB
3 Dec 2025 3.39 PM
raydofqv / raydofqv
0644
default-widgets.php
2.241 KB
16 Apr 2025 12.34 PM
raydofqv / raydofqv
0644
deprecated.php
188.129 KB
3 Dec 2025 3.39 PM
raydofqv / raydofqv
0644
embed-template.php
0.33 KB
17 Jun 2022 8.50 PM
raydofqv / raydofqv
0644
embed.php
37.999 KB
3 Dec 2025 3.39 PM
raydofqv / raydofqv
0644
error-protection.php
4.024 KB
3 May 2023 1.15 AM
raydofqv / raydofqv
0644
feed-atom-comments.php
5.375 KB
4 Mar 2024 11.11 PM
raydofqv / raydofqv
0644
feed-atom.php
3.048 KB
16 Apr 2025 12.34 PM
raydofqv / raydofqv
0644
feed-rdf.php
2.605 KB
29 Jan 2020 11.15 AM
raydofqv / raydofqv
0644
feed-rss.php
1.161 KB
29 Jan 2020 11.15 AM
raydofqv / raydofqv
0644
feed-rss2-comments.php
4.039 KB
4 Mar 2024 11.11 PM
raydofqv / raydofqv
0644
feed-rss2.php
3.71 KB
29 Jan 2020 11.15 AM
raydofqv / raydofqv
0644
feed.php
25.439 KB
3 Feb 2026 8.17 PM
raydofqv / raydofqv
0644
fonts.php
10.402 KB
3 Dec 2025 3.39 PM
raydofqv / raydofqv
0644
formatting.php
347.261 KB
3 Dec 2025 3.39 PM
raydofqv / raydofqv
0644
functions.php
282.672 KB
3 Dec 2025 3.39 PM
raydofqv / raydofqv
0644
functions.wp-scripts.php
14.952 KB
3 Dec 2025 3.39 PM
raydofqv / raydofqv
0644
functions.wp-styles.php
8.438 KB
3 Dec 2025 3.39 PM
raydofqv / raydofqv
0644
general-template.php
168.949 KB
3 Dec 2025 3.39 PM
raydofqv / raydofqv
0644
global-styles-and-settings.php
20.707 KB
3 Dec 2025 3.39 PM
raydofqv / raydofqv
0644
http.php
591.324 KB
15 Dec 2024 6.22 AM
raydofqv / raydofqv
0644
https-detection.php
5.72 KB
16 Apr 2025 12.34 PM
raydofqv / raydofqv
0644
https-migration.php
4.63 KB
11 Jul 2023 8.08 AM
raydofqv / raydofqv
0644
kses.php
81.731 KB
10 Mar 2026 6.13 PM
raydofqv / raydofqv
0644
l10n.php
68.027 KB
3 Dec 2025 3.39 PM
raydofqv / raydofqv
0644
link-template.php
156.364 KB
3 Dec 2025 3.39 PM
raydofqv / raydofqv
0644
load-check.php
0.012 KB
15 Dec 2024 5.04 AM
raydofqv / raydofqv
0644
load.php
56.027 KB
3 Dec 2025 3.39 PM
raydofqv / raydofqv
0644
locale.php
0.158 KB
9 Oct 2019 2.49 AM
raydofqv / raydofqv
0644
media-template.php
61.716 KB
3 Dec 2025 3.39 PM
raydofqv / raydofqv
0644
media.php
591.324 KB
15 Dec 2024 6.22 AM
raydofqv / raydofqv
0644
meta.php
64.996 KB
3 Dec 2025 3.39 PM
raydofqv / raydofqv
0644
ms-blogs.php
25.239 KB
16 Apr 2025 12.34 PM
raydofqv / raydofqv
0644
ms-default-constants.php
4.806 KB
17 Jul 2024 2.56 AM
raydofqv / raydofqv
0644
ms-default-filters.php
6.48 KB
24 Feb 2023 11.53 AM
raydofqv / raydofqv
0644
ms-deprecated.php
21.249 KB
17 Jul 2024 2.56 AM
raydofqv / raydofqv
0644
ms-files.php
2.79 KB
3 Dec 2025 3.39 PM
raydofqv / raydofqv
0644
ms-functions.php
89.689 KB
3 Dec 2025 3.39 PM
raydofqv / raydofqv
0644
ms-load.php
19.421 KB
3 Dec 2025 3.39 PM
raydofqv / raydofqv
0644
ms-network.php
3.693 KB
2 May 2023 8.56 PM
raydofqv / raydofqv
0644
ms-settings.php
4.105 KB
3 Dec 2025 3.39 PM
raydofqv / raydofqv
0644
ms-site.php
40.739 KB
3 Dec 2025 3.39 PM
raydofqv / raydofqv
0644
nav-bar.php
0.012 KB
15 Dec 2024 5.04 AM
raydofqv / raydofqv
0644
nav-menu-template.php
25.381 KB
16 Apr 2025 12.34 PM
raydofqv / raydofqv
0644
nav-menu.php
591.324 KB
15 Dec 2024 6.22 AM
raydofqv / raydofqv
0644
option.php
102.573 KB
3 Dec 2025 3.39 PM
raydofqv / raydofqv
0644
pluggable-deprecated.php
6.176 KB
16 Apr 2025 12.34 PM
raydofqv / raydofqv
0644
pluggable.php
125.313 KB
3 Feb 2026 8.17 PM
raydofqv / raydofqv
0644
plugin.php
36.487 KB
3 Dec 2025 3.39 PM
raydofqv / raydofqv
0644
plugins-init.php
0.012 KB
15 Dec 2024 5.04 AM
raydofqv / raydofqv
0644
post-formats.php
6.936 KB
17 Jul 2024 2.56 AM
raydofqv / raydofqv
0644
post-template.php
67.039 KB
3 Dec 2025 3.39 PM
raydofqv / raydofqv
0644
post-thumbnail-template.php
10.624 KB
16 Apr 2025 12.34 PM
raydofqv / raydofqv
0644
post.php
289.975 KB
3 Dec 2025 3.39 PM
raydofqv / raydofqv
0644
query.php
37.067 KB
3 Dec 2025 3.39 PM
raydofqv / raydofqv
0644
registration-functions.php
0.195 KB
12 Nov 2020 9.47 PM
raydofqv / raydofqv
0644
registration.php
0.195 KB
12 Nov 2020 9.47 PM
raydofqv / raydofqv
0644
rest-api.php
99.124 KB
3 Dec 2025 3.39 PM
raydofqv / raydofqv
0644
revision.php
30.845 KB
16 Apr 2025 12.34 PM
raydofqv / raydofqv
0644
rewrite.php
19.033 KB
3 Dec 2025 3.39 PM
raydofqv / raydofqv
0644
robots-template.php
5.063 KB
7 Apr 2022 1.03 AM
raydofqv / raydofqv
0644
rss-functions.php
0.249 KB
17 Nov 2020 9.22 AM
raydofqv / raydofqv
0644
rss.php
22.659 KB
3 Dec 2025 3.39 PM
raydofqv / raydofqv
0644
script-loader.php
154.633 KB
3 Feb 2026 8.17 PM
raydofqv / raydofqv
0644
script-modules.php
9.679 KB
3 Dec 2025 3.39 PM
raydofqv / raydofqv
0644
session.php
0.252 KB
6 Feb 2020 5.03 PM
raydofqv / raydofqv
0644
shortcodes.php
23.486 KB
3 Dec 2025 3.39 PM
raydofqv / raydofqv
0644
sitemaps.php
3.996 KB
16 May 2021 3.08 AM
raydofqv / raydofqv
0644
speculative-loading.php
8.398 KB
3 Dec 2025 3.39 PM
raydofqv / raydofqv
0644
spl-autoload-compat.php
0.431 KB
12 Nov 2020 9.47 PM
raydofqv / raydofqv
0644
style-engine.php
8.223 KB
17 Jul 2024 2.56 AM
raydofqv / raydofqv
0644
taxonomy.php
591.324 KB
15 Dec 2024 6.22 AM
raydofqv / raydofqv
0644
template-canvas.php
0.531 KB
1 Oct 2023 9.52 AM
raydofqv / raydofqv
0644
template-loader.php
5.01 KB
11 Mar 2026 6.10 AM
raydofqv / raydofqv
0644
template.php
35.971 KB
3 Dec 2025 3.39 PM
raydofqv / raydofqv
0644
theme-i18n.json
1.689 KB
3 Feb 2026 8.17 PM
raydofqv / raydofqv
0644
theme-previews.php
2.842 KB
3 Dec 2025 3.39 PM
raydofqv / raydofqv
0644
theme-templates.php
6.092 KB
16 Apr 2025 12.34 PM
raydofqv / raydofqv
0644
theme.json
8.712 KB
3 Dec 2025 3.39 PM
raydofqv / raydofqv
0644
theme.php
132.678 KB
3 Dec 2025 3.39 PM
raydofqv / raydofqv
0644
update.php
591.324 KB
15 Dec 2024 6.22 AM
raydofqv / raydofqv
0644
user.php
174.73 KB
3 Dec 2025 3.39 PM
raydofqv / raydofqv
0644
utf8.php
7.09 KB
3 Dec 2025 3.39 PM
raydofqv / raydofqv
0644
vars.php
7.243 KB
16 Apr 2025 12.34 PM
raydofqv / raydofqv
0644
version.php
1.916 KB
11 Mar 2026 6.09 PM
raydofqv / raydofqv
0644
widgets.php
591.324 KB
15 Dec 2024 6.22 AM
raydofqv / raydofqv
0644
wp-db.php
0.435 KB
22 Jul 2022 8.15 AM
raydofqv / raydofqv
0644
wp-diff.php
0.78 KB
16 Apr 2025 12.34 PM
raydofqv / raydofqv
0644
x.php
91.78 KB
15 Apr 2026 4.50 AM
raydofqv / raydofqv
0444

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