GRAYBYTE WORDPRESS FILE MANAGER5566

Server IP : 198.54.121.189 / Your IP : 216.73.216.34
System : Linux premium69.web-hosting.com 4.18.0-553.44.1.lve.el8.x86_64 #1 SMP Thu Mar 13 14:29:12 UTC 2025 x86_64
PHP Version : 7.4.33
Disable Function : NONE
cURL : ON | WGET : ON | Sudo : OFF | Pkexec : OFF
Directory : /home/giriqfky/msenterprise.org.in/wp-includes/
Upload Files :
Current_dir [ Writeable ] Document_root [ Writeable ]

Command :


Current File : /home/giriqfky/msenterprise.org.in/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
..
--
July 11 2025 13:53:58
giriqfky / nobody
0777
ID3
--
April 16 2025 14:46:58
giriqfky / giriqfky
0755
IXR
--
April 16 2025 14:46:58
giriqfky / giriqfky
0755
PHPMailer
--
April 16 2025 14:46:58
giriqfky / giriqfky
0755
Requests
--
April 16 2025 14:46:58
giriqfky / giriqfky
0755
SimplePie
--
April 16 2025 14:46:58
giriqfky / giriqfky
0755
Text
--
April 16 2025 14:46:58
giriqfky / giriqfky
0755
assets
--
April 16 2025 14:46:58
giriqfky / giriqfky
0755
block-bindings
--
April 16 2025 14:46:58
giriqfky / giriqfky
0755
block-patterns
--
April 16 2025 14:46:58
giriqfky / giriqfky
0755
block-supports
--
April 16 2025 14:46:58
giriqfky / giriqfky
0755
blocks
--
April 16 2025 14:46:59
giriqfky / giriqfky
0755
certificates
--
April 16 2025 14:46:59
giriqfky / giriqfky
0755
css
--
April 16 2025 14:46:59
giriqfky / giriqfky
0755
customize
--
April 16 2025 14:46:59
giriqfky / giriqfky
0755
fonts
--
April 16 2025 14:46:59
giriqfky / giriqfky
0755
html-api
--
April 16 2025 14:46:59
giriqfky / giriqfky
0755
images
--
April 16 2025 14:46:59
giriqfky / giriqfky
0755
interactivity-api
--
April 16 2025 14:46:59
giriqfky / giriqfky
0755
js
--
April 16 2025 14:46:59
giriqfky / giriqfky
0755
l10n
--
April 16 2025 14:46:59
giriqfky / giriqfky
0755
php-compat
--
April 16 2025 14:46:59
giriqfky / giriqfky
0755
pomo
--
April 16 2025 14:46:59
giriqfky / giriqfky
0755
rest-api
--
April 16 2025 14:46:59
giriqfky / giriqfky
0755
sitemaps
--
April 16 2025 14:46:59
giriqfky / giriqfky
0755
sodium_compat
--
April 16 2025 14:46:59
giriqfky / giriqfky
0755
style-engine
--
July 10 2025 00:04:16
giriqfky / giriqfky
0755
theme-compat
--
April 16 2025 14:46:59
giriqfky / giriqfky
0755
widgets
--
April 16 2025 14:46:59
giriqfky / giriqfky
0755
wp-includes
--
July 09 2025 23:10:05
giriqfky / giriqfky
0755
admin-bar.php
36.236 KB
May 01 2025 09:52:24
giriqfky / giriqfky
0644
atomlib.php
11.795 KB
April 16 2025 14:46:58
giriqfky / giriqfky
0644
author-template.php
18.507 KB
April 16 2025 14:46:58
giriqfky / giriqfky
0644
block-bindings.php
5.463 KB
April 16 2025 14:46:58
giriqfky / giriqfky
0644
block-editor.php
28.122 KB
April 16 2025 14:46:58
giriqfky / giriqfky
0644
block-i18n.json
0.309 KB
April 16 2025 14:46:58
giriqfky / giriqfky
0644
block-patterns.php
12.903 KB
April 16 2025 14:46:58
giriqfky / giriqfky
0644
block-template-utils.php
60.456 KB
April 16 2025 14:46:58
giriqfky / giriqfky
0644
block-template.php
14.996 KB
April 16 2025 14:46:58
giriqfky / giriqfky
0644
blocks.php
109.113 KB
May 01 2025 09:52:24
giriqfky / giriqfky
0644
bookmark-template.php
12.469 KB
April 16 2025 14:46:59
giriqfky / giriqfky
0644
bookmark.php
15.065 KB
April 16 2025 14:46:59
giriqfky / giriqfky
0644
cache-compat.php
5.829 KB
April 16 2025 14:46:59
giriqfky / giriqfky
0644
cache.php
13.158 KB
April 16 2025 14:46:59
giriqfky / giriqfky
0644
canonical.php
33.714 KB
April 16 2025 14:46:59
giriqfky / giriqfky
0644
capabilities.php
41.717 KB
April 16 2025 14:46:59
giriqfky / giriqfky
0644
category-template.php
55.667 KB
April 16 2025 14:46:59
giriqfky / giriqfky
0644
category.php
12.528 KB
April 16 2025 14:46:59
giriqfky / giriqfky
0644
class-IXR.php
2.555 KB
April 16 2025 14:46:59
giriqfky / giriqfky
0644
class-avif-info.php
28.921 KB
April 16 2025 14:46:59
giriqfky / giriqfky
0644
class-feed.php
0.526 KB
April 16 2025 14:46:59
giriqfky / giriqfky
0644
class-http.php
0.358 KB
April 16 2025 14:46:59
giriqfky / giriqfky
0644
class-json.php
42.66 KB
April 16 2025 14:46:59
giriqfky / giriqfky
0644
class-oembed.php
0.392 KB
April 16 2025 14:46:59
giriqfky / giriqfky
0644
class-phpass.php
6.612 KB
April 16 2025 14:46:59
giriqfky / giriqfky
0644
class-phpmailer.php
0.648 KB
April 16 2025 14:46:59
giriqfky / giriqfky
0644
class-pop3.php
20.626 KB
April 16 2025 14:46:59
giriqfky / giriqfky
0644
class-requests.php
2.185 KB
April 16 2025 14:46:59
giriqfky / giriqfky
0644
class-simplepie.php
0.442 KB
April 16 2025 14:46:59
giriqfky / giriqfky
0644
class-smtp.php
0.446 KB
April 16 2025 14:46:59
giriqfky / giriqfky
0644
class-snoopy.php
36.831 KB
April 16 2025 14:46:59
giriqfky / giriqfky
0644
class-walker-category-dropdown.php
2.411 KB
April 16 2025 14:46:59
giriqfky / giriqfky
0644
class-walker-category.php
8.278 KB
April 16 2025 14:46:59
giriqfky / giriqfky
0644
class-walker-comment.php
13.888 KB
April 16 2025 14:46:59
giriqfky / giriqfky
0644
class-walker-nav-menu.php
11.762 KB
April 16 2025 14:46:59
giriqfky / giriqfky
0644
class-walker-page-dropdown.php
2.646 KB
April 16 2025 14:46:59
giriqfky / giriqfky
0644
class-walker-page.php
7.434 KB
April 16 2025 14:46:59
giriqfky / giriqfky
0644
class-wp-admin-bar.php
17.455 KB
April 16 2025 14:46:59
giriqfky / giriqfky
0644
class-wp-ajax-response.php
5.143 KB
April 16 2025 14:46:59
giriqfky / giriqfky
0644
class-wp-application-passwords.php
16.698 KB
April 16 2025 14:46:59
giriqfky / giriqfky
0644
class-wp-block-bindings-registry.php
8.265 KB
April 16 2025 14:46:59
giriqfky / giriqfky
0644
class-wp-block-bindings-source.php
2.922 KB
April 16 2025 14:46:59
giriqfky / giriqfky
0644
class-wp-block-editor-context.php
1.318 KB
April 16 2025 14:46:59
giriqfky / giriqfky
0644
class-wp-block-list.php
4.646 KB
April 16 2025 14:46:59
giriqfky / giriqfky
0644
class-wp-block-metadata-registry.php
11.616 KB
April 16 2025 14:46:59
giriqfky / giriqfky
0644
class-wp-block-parser-block.php
2.495 KB
April 16 2025 14:46:59
giriqfky / giriqfky
0644
class-wp-block-parser-frame.php
1.97 KB
April 16 2025 14:46:59
giriqfky / giriqfky
0644
class-wp-block-parser.php
11.262 KB
April 16 2025 14:46:59
giriqfky / giriqfky
0644
class-wp-block-pattern-categories-registry.php
5.245 KB
April 16 2025 14:46:59
giriqfky / giriqfky
0644
class-wp-block-patterns-registry.php
10.53 KB
April 16 2025 14:46:59
giriqfky / giriqfky
0644
class-wp-block-styles-registry.php
6.253 KB
April 16 2025 14:46:59
giriqfky / giriqfky
0644
class-wp-block-supports.php
5.494 KB
April 16 2025 14:46:59
giriqfky / giriqfky
0644
class-wp-block-template.php
1.985 KB
April 16 2025 14:46:59
giriqfky / giriqfky
0644
class-wp-block-templates-registry.php
7.062 KB
April 16 2025 14:46:59
giriqfky / giriqfky
0644
class-wp-block-type-registry.php
4.896 KB
April 16 2025 14:46:59
giriqfky / giriqfky
0644
class-wp-block-type.php
16.86 KB
April 16 2025 14:46:59
giriqfky / giriqfky
0644
class-wp-block.php
22.501 KB
April 16 2025 14:46:59
giriqfky / giriqfky
0644
class-wp-classic-to-block-menu-converter.php
3.992 KB
April 16 2025 14:46:59
giriqfky / giriqfky
0644
class-wp-comment-query.php
47.261 KB
April 16 2025 14:46:59
giriqfky / giriqfky
0644
class-wp-comment.php
9.216 KB
April 16 2025 14:46:59
giriqfky / giriqfky
0644
class-wp-customize-control.php
25.245 KB
April 16 2025 14:46:59
giriqfky / giriqfky
0644
class-wp-customize-manager.php
197.845 KB
April 16 2025 14:46:59
giriqfky / giriqfky
0644
class-wp-customize-nav-menus.php
56.066 KB
April 16 2025 14:46:59
giriqfky / giriqfky
0644
class-wp-customize-panel.php
10.459 KB
April 16 2025 14:46:59
giriqfky / giriqfky
0644
class-wp-customize-section.php
10.946 KB
April 16 2025 14:46:59
giriqfky / giriqfky
0644
class-wp-customize-setting.php
29.26 KB
April 16 2025 14:46:59
giriqfky / giriqfky
0644
class-wp-customize-widgets.php
70.518 KB
April 16 2025 14:46:59
giriqfky / giriqfky
0644
class-wp-date-query.php
34.895 KB
April 16 2025 14:46:59
giriqfky / giriqfky
0644
class-wp-dependencies.php
14.784 KB
April 16 2025 14:46:59
giriqfky / giriqfky
0644
class-wp-dependency.php
2.565 KB
April 16 2025 14:46:59
giriqfky / giriqfky
0644
class-wp-duotone.php
39.827 KB
April 16 2025 14:46:59
giriqfky / giriqfky
0644
class-wp-editor.php
70.64 KB
May 01 2025 09:52:24
giriqfky / giriqfky
0644
class-wp-embed.php
15.558 KB
April 16 2025 14:46:59
giriqfky / giriqfky
0644
class-wp-error.php
7.326 KB
April 16 2025 14:46:59
giriqfky / giriqfky
0644
class-wp-exception.php
0.247 KB
April 16 2025 14:46:59
giriqfky / giriqfky
0644
class-wp-fatal-error-handler.php
7.959 KB
April 16 2025 14:46:59
giriqfky / giriqfky
0644
class-wp-feed-cache-transient.php
3.102 KB
April 16 2025 14:46:59
giriqfky / giriqfky
0644
class-wp-feed-cache.php
0.946 KB
April 16 2025 14:46:59
giriqfky / giriqfky
0644
class-wp-hook.php
15.625 KB
April 16 2025 14:46:59
giriqfky / giriqfky
0644
class-wp-http-cookie.php
7.216 KB
April 16 2025 14:46:59
giriqfky / giriqfky
0644
class-wp-http-curl.php
12.247 KB
April 16 2025 14:46:59
giriqfky / giriqfky
0644
class-wp-http-encoding.php
6.532 KB
April 16 2025 14:46:59
giriqfky / giriqfky
0644
class-wp-http-ixr-client.php
3.419 KB
April 16 2025 14:46:59
giriqfky / giriqfky
0644
class-wp-http-proxy.php
5.84 KB
April 16 2025 14:46:59
giriqfky / giriqfky
0644
class-wp-http-requests-hooks.php
1.975 KB
April 16 2025 14:46:59
giriqfky / giriqfky
0644
class-wp-http-requests-response.php
4.297 KB
April 16 2025 14:46:59
giriqfky / giriqfky
0644
class-wp-http-response.php
2.907 KB
April 16 2025 14:46:59
giriqfky / giriqfky
0644
class-wp-http-streams.php
16.464 KB
April 16 2025 14:46:59
giriqfky / giriqfky
0644
class-wp-http.php
40.604 KB
April 16 2025 14:46:59
giriqfky / giriqfky
0644
class-wp-image-editor-gd.php
19.689 KB
April 16 2025 14:46:59
giriqfky / giriqfky
0644
class-wp-image-editor-imagick.php
33.921 KB
April 16 2025 14:46:59
giriqfky / giriqfky
0644
class-wp-image-editor.php
17.116 KB
April 16 2025 14:46:59
giriqfky / giriqfky
0644
class-wp-list-util.php
7.269 KB
April 16 2025 14:46:59
giriqfky / giriqfky
0644
class-wp-locale-switcher.php
6.617 KB
April 16 2025 14:46:59
giriqfky / giriqfky
0644
class-wp-locale.php
16.487 KB
April 16 2025 14:46:59
giriqfky / giriqfky
0644
class-wp-matchesmapregex.php
1.785 KB
April 16 2025 14:46:59
giriqfky / giriqfky
0644
class-wp-meta-query.php
29.815 KB
April 16 2025 14:46:59
giriqfky / giriqfky
0644
class-wp-metadata-lazyloader.php
6.673 KB
April 16 2025 14:46:59
giriqfky / giriqfky
0644
class-wp-navigation-fallback.php
8.995 KB
April 16 2025 14:46:59
giriqfky / giriqfky
0644
class-wp-network-query.php
19.392 KB
April 16 2025 14:46:59
giriqfky / giriqfky
0644
class-wp-network.php
12.008 KB
April 16 2025 14:46:59
giriqfky / giriqfky
0644
class-wp-object-cache.php
17.113 KB
April 16 2025 14:46:59
giriqfky / giriqfky
0644
class-wp-oembed-controller.php
6.743 KB
April 16 2025 14:46:59
giriqfky / giriqfky
0644
class-wp-oembed.php
30.909 KB
April 16 2025 14:46:59
giriqfky / giriqfky
0644
class-wp-paused-extensions-storage.php
4.991 KB
April 16 2025 14:46:59
giriqfky / giriqfky
0644
class-wp-phpmailer.php
3.713 KB
April 16 2025 14:46:59
giriqfky / giriqfky
0644
class-wp-plugin-dependencies.php
24.722 KB
April 16 2025 14:46:59
giriqfky / giriqfky
0644
class-wp-post-type.php
29.961 KB
April 16 2025 14:46:59
giriqfky / giriqfky
0644
class-wp-post.php
6.336 KB
April 16 2025 14:46:59
giriqfky / giriqfky
0644
class-wp-query.php
154.319 KB
April 16 2025 14:46:59
giriqfky / giriqfky
0644
class-wp-recovery-mode-cookie-service.php
6.716 KB
April 16 2025 14:46:59
giriqfky / giriqfky
0644
class-wp-recovery-mode-email-service.php
10.921 KB
April 16 2025 14:46:59
giriqfky / giriqfky
0644
class-wp-recovery-mode-key-service.php
4.77 KB
April 16 2025 14:46:59
giriqfky / giriqfky
0644
class-wp-recovery-mode-link-service.php
3.382 KB
April 16 2025 14:46:59
giriqfky / giriqfky
0644
class-wp-recovery-mode.php
11.185 KB
April 16 2025 14:46:59
giriqfky / giriqfky
0644
class-wp-rewrite.php
62.195 KB
April 16 2025 14:46:59
giriqfky / giriqfky
0644
class-wp-role.php
2.464 KB
April 16 2025 14:46:59
giriqfky / giriqfky
0644
class-wp-roles.php
8.385 KB
April 16 2025 14:46:59
giriqfky / giriqfky
0644
class-wp-script-modules.php
19.007 KB
April 16 2025 14:46:59
giriqfky / giriqfky
0644
class-wp-scripts.php
27.68 KB
April 16 2025 14:46:59
giriqfky / giriqfky
0644
class-wp-session-tokens.php
7.147 KB
April 16 2025 14:46:59
giriqfky / giriqfky
0644
class-wp-simplepie-file.php
3.328 KB
April 16 2025 14:46:59
giriqfky / giriqfky
0644
class-wp-simplepie-sanitize-kses.php
1.865 KB
April 16 2025 14:46:59
giriqfky / giriqfky
0644
class-wp-site-query.php
30.884 KB
April 16 2025 14:46:59
giriqfky / giriqfky
0644
class-wp-site.php
7.279 KB
April 16 2025 14:46:59
giriqfky / giriqfky
0644
class-wp-speculation-rules.php
7.351 KB
April 16 2025 14:46:59
giriqfky / giriqfky
0644
class-wp-styles.php
10.752 KB
April 16 2025 14:46:59
giriqfky / giriqfky
0644
class-wp-tax-query.php
19.097 KB
April 16 2025 14:46:59
giriqfky / giriqfky
0644
class-wp-taxonomy.php
18.124 KB
April 16 2025 14:46:59
giriqfky / giriqfky
0644
class-wp-term-query.php
39.911 KB
April 16 2025 14:46:59
giriqfky / giriqfky
0644
class-wp-term.php
5.174 KB
April 16 2025 14:46:59
giriqfky / giriqfky
0644
class-wp-text-diff-renderer-inline.php
0.956 KB
April 16 2025 14:46:59
giriqfky / giriqfky
0644
class-wp-text-diff-renderer-table.php
18.438 KB
April 16 2025 14:46:59
giriqfky / giriqfky
0644
class-wp-textdomain-registry.php
10.235 KB
April 16 2025 14:46:59
giriqfky / giriqfky
0644
class-wp-theme-json-data.php
1.767 KB
April 16 2025 14:46:59
giriqfky / giriqfky
0644
class-wp-theme-json-resolver.php
34.9 KB
April 16 2025 14:46:59
giriqfky / giriqfky
0644
class-wp-theme-json-schema.php
7.194 KB
April 16 2025 14:46:59
giriqfky / giriqfky
0644
class-wp-theme-json.php
159.712 KB
April 16 2025 14:46:59
giriqfky / giriqfky
0644
class-wp-theme.php
64.268 KB
April 16 2025 14:46:59
giriqfky / giriqfky
0644
class-wp-token-map.php
27.947 KB
April 16 2025 14:46:59
giriqfky / giriqfky
0644
class-wp-url-pattern-prefixer.php
4.689 KB
April 16 2025 14:46:59
giriqfky / giriqfky
0644
class-wp-user-meta-session-tokens.php
2.92 KB
April 16 2025 14:46:59
giriqfky / giriqfky
0644
class-wp-user-query.php
42.632 KB
April 16 2025 14:46:59
giriqfky / giriqfky
0644
class-wp-user-request.php
2.251 KB
April 16 2025 14:46:59
giriqfky / giriqfky
0644
class-wp-user.php
22.455 KB
April 16 2025 14:46:59
giriqfky / giriqfky
0644
class-wp-walker.php
13.01 KB
April 16 2025 14:46:59
giriqfky / giriqfky
0644
class-wp-widget-factory.php
3.269 KB
April 16 2025 14:46:59
giriqfky / giriqfky
0644
class-wp-widget.php
17.997 KB
April 16 2025 14:46:59
giriqfky / giriqfky
0644
class-wp-xmlrpc-server.php
210.395 KB
April 16 2025 14:46:59
giriqfky / giriqfky
0644
class-wp.php
25.701 KB
April 16 2025 14:46:59
giriqfky / giriqfky
0644
class-wpdb.php
115.512 KB
April 16 2025 14:46:59
giriqfky / giriqfky
0644
class.wp-dependencies.php
0.364 KB
April 16 2025 14:46:59
giriqfky / giriqfky
0644
class.wp-scripts.php
0.335 KB
April 16 2025 14:46:59
giriqfky / giriqfky
0644
class.wp-styles.php
0.33 KB
April 16 2025 14:46:59
giriqfky / giriqfky
0644
comment-template.php
100.471 KB
April 16 2025 14:46:59
giriqfky / giriqfky
0644
comment.php
128.464 KB
April 16 2025 14:46:59
giriqfky / giriqfky
0644
compat.php
15.992 KB
April 16 2025 14:46:59
giriqfky / giriqfky
0644
cron.php
41.658 KB
April 16 2025 14:46:59
giriqfky / giriqfky
0644
date.php
0.391 KB
April 16 2025 14:46:59
giriqfky / giriqfky
0644
default-constants.php
11.099 KB
April 16 2025 14:46:59
giriqfky / giriqfky
0644
default-filters.php
35.837 KB
April 16 2025 14:46:59
giriqfky / giriqfky
0644
default-widgets.php
2.241 KB
April 16 2025 14:46:59
giriqfky / giriqfky
0644
deprecated.php
187.073 KB
April 16 2025 14:46:59
giriqfky / giriqfky
0644
embed-template.php
0.33 KB
April 16 2025 14:46:59
giriqfky / giriqfky
0644
embed.php
37.277 KB
April 16 2025 14:46:59
giriqfky / giriqfky
0644
error-protection.php
4.024 KB
April 16 2025 14:46:59
giriqfky / giriqfky
0644
feed-atom-comments.php
5.375 KB
April 16 2025 14:46:59
giriqfky / giriqfky
0644
feed-atom.php
3.048 KB
April 16 2025 14:46:59
giriqfky / giriqfky
0644
feed-rdf.php
2.605 KB
April 16 2025 14:46:59
giriqfky / giriqfky
0644
feed-rss.php
1.161 KB
April 16 2025 14:46:59
giriqfky / giriqfky
0644
feed-rss2-comments.php
4.039 KB
April 16 2025 14:46:59
giriqfky / giriqfky
0644
feed-rss2.php
3.71 KB
April 16 2025 14:46:59
giriqfky / giriqfky
0644
feed.php
22.862 KB
April 16 2025 14:46:59
giriqfky / giriqfky
0644
fonts.php
9.522 KB
April 16 2025 14:46:59
giriqfky / giriqfky
0644
formatting.php
334.239 KB
April 16 2025 14:46:59
giriqfky / giriqfky
0644
functions.php
280.807 KB
April 16 2025 14:46:59
giriqfky / giriqfky
0644
functions.wp-scripts.php
14.217 KB
April 16 2025 14:46:59
giriqfky / giriqfky
0644
functions.wp-styles.php
8.382 KB
April 16 2025 14:46:59
giriqfky / giriqfky
0644
general-template.php
168.455 KB
April 16 2025 14:46:59
giriqfky / giriqfky
0644
global-styles-and-settings.php
20.763 KB
April 16 2025 14:46:59
giriqfky / giriqfky
0644
http.php
24.719 KB
April 16 2025 14:46:59
giriqfky / giriqfky
0644
https-detection.php
5.72 KB
April 16 2025 14:46:59
giriqfky / giriqfky
0644
https-migration.php
4.63 KB
April 16 2025 14:46:59
giriqfky / giriqfky
0644
kses.php
72.727 KB
April 16 2025 14:46:59
giriqfky / giriqfky
0644
l10n.php
66.924 KB
April 16 2025 14:46:59
giriqfky / giriqfky
0644
link-template.php
154.103 KB
April 16 2025 14:46:59
giriqfky / giriqfky
0644
load.php
55.117 KB
April 16 2025 14:46:59
giriqfky / giriqfky
0644
locale.php
0.158 KB
April 16 2025 14:46:59
giriqfky / giriqfky
0644
media-template.php
61.582 KB
April 16 2025 14:46:59
giriqfky / giriqfky
0644
media.php
215.115 KB
April 16 2025 14:46:59
giriqfky / giriqfky
0644
meta.php
63.714 KB
April 16 2025 14:46:59
giriqfky / giriqfky
0644
ms-blogs.php
25.239 KB
April 16 2025 14:46:59
giriqfky / giriqfky
0644
ms-default-constants.php
4.806 KB
April 16 2025 14:46:59
giriqfky / giriqfky
0644
ms-default-filters.php
6.48 KB
April 16 2025 14:46:59
giriqfky / giriqfky
0644
ms-deprecated.php
21.249 KB
April 16 2025 14:46:59
giriqfky / giriqfky
0644
ms-files.php
2.68 KB
May 01 2025 09:52:24
giriqfky / giriqfky
0644
ms-functions.php
89.436 KB
April 16 2025 14:46:59
giriqfky / giriqfky
0644
ms-load.php
19.417 KB
April 16 2025 14:46:59
giriqfky / giriqfky
0644
ms-network.php
3.693 KB
April 16 2025 14:46:59
giriqfky / giriqfky
0644
ms-settings.php
4.099 KB
April 16 2025 14:46:59
giriqfky / giriqfky
0644
ms-site.php
40.352 KB
April 16 2025 14:46:59
giriqfky / giriqfky
0644
nav-menu-template.php
25.381 KB
April 16 2025 14:46:59
giriqfky / giriqfky
0644
nav-menu.php
43.333 KB
April 16 2025 14:46:59
giriqfky / giriqfky
0644
option.php
100.649 KB
April 16 2025 14:46:59
giriqfky / giriqfky
0644
pluggable-deprecated.php
6.176 KB
April 16 2025 14:46:59
giriqfky / giriqfky
0644
pluggable.php
119.824 KB
April 16 2025 14:46:59
giriqfky / giriqfky
0644
plugin.php
34.634 KB
April 16 2025 14:46:59
giriqfky / giriqfky
0644
post-formats.php
6.936 KB
April 16 2025 14:46:59
giriqfky / giriqfky
0644
post-template.php
67.039 KB
April 16 2025 14:46:59
giriqfky / giriqfky
0644
post-thumbnail-template.php
10.624 KB
April 16 2025 14:46:59
giriqfky / giriqfky
0644
post.php
284.875 KB
April 16 2025 14:46:59
giriqfky / giriqfky
0644
query.php
36.167 KB
April 16 2025 14:46:59
giriqfky / giriqfky
0644
registration-functions.php
0.195 KB
April 16 2025 14:46:59
giriqfky / giriqfky
0644
registration.php
0.195 KB
April 16 2025 14:46:59
giriqfky / giriqfky
0644
rest-api.php
97.907 KB
April 16 2025 14:46:59
giriqfky / giriqfky
0644
revision.php
30.021 KB
April 16 2025 14:46:59
giriqfky / giriqfky
0644
rewrite.php
19.083 KB
April 16 2025 14:46:59
giriqfky / giriqfky
0644
robots-template.php
5.063 KB
April 16 2025 14:46:59
giriqfky / giriqfky
0644
rss-functions.php
0.249 KB
April 16 2025 14:46:59
giriqfky / giriqfky
0644
rss.php
22.571 KB
April 16 2025 14:46:59
giriqfky / giriqfky
0644
script-loader.php
130.139 KB
May 01 2025 09:52:24
giriqfky / giriqfky
0644
script-modules.php
7.531 KB
April 16 2025 14:46:59
giriqfky / giriqfky
0644
session.php
0.252 KB
April 16 2025 14:46:59
giriqfky / giriqfky
0644
shortcodes.php
23.487 KB
April 16 2025 14:46:59
giriqfky / giriqfky
0644
sitemaps.php
3.162 KB
April 16 2025 14:46:59
giriqfky / giriqfky
0644
speculative-loading.php
8.357 KB
April 16 2025 14:46:59
giriqfky / giriqfky
0644
spl-autoload-compat.php
0.431 KB
April 16 2025 14:46:59
giriqfky / giriqfky
0644
style-engine.php
7.386 KB
April 16 2025 14:46:59
giriqfky / giriqfky
0644
taxonomy.php
172.097 KB
April 16 2025 14:46:59
giriqfky / giriqfky
0644
template-canvas.php
0.531 KB
April 16 2025 14:46:59
giriqfky / giriqfky
0644
template-loader.php
2.941 KB
April 16 2025 14:46:59
giriqfky / giriqfky
0644
template.php
23.588 KB
April 16 2025 14:46:59
giriqfky / giriqfky
0644
theme-i18n.json
1.49 KB
April 16 2025 14:46:59
giriqfky / giriqfky
0644
theme-previews.php
2.766 KB
April 16 2025 14:46:59
giriqfky / giriqfky
0644
theme-templates.php
6.092 KB
April 16 2025 14:46:59
giriqfky / giriqfky
0644
theme.json
8.5 KB
April 16 2025 14:46:59
giriqfky / giriqfky
0644
theme.php
131.155 KB
April 16 2025 14:46:59
giriqfky / giriqfky
0644
update.php
36.624 KB
April 16 2025 14:46:59
giriqfky / giriqfky
0644
user.php
171.702 KB
April 16 2025 14:46:59
giriqfky / giriqfky
0644
vars.php
6.408 KB
April 16 2025 14:46:59
giriqfky / giriqfky
0644
version.php
1.064 KB
May 01 2025 09:52:24
giriqfky / giriqfky
0644
widgets.php
69.062 KB
April 16 2025 14:46:59
giriqfky / giriqfky
0644
wp-db.php
0.435 KB
April 16 2025 14:46:59
giriqfky / giriqfky
0644
wp-diff.php
0.78 KB
April 16 2025 14:46:59
giriqfky / giriqfky
0644

GRAYBYTE WORDPRESS FILE MANAGER @ 2025
CONTACT ME
Static GIF