PHP 8.2.31
Preview: class-wc-privacy.php Size: 15.52 KB
/home/nshryvcy/himaltourism.com/wp-content/plugins/woocommerce/includes/class-wc-privacy.php

<?php
/**
 * Privacy/GDPR related functionality which ties into WordPress functionality.
 *
 * @since 3.4.0
 * @package WooCommerce\Classes
 */

defined( 'ABSPATH' ) || exit;

if ( ! class_exists( 'WC_Privacy_Background_Process', false ) ) {
	include_once __DIR__ . '/class-wc-privacy-background-process.php';
}

/**
 * WC_Privacy Class.
 */
class WC_Privacy extends WC_Abstract_Privacy {

	/**
	 * Background process to clean up orders.
	 *
	 * @var WC_Privacy_Background_Process
	 */
	protected static $background_process;

	/**
	 * Init - hook into events.
	 */
	public function __construct() {
		parent::__construct();

		// Initialize data exporters and erasers.
		add_action( 'plugins_loaded', array( $this, 'register_erasers_exporters' ) );

		// Cleanup orders daily - this is a callback on a daily cron event.
		add_action( 'woocommerce_cleanup_personal_data', array( $this, 'queue_cleanup_personal_data' ) );

		// Handles custom anonymization types not included in core.
		add_filter( 'wp_privacy_anonymize_data', array( $this, 'anonymize_custom_data_types' ), 10, 3 );

		// When this is fired, data is removed in a given order. Called from bulk actions.
		add_action( 'woocommerce_remove_order_personal_data', array( 'WC_Privacy_Erasers', 'remove_order_personal_data' ) );
	}

	/**
	 * Initial registration of privacy erasers and exporters.
	 *
	 * Due to the use of translation functions, this should run only after plugins loaded.
	 */
	public function register_erasers_exporters() {
		$this->name = __( 'WooCommerce', 'woocommerce' );

		if ( ! self::$background_process ) {
			self::$background_process = new WC_Privacy_Background_Process();
		}

		// Include supporting classes.
		include_once __DIR__ . '/class-wc-privacy-erasers.php';
		include_once __DIR__ . '/class-wc-privacy-exporters.php';

		// This hook registers WooCommerce data exporters.
		$this->add_exporter( 'woocommerce-customer-data', __( 'WooCommerce Customer Data', 'woocommerce' ), array( 'WC_Privacy_Exporters', 'customer_data_exporter' ) );
		$this->add_exporter( 'woocommerce-customer-orders', __( 'WooCommerce Customer Orders', 'woocommerce' ), array( 'WC_Privacy_Exporters', 'order_data_exporter' ) );
		$this->add_exporter( 'woocommerce-customer-downloads', __( 'WooCommerce Customer Downloads', 'woocommerce' ), array( 'WC_Privacy_Exporters', 'download_data_exporter' ) );
		$this->add_exporter( 'woocommerce-customer-tokens', __( 'WooCommerce Customer Payment Tokens', 'woocommerce' ), array( 'WC_Privacy_Exporters', 'customer_tokens_exporter' ) );

		// This hook registers WooCommerce data erasers.
		$this->add_eraser( 'woocommerce-customer-data', __( 'WooCommerce Customer Data', 'woocommerce' ), array( 'WC_Privacy_Erasers', 'customer_data_eraser' ) );
		$this->add_eraser( 'woocommerce-customer-orders', __( 'WooCommerce Customer Orders', 'woocommerce' ), array( 'WC_Privacy_Erasers', 'order_data_eraser' ) );
		$this->add_eraser( 'woocommerce-customer-downloads', __( 'WooCommerce Customer Downloads', 'woocommerce' ), array( 'WC_Privacy_Erasers', 'download_data_eraser' ) );
		$this->add_eraser( 'woocommerce-customer-tokens', __( 'WooCommerce Customer Payment Tokens', 'woocommerce' ), array( 'WC_Privacy_Erasers', 'customer_tokens_eraser' ) );
	}

	/**
	 * Add privacy policy content for the privacy policy page.
	 *
	 * @since 3.4.0
	 */
	public function get_privacy_message() {
		$content = '<div class="wp-suggested-text">' .
			'<p class="privacy-policy-tutorial">' .
				__( 'This sample language includes the basics around what personal data your store may be collecting, storing and sharing, as well as who may have access to that data. Depending on what settings are enabled and which additional plugins are used, the specific information shared by your store will vary. We recommend consulting with a lawyer when deciding what information to disclose on your privacy policy.', 'woocommerce' ) .
			'</p>' .
			'<p>' . __( 'We collect information about you during the checkout process on our store.', 'woocommerce' ) . '</p>' .
			'<h2>' . __( 'What we collect and store', 'woocommerce' ) . '</h2>' .
			'<p>' . __( 'While you visit our site, we’ll track:', 'woocommerce' ) . '</p>' .
			'<ul>' .
				'<li>' . __( 'Products you’ve viewed: we’ll use this to, for example, show you products you’ve recently viewed', 'woocommerce' ) . '</li>' .
				'<li>' . __( 'Location, IP address and browser type: we’ll use this for purposes like estimating taxes and shipping', 'woocommerce' ) . '</li>' .
				'<li>' . __( 'Shipping address: we’ll ask you to enter this so we can, for instance, estimate shipping before you place an order, and send you the order!', 'woocommerce' ) . '</li>' .
			'</ul>' .
			'<p>' . __( 'We’ll also use cookies to keep track of cart contents while you’re browsing our site.', 'woocommerce' ) . '</p>' .
			'<p class="privacy-policy-tutorial">' .
				__( 'Note: you may want to further detail your cookie policy, and link to that section from here.', 'woocommerce' ) .
			'</p>' .
			'<p>' . __( 'When you purchase from us, we’ll ask you to provide information including your name, billing address, shipping address, email address, phone number, credit card/payment details and optional account information like username and password. We’ll use this information for purposes, such as, to:', 'woocommerce' ) . '</p>' .
			'<ul>' .
				'<li>' . __( 'Send you information about your account and order', 'woocommerce' ) . '</li>' .
				'<li>' . __( 'Respond to your requests, including refunds and complaints', 'woocommerce' ) . '</li>' .
				'<li>' . __( 'Process payments and prevent fraud', 'woocommerce' ) . '</li>' .
				'<li>' . __( 'Set up your account for our store', 'woocommerce' ) . '</li>' .
				'<li>' . __( 'Comply with any legal obligations we have, such as calculating taxes', 'woocommerce' ) . '</li>' .
				'<li>' . __( 'Improve our store offerings', 'woocommerce' ) . '</li>' .
				'<li>' . __( 'Send you marketing messages, if you choose to receive them', 'woocommerce' ) . '</li>' .
			'</ul>' .
			'<p>' . __( 'If you create an account, we will store your name, address, email and phone number, which will be used to populate the checkout for future orders.', 'woocommerce' ) . '</p>' .
			'<p>' . __( 'We generally store information about you for as long as we need the information for the purposes for which we collect and use it, and we are not legally required to continue to keep it. For example, we will store order information for XXX years for tax and accounting purposes. This includes your name, email address and billing and shipping addresses.', 'woocommerce' ) . '</p>' .
			'<p>' . __( 'We will also store comments or reviews, if you choose to leave them.', 'woocommerce' ) . '</p>' .
			'<h2>' . __( 'Who on our team has access', 'woocommerce' ) . '</h2>' .
			'<p>' . __( 'Members of our team have access to the information you provide us. For example, both Administrators and Shop Managers can access:', 'woocommerce' ) . '</p>' .
			'<ul>' .
				'<li>' . __( 'Order information like what was purchased, when it was purchased and where it should be sent, and', 'woocommerce' ) . '</li>' .
				'<li>' . __( 'Customer information like your name, email address, and billing and shipping information.', 'woocommerce' ) . '</li>' .
			'</ul>' .
			'<p>' . __( 'Our team members have access to this information to help fulfill orders, process refunds and support you.', 'woocommerce' ) . '</p>' .
			'<h2>' . __( 'What we share with others', 'woocommerce' ) . '</h2>' .
			'<p class="privacy-policy-tutorial">' .
				__( 'In this section you should list who you’re sharing data with, and for what purpose. This could include, but may not be limited to, analytics, marketing, payment gateways, shipping providers, and third party embeds.', 'woocommerce' ) .
			'</p>' .
			'<p>' . __( 'We share information with third parties who help us provide our orders and store services to you; for example --', 'woocommerce' ) . '</p>' .
			'<h3>' . __( 'Payments', 'woocommerce' ) . '</h3>' .
			'<p class="privacy-policy-tutorial">' .
				__( 'In this subsection you should list which third party payment processors you’re using to take payments on your store since these may handle customer data. We’ve included PayPal as an example, but you should remove this if you’re not using PayPal.', 'woocommerce' ) .
			'</p>' .
			'<p>' . __( 'We accept payments through PayPal. When processing payments, some of your data will be passed to PayPal, including information required to process or support the payment, such as the purchase total and billing information.', 'woocommerce' ) . '</p>' .
			'<p>' . __( 'Please see the <a href="https://www.paypal.com/us/webapps/mpp/ua/privacy-full">PayPal Privacy Policy</a> for more details.', 'woocommerce' ) . '</p>' .
			'</div>';

		return apply_filters( 'wc_privacy_policy_content', $content );
	}

	/**
	 * Spawn events for order cleanup.
	 */
	public function queue_cleanup_personal_data() {
		self::$background_process->push_to_queue( array( 'task' => 'trash_pending_orders' ) );
		self::$background_process->push_to_queue( array( 'task' => 'trash_failed_orders' ) );
		self::$background_process->push_to_queue( array( 'task' => 'trash_cancelled_orders' ) );
		self::$background_process->push_to_queue( array( 'task' => 'anonymize_completed_orders' ) );
		self::$background_process->push_to_queue( array( 'task' => 'delete_inactive_accounts' ) );
		self::$background_process->save()->dispatch();
	}

	/**
	 * Handle some custom types of data and anonymize them.
	 *
	 * @param string $anonymous Anonymized string.
	 * @param string $type Type of data.
	 * @param string $data The data being anonymized.
	 * @return string Anonymized string.
	 */
	public function anonymize_custom_data_types( $anonymous, $type, $data ) {
		switch ( $type ) {
			case 'address_state':
			case 'address_country':
				$anonymous = ''; // Empty string - we don't want to store anything after removal.
				break;
			case 'phone':
				$anonymous = preg_replace( '/\d/u', '0', $data );
				break;
			case 'numeric_id':
				$anonymous = 0;
				break;
		}
		return $anonymous;
	}

	/**
	 * Find and trash old orders.
	 *
	 * @since 3.4.0
	 * @param  int $limit Limit orders to process per batch.
	 * @return int Number of orders processed.
	 */
	public static function trash_pending_orders( $limit = 20 ) {
		$option = wc_parse_relative_date_option( get_option( 'woocommerce_trash_pending_orders' ) );

		if ( empty( $option['number'] ) ) {
			return 0;
		}

		return self::trash_orders_query(
			apply_filters(
				'woocommerce_trash_pending_orders_query_args',
				array(
					'date_created' => '<' . strtotime( '-' . $option['number'] . ' ' . $option['unit'] ),
					'limit'        => $limit, // Batches of 20.
					'status'       => 'wc-pending',
					'type'         => 'shop_order',
				)
			)
		);
	}

	/**
	 * Find and trash old orders.
	 *
	 * @since 3.4.0
	 * @param  int $limit Limit orders to process per batch.
	 * @return int Number of orders processed.
	 */
	public static function trash_failed_orders( $limit = 20 ) {
		$option = wc_parse_relative_date_option( get_option( 'woocommerce_trash_failed_orders' ) );

		if ( empty( $option['number'] ) ) {
			return 0;
		}

		return self::trash_orders_query(
			apply_filters(
				'woocommerce_trash_failed_orders_query_args',
				array(
					'date_created' => '<' . strtotime( '-' . $option['number'] . ' ' . $option['unit'] ),
					'limit'        => $limit, // Batches of 20.
					'status'       => 'wc-failed',
					'type'         => 'shop_order',
				)
			)
		);
	}

	/**
	 * Find and trash old orders.
	 *
	 * @since 3.4.0
	 * @param  int $limit Limit orders to process per batch.
	 * @return int Number of orders processed.
	 */
	public static function trash_cancelled_orders( $limit = 20 ) {
		$option = wc_parse_relative_date_option( get_option( 'woocommerce_trash_cancelled_orders' ) );

		if ( empty( $option['number'] ) ) {
			return 0;
		}

		return self::trash_orders_query(
			apply_filters(
				'woocommerce_trash_cancelled_orders_query_args',
				array(
					'date_created' => '<' . strtotime( '-' . $option['number'] . ' ' . $option['unit'] ),
					'limit'        => $limit, // Batches of 20.
					'status'       => 'wc-cancelled',
					'type'         => 'shop_order',
				)
			)
		);
	}

	/**
	 * For a given query trash all matches.
	 *
	 * @since 3.4.0
	 * @param array $query Query array to pass to wc_get_orders().
	 * @return int Count of orders that were trashed.
	 */
	protected static function trash_orders_query( $query ) {
		$orders = wc_get_orders( $query );
		$count  = 0;

		if ( $orders ) {
			foreach ( $orders as $order ) {
				$order->delete( false );
				$count ++;
			}
		}

		return $count;
	}

	/**
	 * Anonymize old completed orders.
	 *
	 * @since 3.4.0
	 * @param  int $limit Limit orders to process per batch.
	 * @return int Number of orders processed.
	 */
	public static function anonymize_completed_orders( $limit = 20 ) {
		$option = wc_parse_relative_date_option( get_option( 'woocommerce_anonymize_completed_orders' ) );

		if ( empty( $option['number'] ) ) {
			return 0;
		}

		return self::anonymize_orders_query(
			apply_filters(
				'woocommerce_anonymize_completed_orders_query_args',
				array(
					'date_created' => '<' . strtotime( '-' . $option['number'] . ' ' . $option['unit'] ),
					'limit'        => $limit, // Batches of 20.
					'status'       => 'wc-completed',
					'anonymized'   => false,
					'type'         => 'shop_order',
				)
			)
		);
	}

	/**
	 * For a given query, anonymize all matches.
	 *
	 * @since 3.4.0
	 * @param array $query Query array to pass to wc_get_orders().
	 * @return int Count of orders that were anonymized.
	 */
	protected static function anonymize_orders_query( $query ) {
		$orders = wc_get_orders( $query );
		$count  = 0;

		if ( $orders ) {
			foreach ( $orders as $order ) {
				WC_Privacy_Erasers::remove_order_personal_data( $order );
				$count ++;
			}
		}

		return $count;
	}

	/**
	 * Delete inactive accounts.
	 *
	 * @since 3.4.0
	 * @param  int $limit Limit users to process per batch.
	 * @return int Number of users processed.
	 */
	public static function delete_inactive_accounts( $limit = 20 ) {
		$option = wc_parse_relative_date_option( get_option( 'woocommerce_delete_inactive_accounts' ) );

		if ( empty( $option['number'] ) ) {
			return 0;
		}

		return self::delete_inactive_accounts_query( strtotime( '-' . $option['number'] . ' ' . $option['unit'] ), $limit );
	}

	/**
	 * Delete inactive accounts.
	 *
	 * @since 3.4.0
	 * @param int $timestamp Timestamp to delete customers before.
	 * @param int $limit     Limit number of users to delete per run.
	 * @return int Count of customers that were deleted.
	 */
	protected static function delete_inactive_accounts_query( $timestamp, $limit = 20 ) {
		$count      = 0;
		$user_query = new WP_User_Query(
			array(
				'fields'     => 'ID',
				'number'     => $limit,
				'role__in'   => apply_filters(
					'woocommerce_delete_inactive_account_roles',
					array(
						'Customer',
						'Subscriber',
					)
				),
				'meta_query' => array( // phpcs:ignore WordPress.DB.SlowDBQuery.slow_db_query_meta_query
					'relation' => 'AND',
					array(
						'key'     => 'wc_last_active',
						'value'   => (string) $timestamp,
						'compare' => '<',
						'type'    => 'NUMERIC',
					),
					array(
						'key'     => 'wc_last_active',
						'value'   => '0',
						'compare' => '>',
						'type'    => 'NUMERIC',
					),
				),
			)
		);

		$user_ids = $user_query->get_results();

		if ( $user_ids ) {
			if ( ! function_exists( 'wp_delete_user' ) ) {
				require_once ABSPATH . 'wp-admin/includes/user.php';
			}

			foreach ( $user_ids as $user_id ) {
				wp_delete_user( $user_id );
				$count ++;
			}
		}

		return $count;
	}
}

new WC_Privacy();

Directory Contents

Dirs: 27 × Files: 110

Name Size Perms Modified Actions
abstracts DIR
- drwxr-xr-x 2026-03-03 06:10:17
Edit Download
admin DIR
- drwxr-xr-x 2026-03-03 06:10:17
Edit Download
blocks DIR
- drwxr-xr-x 2026-03-03 06:10:17
Edit Download
cli DIR
- drwxr-xr-x 2026-03-03 06:10:17
Edit Download
- drwxr-xr-x 2026-03-03 06:10:17
Edit Download
- drwxr-xr-x 2026-03-03 06:10:17
Edit Download
emails DIR
- drwxr-xr-x 2026-03-03 06:10:17
Edit Download
export DIR
- drwxr-xr-x 2026-03-03 06:10:17
Edit Download
gateways DIR
- drwxr-xr-x 2026-03-03 06:10:17
Edit Download
import DIR
- drwxr-xr-x 2026-03-03 06:10:17
Edit Download
- drwxr-xr-x 2026-03-03 06:10:16
Edit Download
- drwxr-xr-x 2026-03-03 06:10:17
Edit Download
legacy DIR
- drwxr-xr-x 2026-03-03 06:10:17
Edit Download
libraries DIR
- drwxr-xr-x 2026-03-03 06:10:17
Edit Download
- drwxr-xr-x 2026-03-03 06:10:17
Edit Download
- drwxr-xr-x 2026-03-03 06:10:17
Edit Download
queue DIR
- drwxr-xr-x 2026-03-03 06:10:17
Edit Download
- drwxr-xr-x 2026-03-03 06:10:17
Edit Download
rest-api DIR
- drwxr-xr-x 2026-03-03 06:10:17
Edit Download
shipping DIR
- drwxr-xr-x 2026-03-03 06:10:16
Edit Download
- drwxr-xr-x 2026-03-03 06:10:17
Edit Download
- drwxr-xr-x 2026-03-03 06:10:18
Edit Download
tracks DIR
- drwxr-xr-x 2026-03-03 06:10:18
Edit Download
traits DIR
- drwxr-xr-x 2026-03-03 06:10:18
Edit Download
walkers DIR
- drwxr-xr-x 2026-03-03 06:10:18
Edit Download
- drwxr-xr-x 2026-03-03 06:10:18
Edit Download
widgets DIR
- drwxr-xr-x 2026-03-03 06:10:18
Edit Download
101.43 KB lrw-r--r-- 2026-03-03 06:10:17
Edit Download
4.99 KB lrw-r--r-- 2026-03-03 06:10:17
Edit Download
12.58 KB lrw-r--r-- 2026-03-03 06:10:17
Edit Download
2.74 KB lrw-r--r-- 2026-03-03 06:10:17
Edit Download
4.58 KB lrw-r--r-- 2026-03-03 06:10:17
Edit Download
3.45 KB lrw-r--r-- 2026-03-03 06:10:17
Edit Download
9.49 KB lrw-r--r-- 2026-03-03 06:10:17
Edit Download
11.82 KB lrw-r--r-- 2026-03-03 06:10:17
Edit Download
3.41 KB lrw-r--r-- 2026-03-03 06:10:17
Edit Download
16.07 KB lrw-r--r-- 2026-03-03 06:10:17
Edit Download
28.15 KB lrw-r--r-- 2026-03-03 06:10:17
Edit Download
65.32 KB lrw-r--r-- 2026-03-03 06:10:17
Edit Download
46.40 KB lrw-r--r-- 2026-03-03 06:10:17
Edit Download
1.70 KB lrw-r--r-- 2026-03-03 06:10:17
Edit Download
15.86 KB lrw-r--r-- 2026-03-03 06:10:17
Edit Download
46.91 KB lrw-r--r-- 2026-03-03 06:10:17
Edit Download
33.90 KB lrw-r--r-- 2026-03-03 06:10:17
Edit Download
3.37 KB lrw-r--r-- 2026-03-03 06:10:17
Edit Download
10.45 KB lrw-r--r-- 2026-03-03 06:10:17
Edit Download
28.91 KB lrw-r--r-- 2026-03-03 06:10:17
Edit Download
1.29 KB lrw-r--r-- 2026-03-03 06:10:17
Edit Download
6.59 KB lrw-r--r-- 2026-03-03 06:10:17
Edit Download
2.26 KB lrw-r--r-- 2026-03-03 06:10:17
Edit Download
6.88 KB lrw-r--r-- 2026-03-03 06:10:17
Edit Download
7.34 KB lrw-r--r-- 2026-03-03 06:10:17
Edit Download
32.84 KB lrw-r--r-- 2026-03-03 06:10:17
Edit Download
25.47 KB lrw-r--r-- 2026-03-03 06:10:17
Edit Download
22.46 KB lrw-r--r-- 2026-03-03 06:10:17
Edit Download
4.18 KB lrw-r--r-- 2026-03-03 06:10:17
Edit Download
44.02 KB lrw-r--r-- 2026-03-03 06:10:17
Edit Download
26.49 KB lrw-r--r-- 2026-03-03 06:10:17
Edit Download
30.41 KB lrw-r--r-- 2026-03-03 06:10:17
Edit Download
1.99 KB lrw-r--r-- 2026-03-03 06:10:17
Edit Download
10.44 KB lrw-r--r-- 2026-03-03 06:10:17
Edit Download
4.33 KB lrw-r--r-- 2026-03-03 06:10:17
Edit Download
75.56 KB lrw-r--r-- 2026-03-03 06:10:17
Edit Download
1.28 KB lrw-r--r-- 2026-03-03 06:10:17
Edit Download
2.54 KB lrw-r--r-- 2026-03-03 06:10:17
Edit Download
8.77 KB lrw-r--r-- 2026-03-03 06:10:17
Edit Download
2.21 KB lrw-r--r-- 2026-03-03 06:10:17
Edit Download
7.17 KB lrw-r--r-- 2026-03-03 06:10:17
Edit Download
4.08 KB lrw-r--r-- 2026-03-03 06:10:17
Edit Download
8.76 KB lrw-r--r-- 2026-03-03 06:10:17
Edit Download
5.80 KB lrw-r--r-- 2026-03-03 06:10:17
Edit Download
13.14 KB lrw-r--r-- 2026-03-03 06:10:17
Edit Download
7.78 KB lrw-r--r-- 2026-03-03 06:10:17
Edit Download
6.49 KB lrw-r--r-- 2026-03-03 06:10:17
Edit Download
11.28 KB lrw-r--r-- 2026-03-03 06:10:17
Edit Download
2.55 KB lrw-r--r-- 2026-03-03 06:10:17
Edit Download
5.59 KB lrw-r--r-- 2026-03-03 06:10:17
Edit Download
67.13 KB lrw-r--r-- 2026-03-03 06:10:17
Edit Download
5.42 KB lrw-r--r-- 2026-03-03 06:10:17
Edit Download
6.24 KB lrw-r--r-- 2026-03-03 06:10:17
Edit Download
20.39 KB lrw-r--r-- 2026-03-03 06:10:17
Edit Download
28.19 KB lrw-r--r-- 2026-03-03 06:10:17
Edit Download
1.67 KB lrw-r--r-- 2026-03-03 06:10:17
Edit Download
13.61 KB lrw-r--r-- 2026-03-03 06:10:17
Edit Download
14.69 KB lrw-r--r-- 2026-03-03 06:10:17
Edit Download
15.52 KB lrw-r--r-- 2026-03-03 06:10:17
Edit Download
6.97 KB lrw-r--r-- 2026-03-03 06:10:17
Edit Download
12.08 KB lrw-r--r-- 2026-03-03 06:10:17
Edit Download
4.84 KB lrw-r--r-- 2026-03-03 06:10:17
Edit Download
3.58 KB lrw-r--r-- 2026-03-03 06:10:17
Edit Download
5.22 KB lrw-r--r-- 2026-03-03 06:10:17
Edit Download
2.18 KB lrw-r--r-- 2026-03-03 06:10:17
Edit Download
1.89 KB lrw-r--r-- 2026-03-03 06:10:17
Edit Download
21.51 KB lrw-r--r-- 2026-03-03 06:10:17
Edit Download
16.87 KB lrw-r--r-- 2026-03-03 06:10:17
Edit Download
32.60 KB lrw-r--r-- 2026-03-03 06:10:17
Edit Download
4.00 KB lrw-r--r-- 2026-03-03 06:10:17
Edit Download
7.74 KB lrw-r--r-- 2026-03-03 06:10:17
Edit Download
15.19 KB lrw-r--r-- 2026-03-03 06:10:17
Edit Download
5.05 KB lrw-r--r-- 2026-03-03 06:10:17
Edit Download
19.52 KB lrw-r--r-- 2026-03-03 06:10:17
Edit Download
276 B lrw-r--r-- 2026-03-03 06:10:17
Edit Download
13.78 KB lrw-r--r-- 2026-03-03 06:10:17
Edit Download
5.51 KB lrw-r--r-- 2026-03-03 06:10:17
Edit Download
13.08 KB lrw-r--r-- 2026-03-03 06:10:17
Edit Download
4.01 KB lrw-r--r-- 2026-03-03 06:10:17
Edit Download
11.57 KB lrw-r--r-- 2026-03-03 06:10:17
Edit Download
17.23 KB lrw-r--r-- 2026-03-03 06:10:17
Edit Download
17.32 KB lrw-r--r-- 2026-03-03 06:10:17
Edit Download
37.00 KB lrw-r--r-- 2026-03-03 06:10:17
Edit Download
21.42 KB lrw-r--r-- 2026-03-03 06:10:17
Edit Download
25.88 KB lrw-r--r-- 2026-03-03 06:10:17
Edit Download
5.74 KB lrw-r--r-- 2026-03-03 06:10:17
Edit Download
30.01 KB lrw-r--r-- 2026-03-03 06:10:17
Edit Download
36.00 KB lrw-r--r-- 2026-03-03 06:10:17
Edit Download
12.96 KB lrw-r--r-- 2026-03-03 06:10:18
Edit Download
20.61 KB lrw-r--r-- 2026-03-03 06:10:18
Edit Download
17.36 KB lrw-r--r-- 2026-03-03 06:10:18
Edit Download
13.78 KB lrw-r--r-- 2026-03-03 06:10:18
Edit Download
79.13 KB lrw-r--r-- 2026-03-03 06:10:18
Edit Download
2.68 KB lrw-r--r-- 2026-03-03 06:10:18
Edit Download
32.70 KB lrw-r--r-- 2026-03-03 06:10:18
Edit Download
43.99 KB lrw-r--r-- 2026-03-03 06:10:18
Edit Download
7.50 KB lrw-r--r-- 2026-03-03 06:10:18
Edit Download
35.95 KB lrw-r--r-- 2026-03-03 06:10:18
Edit Download
5.03 KB lrw-r--r-- 2026-03-03 06:10:18
Edit Download
6.92 KB lrw-r--r-- 2026-03-03 06:10:18
Edit Download
48.22 KB lrw-r--r-- 2026-03-03 06:10:18
Edit Download
10.89 KB lrw-r--r-- 2026-03-03 06:10:18
Edit Download
13.22 KB lrw-r--r-- 2026-03-03 06:10:18
Edit Download
117.28 KB lrw-r--r-- 2026-03-03 06:10:18
Edit Download
12.38 KB lrw-r--r-- 2026-03-03 06:10:18
Edit Download
20.66 KB lrw-r--r-- 2026-03-03 06:10:18
Edit Download
76.38 KB lrw-r--r-- 2026-03-03 06:10:18
Edit Download
27.65 KB lrw-r--r-- 2026-03-03 06:10:18
Edit Download
5.60 KB lrw-r--r-- 2026-03-03 06:10:18
Edit Download
2.01 KB lrw-r--r-- 2026-03-03 06:10:18
Edit Download

If ZipArchive is unavailable, a .tar will be created (no compression).