PHP 8.2.29
Preview: class-wp-recovery-mode.php Size: 11.18 KB
/home/medyaist/warmistanbulward.com.tr/wp-includes/class-wp-recovery-mode.php
<?php
/**
 * Error Protection API: WP_Recovery_Mode class
 *
 * @package WordPress
 * @since 5.2.0
 */

/**
 * Core class used to implement Recovery Mode.
 *
 * @since 5.2.0
 */
#[AllowDynamicProperties]
class WP_Recovery_Mode {

	const EXIT_ACTION = 'exit_recovery_mode';

	/**
	 * Service to handle cookies.
	 *
	 * @since 5.2.0
	 * @var WP_Recovery_Mode_Cookie_Service
	 */
	private $cookie_service;

	/**
	 * Service to generate a recovery mode key.
	 *
	 * @since 5.2.0
	 * @var WP_Recovery_Mode_Key_Service
	 */
	private $key_service;

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

	/**
	 * Service to handle sending an email with a recovery mode link.
	 *
	 * @since 5.2.0
	 * @var WP_Recovery_Mode_Email_Service
	 */
	private $email_service;

	/**
	 * Is recovery mode initialized.
	 *
	 * @since 5.2.0
	 * @var bool
	 */
	private $is_initialized = false;

	/**
	 * Is recovery mode active in this session.
	 *
	 * @since 5.2.0
	 * @var bool
	 */
	private $is_active = false;

	/**
	 * Get an ID representing the current recovery mode session.
	 *
	 * @since 5.2.0
	 * @var string
	 */
	private $session_id = '';

	/**
	 * WP_Recovery_Mode constructor.
	 *
	 * @since 5.2.0
	 */
	public function __construct() {
		$this->cookie_service = new WP_Recovery_Mode_Cookie_Service();
		$this->key_service    = new WP_Recovery_Mode_Key_Service();
		$this->link_service   = new WP_Recovery_Mode_Link_Service( $this->cookie_service, $this->key_service );
		$this->email_service  = new WP_Recovery_Mode_Email_Service( $this->link_service );
	}

	/**
	 * Initialize recovery mode for the current request.
	 *
	 * @since 5.2.0
	 */
	public function initialize() {
		$this->is_initialized = true;

		add_action( 'wp_logout', array( $this, 'exit_recovery_mode' ) );
		add_action( 'login_form_' . self::EXIT_ACTION, array( $this, 'handle_exit_recovery_mode' ) );
		add_action( 'recovery_mode_clean_expired_keys', array( $this, 'clean_expired_keys' ) );

		if ( ! wp_next_scheduled( 'recovery_mode_clean_expired_keys' ) && ! wp_installing() ) {
			wp_schedule_event( time(), 'daily', 'recovery_mode_clean_expired_keys' );
		}

		if ( defined( 'WP_RECOVERY_MODE_SESSION_ID' ) ) {
			$this->is_active  = true;
			$this->session_id = WP_RECOVERY_MODE_SESSION_ID;

			return;
		}

		if ( $this->cookie_service->is_cookie_set() ) {
			$this->handle_cookie();

			return;
		}

		$this->link_service->handle_begin_link( $this->get_link_ttl() );
	}

	/**
	 * Checks whether recovery mode is active.
	 *
	 * This will not change after recovery mode has been initialized. {@see WP_Recovery_Mode::run()}.
	 *
	 * @since 5.2.0
	 *
	 * @return bool True if recovery mode is active, false otherwise.
	 */
	public function is_active() {
		return $this->is_active;
	}

	/**
	 * Gets the recovery mode session ID.
	 *
	 * @since 5.2.0
	 *
	 * @return string The session ID if recovery mode is active, empty string otherwise.
	 */
	public function get_session_id() {
		return $this->session_id;
	}

	/**
	 * Checks whether recovery mode has been initialized.
	 *
	 * Recovery mode should not be used until this point. Initialization happens immediately before loading plugins.
	 *
	 * @since 5.2.0
	 *
	 * @return bool
	 */
	public function is_initialized() {
		return $this->is_initialized;
	}

	/**
	 * Handles a fatal error occurring.
	 *
	 * The calling API should immediately die() after calling this function.
	 *
	 * @since 5.2.0
	 *
	 * @param array $error Error details from `error_get_last()`.
	 * @return true|WP_Error|void True if the error was handled and headers have already been sent.
	 *                            Or the request will exit to try and catch multiple errors at once.
	 *                            WP_Error if an error occurred preventing it from being handled.
	 */
	public function handle_error( array $error ) {

		$extension = $this->get_extension_for_error( $error );

		if ( ! $extension || $this->is_network_plugin( $extension ) ) {
			return new WP_Error( 'invalid_source', __( 'Error not caused by a plugin or theme.' ) );
		}

		if ( ! $this->is_active() ) {
			if ( ! is_protected_endpoint() ) {
				return new WP_Error( 'non_protected_endpoint', __( 'Error occurred on a non-protected endpoint.' ) );
			}

			if ( ! function_exists( 'wp_generate_password' ) ) {
				require_once ABSPATH . WPINC . '/pluggable.php';
			}

			return $this->email_service->maybe_send_recovery_mode_email( $this->get_email_rate_limit(), $error, $extension );
		}

		if ( ! $this->store_error( $error ) ) {
			return new WP_Error( 'storage_error', __( 'Failed to store the error.' ) );
		}

		if ( headers_sent() ) {
			return true;
		}

		$this->redirect_protected();
	}

	/**
	 * Ends the current recovery mode session.
	 *
	 * @since 5.2.0
	 *
	 * @return bool True on success, false on failure.
	 */
	public function exit_recovery_mode() {
		if ( ! $this->is_active() ) {
			return false;
		}

		$this->email_service->clear_rate_limit();
		$this->cookie_service->clear_cookie();

		wp_paused_plugins()->delete_all();
		wp_paused_themes()->delete_all();

		return true;
	}

	/**
	 * Handles a request to exit Recovery Mode.
	 *
	 * @since 5.2.0
	 */
	public function handle_exit_recovery_mode() {
		$redirect_to = wp_get_referer();

		// Safety check in case referrer returns false.
		if ( ! $redirect_to ) {
			$redirect_to = is_user_logged_in() ? admin_url() : home_url();
		}

		if ( ! $this->is_active() ) {
			wp_safe_redirect( $redirect_to );
			die;
		}

		if ( ! isset( $_GET['action'] ) || self::EXIT_ACTION !== $_GET['action'] ) {
			return;
		}

		if ( ! isset( $_GET['_wpnonce'] ) || ! wp_verify_nonce( $_GET['_wpnonce'], self::EXIT_ACTION ) ) {
			wp_die( __( 'Exit recovery mode link expired.' ), 403 );
		}

		if ( ! $this->exit_recovery_mode() ) {
			wp_die( __( 'Failed to exit recovery mode. Please try again later.' ) );
		}

		wp_safe_redirect( $redirect_to );
		die;
	}

	/**
	 * Cleans any recovery mode keys that have expired according to the link TTL.
	 *
	 * Executes on a daily cron schedule.
	 *
	 * @since 5.2.0
	 */
	public function clean_expired_keys() {
		$this->key_service->clean_expired_keys( $this->get_link_ttl() );
	}

	/**
	 * Handles checking for the recovery mode cookie and validating it.
	 *
	 * @since 5.2.0
	 */
	protected function handle_cookie() {
		$validated = $this->cookie_service->validate_cookie();

		if ( is_wp_error( $validated ) ) {
			$this->cookie_service->clear_cookie();

			$validated->add_data( array( 'status' => 403 ) );
			wp_die( $validated );
		}

		$session_id = $this->cookie_service->get_session_id_from_cookie();
		if ( is_wp_error( $session_id ) ) {
			$this->cookie_service->clear_cookie();

			$session_id->add_data( array( 'status' => 403 ) );
			wp_die( $session_id );
		}

		$this->is_active  = true;
		$this->session_id = $session_id;
	}

	/**
	 * Gets the rate limit between sending new recovery mode email links.
	 *
	 * @since 5.2.0
	 *
	 * @return int Rate limit in seconds.
	 */
	protected function get_email_rate_limit() {
		/**
		 * Filters the rate limit between sending new recovery mode email links.
		 *
		 * @since 5.2.0
		 *
		 * @param int $rate_limit Time to wait in seconds. Defaults to 1 day.
		 */
		return apply_filters( 'recovery_mode_email_rate_limit', DAY_IN_SECONDS );
	}

	/**
	 * Gets the number of seconds the recovery mode link is valid for.
	 *
	 * @since 5.2.0
	 *
	 * @return int Interval in seconds.
	 */
	protected function get_link_ttl() {

		$rate_limit = $this->get_email_rate_limit();
		$valid_for  = $rate_limit;

		/**
		 * Filters the amount of time the recovery mode email link is valid for.
		 *
		 * The ttl must be at least as long as the email rate limit.
		 *
		 * @since 5.2.0
		 *
		 * @param int $valid_for The number of seconds the link is valid for.
		 */
		$valid_for = apply_filters( 'recovery_mode_email_link_ttl', $valid_for );

		return max( $valid_for, $rate_limit );
	}

	/**
	 * Gets the extension that the error occurred in.
	 *
	 * @since 5.2.0
	 *
	 * @global string[] $wp_theme_directories
	 *
	 * @param array $error Error details from `error_get_last()`.
	 * @return array|false {
	 *     Extension details.
	 *
	 *     @type string $slug The extension slug. This is the plugin or theme's directory.
	 *     @type string $type The extension type. Either 'plugin' or 'theme'.
	 * }
	 */
	protected function get_extension_for_error( $error ) {
		global $wp_theme_directories;

		if ( ! isset( $error['file'] ) ) {
			return false;
		}

		if ( ! defined( 'WP_PLUGIN_DIR' ) ) {
			return false;
		}

		$error_file    = wp_normalize_path( $error['file'] );
		$wp_plugin_dir = wp_normalize_path( WP_PLUGIN_DIR );

		if ( str_starts_with( $error_file, $wp_plugin_dir ) ) {
			$path  = str_replace( $wp_plugin_dir . '/', '', $error_file );
			$parts = explode( '/', $path );

			return array(
				'type' => 'plugin',
				'slug' => $parts[0],
			);
		}

		if ( empty( $wp_theme_directories ) ) {
			return false;
		}

		foreach ( $wp_theme_directories as $theme_directory ) {
			$theme_directory = wp_normalize_path( $theme_directory );

			if ( str_starts_with( $error_file, $theme_directory ) ) {
				$path  = str_replace( $theme_directory . '/', '', $error_file );
				$parts = explode( '/', $path );

				return array(
					'type' => 'theme',
					'slug' => $parts[0],
				);
			}
		}

		return false;
	}

	/**
	 * Checks whether the given extension a network activated plugin.
	 *
	 * @since 5.2.0
	 *
	 * @param array $extension Extension data.
	 * @return bool True if network plugin, false otherwise.
	 */
	protected function is_network_plugin( $extension ) {
		if ( 'plugin' !== $extension['type'] ) {
			return false;
		}

		if ( ! is_multisite() ) {
			return false;
		}

		$network_plugins = wp_get_active_network_plugins();

		foreach ( $network_plugins as $plugin ) {
			if ( str_starts_with( $plugin, $extension['slug'] . '/' ) ) {
				return true;
			}
		}

		return false;
	}

	/**
	 * Stores the given error so that the extension causing it is paused.
	 *
	 * @since 5.2.0
	 *
	 * @param array $error Error details from `error_get_last()`.
	 * @return bool True if the error was stored successfully, false otherwise.
	 */
	protected function store_error( $error ) {
		$extension = $this->get_extension_for_error( $error );

		if ( ! $extension ) {
			return false;
		}

		switch ( $extension['type'] ) {
			case 'plugin':
				return wp_paused_plugins()->set( $extension['slug'], $error );
			case 'theme':
				return wp_paused_themes()->set( $extension['slug'], $error );
			default:
				return false;
		}
	}

	/**
	 * Redirects the current request to allow recovering multiple errors in one go.
	 *
	 * The redirection will only happen when on a protected endpoint.
	 *
	 * It must be ensured that this method is only called when an error actually occurred and will not occur on the
	 * next request again. Otherwise it will create a redirect loop.
	 *
	 * @since 5.2.0
	 */
	protected function redirect_protected() {
		// Pluggable is usually loaded after plugins, so we manually include it here for redirection functionality.
		if ( ! function_exists( 'wp_safe_redirect' ) ) {
			require_once ABSPATH . WPINC . '/pluggable.php';
		}

		$scheme = is_ssl() ? 'https://' : 'http://';

		$url = "{$scheme}{$_SERVER['HTTP_HOST']}{$_SERVER['REQUEST_URI']}";
		wp_safe_redirect( $url );
		exit;
	}
}

Directory Contents

Dirs: 29 × Files: 122
Name Size Perms Modified Actions
- drwxr-xr-x 2025-12-03 08:29:47
Edit Download
assets DIR
- drwxr-xr-x 2026-01-12 08:11:41
Edit Download
- drwxr-xr-x 2026-01-14 20:54:06
Edit Download
- drwxr-xr-x 2026-01-14 20:54:12
Edit Download
- drwxr-xr-x 2026-01-14 20:54:28
Edit Download
blocks DIR
- drwxr-xr-x 2026-01-14 18:25:44
Edit Download
- drwxr-xr-x 2026-01-12 08:11:33
Edit Download
css DIR
- drwxr-xr-x 2025-10-22 10:21:57
Edit Download
customize DIR
- drwxr-xr-x 2026-01-14 18:27:23
Edit Download
fonts DIR
- drwxr-xr-x 2026-01-12 08:23:45
Edit Download
html-api DIR
- drwxr-xr-x 2026-01-14 18:28:38
Edit Download
ID3 DIR
- drwxr-xr-x 2026-01-12 08:09:53
Edit Download
images DIR
- drwxr-xr-x 2026-01-12 08:12:40
Edit Download
- drwxr-xr-x 2026-01-14 18:28:59
Edit Download
IXR DIR
- drwxr-xr-x 2026-01-14 20:52:47
Edit Download
js DIR
- drwxr-xr-x 2026-01-13 09:47:28
Edit Download
l10n DIR
- drwxr-xr-x 2026-01-14 18:29:59
Edit Download
- drwxr-xr-x 2026-01-12 08:11:35
Edit Download
PHPMailer DIR
- drwxr-xr-x 2026-01-12 08:10:43
Edit Download
pomo DIR
- drwxr-xr-x 2026-01-14 18:30:14
Edit Download
Requests DIR
- drwxr-xr-x 2025-10-22 10:21:57
Edit Download
rest-api DIR
- drwxr-xr-x 2026-01-14 18:30:22
Edit Download
SimplePie DIR
- drwxr-xr-x 2026-01-12 08:10:34
Edit Download
sitemaps DIR
- drwxr-xr-x 2026-01-08 03:50:00
Edit Download
- drwxr-xr-x 2026-01-14 18:30:40
Edit Download
- drwxr-xr-x 2025-10-22 10:21:57
Edit Download
Text DIR
- drwxr-xr-x 2026-01-12 08:09:01
Edit Download
- drwxr-xr-x 2026-01-14 18:30:58
Edit Download
widgets DIR
- drwxr-xr-x 2026-01-14 18:31:10
Edit Download
7.80 KB lrw-r--r-- 2025-12-03 08:29:52
Edit Download
18.94 KB lrw-r--r-- 2025-12-03 08:29:53
Edit Download
7.35 KB lrw-r--r-- 2025-12-03 08:29:53
Edit Download
12.90 KB lrw-r--r-- 2024-11-29 19:46:22
Edit Download
61.02 KB lrw-r--r-- 2025-12-03 08:29:52
Edit Download
112.05 KB lrw-r--r-- 2025-12-03 08:29:52
Edit Download
42.63 KB lrw-r--r-- 2025-12-03 08:29:52
Edit Download
55.71 KB lrw-r--r-- 2025-12-03 08:29:52
Edit Download
2.18 KB lrw-r--r-- 2023-04-05 10:12:26
Edit Download
2.65 KB lrw-r--r-- 2023-09-14 09:46:20
Edit Download
7.43 KB lrw-r--r-- 2023-09-14 09:46:20
Edit Download
5.14 KB lrw-r--r-- 2022-09-12 12:47:14
Edit Download
8.28 KB lrw-r--r-- 2025-12-03 08:29:52
Edit Download
2.92 KB lrw-r--r-- 2024-09-03 13:33:16
Edit Download
1.32 KB lrw-r--r-- 2022-09-12 12:47:14
Edit Download
11.62 KB lrw-r--r-- 2025-03-05 19:17:24
Edit Download
1.97 KB lrw-r--r-- 2024-09-19 22:55:36
Edit Download
11.25 KB lrw-r--r-- 2025-12-03 08:29:52
Edit Download
5.32 KB lrw-r--r-- 2025-12-03 08:29:52
Edit Download
10.60 KB lrw-r--r-- 2025-12-03 08:29:53
Edit Download
67.84 KB lrw-r--r-- 2025-12-03 08:29:53
Edit Download
6.34 KB lrw-r--r-- 2025-12-03 08:29:53
Edit Download
5.49 KB lrw-r--r-- 2025-03-04 10:06:28
Edit Download
1.99 KB lrw-r--r-- 2024-09-19 23:07:12
Edit Download
7.02 KB lrw-r--r-- 2025-12-03 08:29:52
Edit Download
4.91 KB lrw-r--r-- 2025-12-03 08:29:53
Edit Download
16.86 KB lrw-r--r-- 2024-05-01 21:01:10
Edit Download
3.97 KB lrw-r--r-- 2025-12-03 08:29:53
Edit Download
47.66 KB lrw-r--r-- 2025-12-03 08:29:52
Edit Download
9.22 KB lrw-r--r-- 2025-02-11 10:40:30
Edit Download
25.51 KB lrw-r--r-- 2025-12-03 08:29:52
Edit Download
198.38 KB lrw-r--r-- 2025-12-03 08:29:52
Edit Download
56.65 KB lrw-r--r-- 2025-12-03 08:29:53
Edit Download
10.46 KB lrw-r--r-- 2025-01-22 16:48:26
Edit Download
29.26 KB lrw-r--r-- 2025-01-22 16:48:26
Edit Download
35.30 KB lrw-r--r-- 2025-12-03 08:29:52
Edit Download
15.02 KB lrw-r--r-- 2025-12-03 08:29:52
Edit Download
2.57 KB lrw-r--r-- 2025-12-03 08:29:53
Edit Download
39.83 KB lrw-r--r-- 2024-06-14 09:18:12
Edit Download
70.64 KB lrw-r--r-- 2025-04-25 15:28:30
Edit Download
15.56 KB lrw-r--r-- 2025-04-14 11:31:24
Edit Download
7.33 KB lrw-r--r-- 2023-02-21 13:39:20
Edit Download
253 B lrw-r--r-- 2024-09-27 16:28:14
Edit Download
7.96 KB lrw-r--r-- 2024-10-22 07:16:16
Edit Download
969 B lrw-r--r-- 2024-09-30 19:50:20
Edit Download
16.28 KB lrw-r--r-- 2025-12-03 08:29:53
Edit Download
7.22 KB lrw-r--r-- 2023-06-24 14:17:24
Edit Download
12.95 KB lrw-r--r-- 2025-12-03 08:29:52
Edit Download
6.53 KB lrw-r--r-- 2023-06-22 11:57:24
Edit Download
3.42 KB lrw-r--r-- 2022-09-12 12:47:14
Edit Download
5.84 KB lrw-r--r-- 2023-06-22 11:36:26
Edit Download
1.97 KB lrw-r--r-- 2022-12-15 18:32:18
Edit Download
4.30 KB lrw-r--r-- 2023-10-11 04:05:26
Edit Download
2.91 KB lrw-r--r-- 2022-09-12 12:47:14
Edit Download
20.22 KB lrw-r--r-- 2025-12-03 08:29:52
Edit Download
36.11 KB lrw-r--r-- 2025-12-03 08:29:53
Edit Download
17.01 KB lrw-r--r-- 2025-12-03 08:29:52
Edit Download
6.62 KB lrw-r--r-- 2025-12-03 08:29:53
Edit Download
16.49 KB lrw-r--r-- 2025-02-25 19:40:22
Edit Download
29.82 KB lrw-r--r-- 2025-12-03 08:29:53
Edit Download
8.98 KB lrw-r--r-- 2025-12-03 08:29:52
Edit Download
19.42 KB lrw-r--r-- 2025-12-03 08:29:52
Edit Download
12.01 KB lrw-r--r-- 2024-09-13 19:12:16
Edit Download
17.11 KB lrw-r--r-- 2025-12-03 08:29:53
Edit Download
6.74 KB lrw-r--r-- 2024-03-06 02:05:12
Edit Download
30.93 KB lrw-r--r-- 2025-12-03 08:29:52
Edit Download
4.99 KB lrw-r--r-- 2024-09-03 15:19:14
Edit Download
4.25 KB lrw-r--r-- 2025-12-03 08:29:52
Edit Download
29.96 KB lrw-r--r-- 2025-02-09 08:09:22
Edit Download
6.34 KB lrw-r--r-- 2025-12-03 08:29:52
Edit Download
6.72 KB lrw-r--r-- 2022-10-04 00:59:14
Edit Download
10.92 KB lrw-r--r-- 2023-05-02 12:45:22
Edit Download
4.77 KB lrw-r--r-- 2025-02-17 08:24:22
Edit Download
3.38 KB lrw-r--r-- 2022-09-12 12:47:14
Edit Download
11.18 KB lrw-r--r-- 2025-02-23 08:11:22
Edit Download
62.19 KB lrw-r--r-- 2025-12-03 08:29:53
Edit Download
2.46 KB lrw-r--r-- 2023-09-08 06:32:24
Edit Download
31.13 KB lrw-r--r-- 2025-12-03 08:29:53
Edit Download
33.38 KB lrw-r--r-- 2025-12-03 08:29:53
Edit Download
7.15 KB lrw-r--r-- 2025-02-11 08:14:22
Edit Download
3.47 KB lrw-r--r-- 2025-12-03 08:29:52
Edit Download
1.87 KB lrw-r--r-- 2025-01-22 16:48:26
Edit Download
30.91 KB lrw-r--r-- 2025-12-03 08:29:52
Edit Download
19.12 KB lrw-r--r-- 2025-12-03 08:29:52
Edit Download
18.12 KB lrw-r--r-- 2025-03-26 19:07:28
Edit Download
39.99 KB lrw-r--r-- 2025-12-03 08:29:52
Edit Download
979 B lrw-r--r-- 2024-02-14 16:27:10
Edit Download
18.44 KB lrw-r--r-- 2025-01-22 16:48:26
Edit Download
10.24 KB lrw-r--r-- 2024-11-19 23:50:24
Edit Download
1.77 KB lrw-r--r-- 2024-06-04 08:55:14
Edit Download
7.19 KB lrw-r--r-- 2024-06-06 05:02:16
Edit Download
160.50 KB lrw-r--r-- 2025-12-03 08:29:52
Edit Download
27.95 KB lrw-r--r-- 2024-07-19 20:44:16
Edit Download
4.69 KB lrw-r--r-- 2025-02-18 19:32:22
Edit Download
2.94 KB lrw-r--r-- 2025-12-03 08:29:52
Edit Download
3.27 KB lrw-r--r-- 2022-09-12 12:47:14
Edit Download
18.00 KB lrw-r--r-- 2024-11-02 12:01:20
Edit Download
210.40 KB lrw-r--r-- 2025-12-03 08:29:53
Edit Download
373 B lrw-r--r-- 2022-09-20 11:17:12
Edit Download
343 B lrw-r--r-- 2022-09-20 11:17:12
Edit Download
11.10 KB lrw-r--r-- 2024-09-30 20:58:16
Edit Download
37.02 KB lrw-r--r-- 2025-12-03 08:29:52
Edit Download
2.24 KB lrw-r--r-- 2025-01-22 16:48:26
Edit Download
38.00 KB lrw-r--r-- 2025-12-03 08:29:52
Edit Download
9.25 KB lrw-r--r-- 2026-01-14 17:06:40
Edit Download
5.38 KB lrw-r--r-- 2024-03-04 09:41:10
Edit Download
1.16 KB lrw-r--r-- 2020-01-28 21:45:18
Edit Download
4.04 KB lrw-r--r-- 2024-03-04 09:41:10
Edit Download
281.84 KB lrw-r--r-- 2025-12-03 08:29:53
Edit Download
25.24 KB lrw-r--r-- 2025-01-22 16:48:26
Edit Download
4.81 KB lrw-r--r-- 2024-06-13 17:50:14
Edit Download
6.48 KB lrw-r--r-- 2023-02-23 22:23:20
Edit Download
2.79 KB lrw-r--r-- 2025-12-03 08:29:52
Edit Download
89.69 KB lrw-r--r-- 2025-12-03 08:29:52
Edit Download
4.11 KB lrw-r--r-- 2025-12-03 08:29:52
Edit Download
6.94 KB lrw-r--r-- 2024-05-27 13:29:16
Edit Download
22.66 KB lrw-r--r-- 2025-12-03 08:29:52
Edit Download
23.49 KB lrw-r--r-- 2025-12-03 08:29:52
Edit Download
37.45 KB lrw-r--r-- 2025-12-03 08:29:52
Edit Download
69.46 KB lrw-r--r-- 2025-12-03 08:29:53
Edit Download
445 B lrw-r--r-- 2022-07-21 19:45:12
Edit Download
799 B lrw-r--r-- 2025-01-22 16:48:26
Edit Download
If ZipArchive is unavailable, a .tar will be created (no compression).