PHP 7.4.33
Preview: functions.wp-scripts.php Size: 13.52 KB
/var/www/letsgokerala.wpress.dk/httpdocs/wp-includes/functions.wp-scripts.php
<?php
/**
 * Dependencies API: Scripts functions
 *
 * @since 2.6.0
 *
 * @package WordPress
 * @subpackage Dependencies
 */

/**
 * Initialize $wp_scripts if it has not been set.
 *
 * @global WP_Scripts $wp_scripts
 *
 * @since 4.2.0
 *
 * @return WP_Scripts WP_Scripts instance.
 */
function wp_scripts() {
	global $wp_scripts;

	if ( ! ( $wp_scripts instanceof WP_Scripts ) ) {
		$wp_scripts = new WP_Scripts();
	}

	return $wp_scripts;
}

/**
 * Helper function to output a _doing_it_wrong message when applicable.
 *
 * @ignore
 * @since 4.2.0
 * @since 5.5.0 Added the `$handle` parameter.
 *
 * @param string $function Function name.
 * @param string $handle   Optional. Name of the script or stylesheet that was
 *                         registered or enqueued too early. Default empty.
 */
function _wp_scripts_maybe_doing_it_wrong( $function, $handle = '' ) {
	if ( did_action( 'init' ) || did_action( 'wp_enqueue_scripts' )
		|| did_action( 'admin_enqueue_scripts' ) || did_action( 'login_enqueue_scripts' )
	) {
		return;
	}

	$message = sprintf(
		/* translators: 1: wp_enqueue_scripts, 2: admin_enqueue_scripts, 3: login_enqueue_scripts */
		__( 'Scripts and styles should not be registered or enqueued until the %1$s, %2$s, or %3$s hooks.' ),
		'<code>wp_enqueue_scripts</code>',
		'<code>admin_enqueue_scripts</code>',
		'<code>login_enqueue_scripts</code>'
	);

	if ( $handle ) {
		$message .= ' ' . sprintf(
			/* translators: %s: Name of the script or stylesheet. */
			__( 'This notice was triggered by the %s handle.' ),
			'<code>' . $handle . '</code>'
		);
	}

	_doing_it_wrong(
		$function,
		$message,
		'3.3.0'
	);
}

/**
 * Prints scripts in document head that are in the $handles queue.
 *
 * Called by admin-header.php and {@see 'wp_head'} hook. Since it is called by wp_head on every page load,
 * the function does not instantiate the WP_Scripts object unless script names are explicitly passed.
 * Makes use of already-instantiated $wp_scripts global if present. Use provided {@see 'wp_print_scripts'}
 * hook to register/enqueue new scripts.
 *
 * @see WP_Scripts::do_item()
 * @global WP_Scripts $wp_scripts The WP_Scripts object for printing scripts.
 *
 * @since 2.1.0
 *
 * @param string|bool|array $handles Optional. Scripts to be printed. Default 'false'.
 * @return string[] On success, an array of handles of processed WP_Dependencies items; otherwise, an empty array.
 */
function wp_print_scripts( $handles = false ) {
	global $wp_scripts;

	/**
	 * Fires before scripts in the $handles queue are printed.
	 *
	 * @since 2.1.0
	 */
	do_action( 'wp_print_scripts' );

	if ( '' === $handles ) { // For 'wp_head'.
		$handles = false;
	}

	_wp_scripts_maybe_doing_it_wrong( __FUNCTION__ );

	if ( ! ( $wp_scripts instanceof WP_Scripts ) ) {
		if ( ! $handles ) {
			return array(); // No need to instantiate if nothing is there.
		}
	}

	return wp_scripts()->do_items( $handles );
}

/**
 * Adds extra code to a registered script.
 *
 * Code will only be added if the script is already in the queue.
 * Accepts a string $data containing the Code. If two or more code blocks
 * are added to the same script $handle, they will be printed in the order
 * they were added, i.e. the latter added code can redeclare the previous.
 *
 * @since 4.5.0
 *
 * @see WP_Scripts::add_inline_script()
 *
 * @param string $handle   Name of the script to add the inline script to.
 * @param string $data     String containing the JavaScript to be added.
 * @param string $position Optional. Whether to add the inline script before the handle
 *                         or after. Default 'after'.
 * @return bool True on success, false on failure.
 */
function wp_add_inline_script( $handle, $data, $position = 'after' ) {
	_wp_scripts_maybe_doing_it_wrong( __FUNCTION__, $handle );

	if ( false !== stripos( $data, '</script>' ) ) {
		_doing_it_wrong(
			__FUNCTION__,
			sprintf(
				/* translators: 1: <script>, 2: wp_add_inline_script() */
				__( 'Do not pass %1$s tags to %2$s.' ),
				'<code>&lt;script&gt;</code>',
				'<code>wp_add_inline_script()</code>'
			),
			'4.5.0'
		);
		$data = trim( preg_replace( '#<script[^>]*>(.*)</script>#is', '$1', $data ) );
	}

	return wp_scripts()->add_inline_script( $handle, $data, $position );
}

/**
 * Register a new script.
 *
 * Registers a script to be enqueued later using the wp_enqueue_script() function.
 *
 * @see WP_Dependencies::add()
 * @see WP_Dependencies::add_data()
 *
 * @since 2.1.0
 * @since 4.3.0 A return value was added.
 *
 * @param string           $handle    Name of the script. Should be unique.
 * @param string|bool      $src       Full URL of the script, or path of the script relative to the WordPress root directory.
 *                                    If source is set to false, script is an alias of other scripts it depends on.
 * @param string[]         $deps      Optional. An array of registered script handles this script depends on. Default empty array.
 * @param string|bool|null $ver       Optional. String specifying script version number, if it has one, which is added to the URL
 *                                    as a query string for cache busting purposes. If version is set to false, a version
 *                                    number is automatically added equal to current installed WordPress version.
 *                                    If set to null, no version is added.
 * @param bool             $in_footer Optional. Whether to enqueue the script before </body> instead of in the <head>.
 *                                    Default 'false'.
 * @return bool Whether the script has been registered. True on success, false on failure.
 */
function wp_register_script( $handle, $src, $deps = array(), $ver = false, $in_footer = false ) {
	_wp_scripts_maybe_doing_it_wrong( __FUNCTION__, $handle );

	$wp_scripts = wp_scripts();

	$registered = $wp_scripts->add( $handle, $src, $deps, $ver );
	if ( $in_footer ) {
		$wp_scripts->add_data( $handle, 'group', 1 );
	}

	return $registered;
}

/**
 * Localize a script.
 *
 * Works only if the script has already been added.
 *
 * Accepts an associative array $l10n and creates a JavaScript object:
 *
 *     "$object_name" = {
 *         key: value,
 *         key: value,
 *         ...
 *     }
 *
 * @see WP_Scripts::localize()
 * @link https://core.trac.wordpress.org/ticket/11520
 * @global WP_Scripts $wp_scripts The WP_Scripts object for printing scripts.
 *
 * @since 2.2.0
 *
 * @todo Documentation cleanup
 *
 * @param string $handle      Script handle the data will be attached to.
 * @param string $object_name Name for the JavaScript object. Passed directly, so it should be qualified JS variable.
 *                            Example: '/[a-zA-Z0-9_]+/'.
 * @param array  $l10n        The data itself. The data can be either a single or multi-dimensional array.
 * @return bool True if the script was successfully localized, false otherwise.
 */
function wp_localize_script( $handle, $object_name, $l10n ) {
	global $wp_scripts;

	if ( ! ( $wp_scripts instanceof WP_Scripts ) ) {
		_wp_scripts_maybe_doing_it_wrong( __FUNCTION__, $handle );
		return false;
	}

	return $wp_scripts->localize( $handle, $object_name, $l10n );
}

/**
 * Sets translated strings for a script.
 *
 * Works only if the script has already been added.
 *
 * @see WP_Scripts::set_translations()
 * @global WP_Scripts $wp_scripts The WP_Scripts object for printing scripts.
 *
 * @since 5.0.0
 * @since 5.1.0 The `$domain` parameter was made optional.
 *
 * @param string $handle Script handle the textdomain will be attached to.
 * @param string $domain Optional. Text domain. Default 'default'.
 * @param string $path   Optional. The full file path to the directory containing translation files.
 * @return bool True if the text domain was successfully localized, false otherwise.
 */
function wp_set_script_translations( $handle, $domain = 'default', $path = null ) {
	global $wp_scripts;

	if ( ! ( $wp_scripts instanceof WP_Scripts ) ) {
		_wp_scripts_maybe_doing_it_wrong( __FUNCTION__, $handle );
		return false;
	}

	return $wp_scripts->set_translations( $handle, $domain, $path );
}

/**
 * Remove a registered script.
 *
 * Note: there are intentional safeguards in place to prevent critical admin scripts,
 * such as jQuery core, from being unregistered.
 *
 * @see WP_Dependencies::remove()
 *
 * @since 2.1.0
 *
 * @global string $pagenow
 *
 * @param string $handle Name of the script to be removed.
 */
function wp_deregister_script( $handle ) {
	global $pagenow;

	_wp_scripts_maybe_doing_it_wrong( __FUNCTION__, $handle );

	/**
	 * Do not allow accidental or negligent de-registering of critical scripts in the admin.
	 * Show minimal remorse if the correct hook is used.
	 */
	$current_filter = current_filter();
	if ( ( is_admin() && 'admin_enqueue_scripts' !== $current_filter ) ||
		( 'wp-login.php' === $pagenow && 'login_enqueue_scripts' !== $current_filter )
	) {
		$not_allowed = array(
			'jquery',
			'jquery-core',
			'jquery-migrate',
			'jquery-ui-core',
			'jquery-ui-accordion',
			'jquery-ui-autocomplete',
			'jquery-ui-button',
			'jquery-ui-datepicker',
			'jquery-ui-dialog',
			'jquery-ui-draggable',
			'jquery-ui-droppable',
			'jquery-ui-menu',
			'jquery-ui-mouse',
			'jquery-ui-position',
			'jquery-ui-progressbar',
			'jquery-ui-resizable',
			'jquery-ui-selectable',
			'jquery-ui-slider',
			'jquery-ui-sortable',
			'jquery-ui-spinner',
			'jquery-ui-tabs',
			'jquery-ui-tooltip',
			'jquery-ui-widget',
			'underscore',
			'backbone',
		);

		if ( in_array( $handle, $not_allowed, true ) ) {
			$message = sprintf(
				/* translators: 1: Script name, 2: wp_enqueue_scripts */
				__( 'Do not deregister the %1$s script in the administration area. To target the front-end theme, use the %2$s hook.' ),
				"<code>$handle</code>",
				'<code>wp_enqueue_scripts</code>'
			);
			_doing_it_wrong( __FUNCTION__, $message, '3.6.0' );
			return;
		}
	}

	wp_scripts()->remove( $handle );
}

/**
 * Enqueue a script.
 *
 * Registers the script if $src provided (does NOT overwrite), and enqueues it.
 *
 * @see WP_Dependencies::add()
 * @see WP_Dependencies::add_data()
 * @see WP_Dependencies::enqueue()
 *
 * @since 2.1.0
 *
 * @param string           $handle    Name of the script. Should be unique.
 * @param string           $src       Full URL of the script, or path of the script relative to the WordPress root directory.
 *                                    Default empty.
 * @param string[]         $deps      Optional. An array of registered script handles this script depends on. Default empty array.
 * @param string|bool|null $ver       Optional. String specifying script version number, if it has one, which is added to the URL
 *                                    as a query string for cache busting purposes. If version is set to false, a version
 *                                    number is automatically added equal to current installed WordPress version.
 *                                    If set to null, no version is added.
 * @param bool             $in_footer Optional. Whether to enqueue the script before </body> instead of in the <head>.
 *                                    Default 'false'.
 */
function wp_enqueue_script( $handle, $src = '', $deps = array(), $ver = false, $in_footer = false ) {
	_wp_scripts_maybe_doing_it_wrong( __FUNCTION__, $handle );

	$wp_scripts = wp_scripts();

	if ( $src || $in_footer ) {
		$_handle = explode( '?', $handle );

		if ( $src ) {
			$wp_scripts->add( $_handle[0], $src, $deps, $ver );
		}

		if ( $in_footer ) {
			$wp_scripts->add_data( $_handle[0], 'group', 1 );
		}
	}

	$wp_scripts->enqueue( $handle );
}

/**
 * Remove a previously enqueued script.
 *
 * @see WP_Dependencies::dequeue()
 *
 * @since 3.1.0
 *
 * @param string $handle Name of the script to be removed.
 */
function wp_dequeue_script( $handle ) {
	_wp_scripts_maybe_doing_it_wrong( __FUNCTION__, $handle );

	wp_scripts()->dequeue( $handle );
}

/**
 * Determines whether a script has been added to the queue.
 *
 * For more information on this and similar theme functions, check out
 * the {@link https://developer.wordpress.org/themes/basics/conditional-tags/
 * Conditional Tags} article in the Theme Developer Handbook.
 *
 * @since 2.8.0
 * @since 3.5.0 'enqueued' added as an alias of the 'queue' list.
 *
 * @param string $handle Name of the script.
 * @param string $list   Optional. Status of the script to check. Default 'enqueued'.
 *                       Accepts 'enqueued', 'registered', 'queue', 'to_do', and 'done'.
 * @return bool Whether the script is queued.
 */
function wp_script_is( $handle, $list = 'enqueued' ) {
	_wp_scripts_maybe_doing_it_wrong( __FUNCTION__, $handle );

	return (bool) wp_scripts()->query( $handle, $list );
}

/**
 * Add metadata to a script.
 *
 * Works only if the script has already been added.
 *
 * Possible values for $key and $value:
 * 'conditional' string Comments for IE 6, lte IE 7, etc.
 *
 * @since 4.2.0
 *
 * @see WP_Dependencies::add_data()
 *
 * @param string $handle Name of the script.
 * @param string $key    Name of data point for which we're storing a value.
 * @param mixed  $value  String containing the data to be added.
 * @return bool True on success, false on failure.
 */
function wp_script_add_data( $handle, $key, $value ) {
	return wp_scripts()->add_data( $handle, $key, $value );
}

Directory Contents

Dirs: 23 × Files: 201
Name Size Perms Modified Actions
assets DIR
- drwxr-xr-x 2026-03-04 06:12:22
Edit Download
- drwxr-xr-x 2026-03-04 06:12:22
Edit Download
- drwxr-xr-x 2026-03-04 06:12:22
Edit Download
blocks DIR
- drwxr-xr-x 2026-03-04 09:40:31
Edit Download
- drwxr-xr-x 2026-03-04 06:12:22
Edit Download
css DIR
- drwxr-xr-x 2026-03-04 06:12:22
Edit Download
customize DIR
- drwxr-xr-x 2026-03-04 06:12:22
Edit Download
fonts DIR
- drwxr-xr-x 2026-03-04 06:12:22
Edit Download
ID3 DIR
- drwxr-xr-x 2026-03-04 06:12:22
Edit Download
images DIR
- drwxr-xr-x 2026-03-04 06:12:22
Edit Download
IXR DIR
- drwxr-xr-x 2026-03-04 06:12:22
Edit Download
js DIR
- drwxr-xr-x 2026-03-04 06:12:22
Edit Download
PHPMailer DIR
- drwxr-xr-x 2026-03-04 06:12:22
Edit Download
pomo DIR
- drwxr-xr-x 2026-03-04 06:12:22
Edit Download
- drwxr-xr-x 2026-03-04 06:12:22
Edit Download
Requests DIR
- drwxr-xr-x 2026-03-04 06:12:22
Edit Download
rest-api DIR
- drwxr-xr-x 2026-03-04 06:12:22
Edit Download
SimplePie DIR
- drwxr-xr-x 2026-03-04 06:12:22
Edit Download
sitemaps DIR
- drwxr-xr-x 2026-03-04 06:12:22
Edit Download
- drwxr-xr-x 2026-03-04 06:12:22
Edit Download
Text DIR
- drwxr-xr-x 2026-03-04 06:12:22
Edit Download
- drwxr-xr-x 2026-03-04 06:12:22
Edit Download
widgets DIR
- drwxr-xr-x 2026-03-04 06:12:22
Edit Download
420 B lrw-r--r-- 2026-03-04 06:12:22
Edit Download
32.20 KB lrw-r--r-- 2021-03-18 05:05:57
Edit Download
12.06 KB lrw-r--r-- 2021-03-18 05:05:06
Edit Download
17.18 KB lrw-r--r-- 2021-03-18 05:05:16
Edit Download
1.46 KB lrw-r--r-- 2021-03-18 05:05:43
Edit Download
28.83 KB lrw-r--r-- 2021-03-18 05:04:50
Edit Download
12.74 KB lrw-r--r-- 2021-03-18 05:04:58
Edit Download
15.23 KB lrw-r--r-- 2021-03-18 05:04:53
Edit Download
1.06 KB lrw-r--r-- 2021-03-18 05:04:48
Edit Download
9.58 KB lrw-r--r-- 2021-03-18 05:05:08
Edit Download
33.30 KB lrw-r--r-- 2021-03-18 05:04:57
Edit Download
36.02 KB lrw-r--r-- 2021-03-18 05:04:42
Edit Download
55.76 KB lrw-r--r-- 2021-03-18 05:05:18
Edit Download
12.80 KB lrw-r--r-- 2021-03-18 05:05:03
Edit Download
548 B lrw-r--r-- 2021-03-18 05:05:58
Edit Download
39.85 KB lrw-r--r-- 2021-03-18 05:06:03
Edit Download
2.54 KB lrw-r--r-- 2021-03-18 05:05:10
Edit Download
43.44 KB lrw-r--r-- 2021-03-18 05:05:49
Edit Download
422 B lrw-r--r-- 2021-03-18 05:05:15
Edit Download
7.42 KB lrw-r--r-- 2021-03-18 05:05:13
Edit Download
683 B lrw-r--r-- 2021-03-18 05:05:31
Edit Download
20.99 KB lrw-r--r-- 2021-03-18 05:06:02
Edit Download
30.10 KB lrw-r--r-- 2021-03-18 05:05:00
Edit Download
97.22 KB lrw-r--r-- 2021-03-18 05:05:03
Edit Download
472 B lrw-r--r-- 2021-03-18 05:05:34
Edit Download
38.06 KB lrw-r--r-- 2021-03-18 05:05:05
Edit Download
2.16 KB lrw-r--r-- 2021-03-18 05:05:02
Edit Download
7.97 KB lrw-r--r-- 2021-03-18 05:05:41
Edit Download
13.88 KB lrw-r--r-- 2021-03-18 05:05:51
Edit Download
8.71 KB lrw-r--r-- 2021-03-18 05:06:01
Edit Download
2.33 KB lrw-r--r-- 2021-03-18 05:05:09
Edit Download
7.11 KB lrw-r--r-- 2021-03-18 05:04:42
Edit Download
17.21 KB lrw-r--r-- 2021-03-18 05:05:07
Edit Download
5.28 KB lrw-r--r-- 2021-03-18 05:05:17
Edit Download
10.75 KB lrw-r--r-- 2021-03-18 05:05:27
Edit Download
4.57 KB lrw-r--r-- 2021-03-18 05:05:22
Edit Download
15.40 KB lrw-r--r-- 2021-03-18 05:04:44
Edit Download
4.26 KB lrw-r--r-- 2021-03-18 05:04:48
Edit Download
4.56 KB lrw-r--r-- 2021-03-18 05:04:57
Edit Download
4.77 KB lrw-r--r-- 2021-03-18 05:04:45
Edit Download
5.36 KB lrw-r--r-- 2021-03-18 05:05:34
Edit Download
4.74 KB lrw-r--r-- 2021-03-18 05:04:42
Edit Download
8.75 KB lrw-r--r-- 2021-03-18 05:05:27
Edit Download
6.86 KB lrw-r--r-- 2021-03-18 05:04:51
Edit Download
45.59 KB lrw-r--r-- 2021-03-18 05:05:22
Edit Download
9.47 KB lrw-r--r-- 2021-03-18 05:05:37
Edit Download
25.71 KB lrw-r--r-- 2021-03-18 05:05:35
Edit Download
202.44 KB lrw-r--r-- 2021-03-18 05:04:45
Edit Download
56.99 KB lrw-r--r-- 2021-03-18 05:05:28
Edit Download
10.54 KB lrw-r--r-- 2021-03-18 05:05:26
Edit Download
11.11 KB lrw-r--r-- 2021-03-18 05:05:32
Edit Download
30.03 KB lrw-r--r-- 2021-03-18 05:05:21
Edit Download
67.47 KB lrw-r--r-- 2021-03-18 05:05:31
Edit Download
35.04 KB lrw-r--r-- 2021-03-18 05:05:32
Edit Download
2.58 KB lrw-r--r-- 2021-03-18 05:05:43
Edit Download
70.75 KB lrw-r--r-- 2021-03-18 05:05:06
Edit Download
15.94 KB lrw-r--r-- 2021-03-18 05:05:26
Edit Download
7.44 KB lrw-r--r-- 2021-03-18 05:05:21
Edit Download
7.59 KB lrw-r--r-- 2021-03-18 05:05:53
Edit Download
2.63 KB lrw-r--r-- 2021-03-18 05:04:59
Edit Download
1010 B lrw-r--r-- 2021-03-18 05:05:59
Edit Download
15.26 KB lrw-r--r-- 2021-03-18 05:05:53
Edit Download
7.27 KB lrw-r--r-- 2021-03-18 05:05:22
Edit Download
12.45 KB lrw-r--r-- 2021-03-18 05:05:38
Edit Download
6.73 KB lrw-r--r-- 2021-03-18 05:05:36
Edit Download
3.52 KB lrw-r--r-- 2021-03-18 05:05:35
Edit Download
5.94 KB lrw-r--r-- 2021-03-18 05:05:35
Edit Download
2.01 KB lrw-r--r-- 2021-03-18 05:05:59
Edit Download
4.43 KB lrw-r--r-- 2021-03-18 05:05:44
Edit Download
3.03 KB lrw-r--r-- 2021-03-18 05:05:38
Edit Download
16.20 KB lrw-r--r-- 2021-03-18 05:06:00
Edit Download
14.80 KB lrw-r--r-- 2021-03-18 05:05:28
Edit Download
26.76 KB lrw-r--r-- 2021-03-18 05:05:49
Edit Download
14.39 KB lrw-r--r-- 2021-03-18 05:06:01
Edit Download
6.73 KB lrw-r--r-- 2021-03-18 05:04:55
Edit Download
5.14 KB lrw-r--r-- 2021-03-18 05:05:26
Edit Download
14.01 KB lrw-r--r-- 2021-03-18 05:05:04
Edit Download
1.84 KB lrw-r--r-- 2021-03-18 05:04:54
Edit Download
28.01 KB lrw-r--r-- 2021-03-18 05:04:42
Edit Download
5.39 KB lrw-r--r-- 2021-03-18 05:05:36
Edit Download
19.30 KB lrw-r--r-- 2021-03-18 05:04:52
Edit Download
12.55 KB lrw-r--r-- 2021-03-18 05:05:54
Edit Download
13.72 KB lrw-r--r-- 2021-03-18 05:06:01
Edit Download
6.87 KB lrw-r--r-- 2021-03-18 05:05:40
Edit Download
30.36 KB lrw-r--r-- 2021-03-18 05:05:36
Edit Download
5.02 KB lrw-r--r-- 2021-03-18 05:05:41
Edit Download
21.09 KB lrw-r--r-- 2021-03-18 05:05:26
Edit Download
6.65 KB lrw-r--r-- 2021-03-18 05:05:01
Edit Download
136.01 KB lrw-r--r-- 2021-03-18 05:05:47
Edit Download
6.54 KB lrw-r--r-- 2021-03-18 05:05:37
Edit Download
10.76 KB lrw-r--r-- 2021-03-18 05:05:46
Edit Download
4.35 KB lrw-r--r-- 2021-03-18 05:04:59
Edit Download
3.45 KB lrw-r--r-- 2021-03-18 05:04:59
Edit Download
11.57 KB lrw-r--r-- 2021-03-18 05:04:53
Edit Download
63.32 KB lrw-r--r-- 2021-03-18 05:05:17
Edit Download
2.54 KB lrw-r--r-- 2021-03-18 05:05:56
Edit Download
8.60 KB lrw-r--r-- 2021-03-18 05:04:56
Edit Download
7.54 KB lrw-r--r-- 2021-03-18 05:04:47
Edit Download
3.28 KB lrw-r--r-- 2021-03-18 05:05:09
Edit Download
1.79 KB lrw-r--r-- 2021-03-18 05:05:20
Edit Download
29.44 KB lrw-r--r-- 2021-03-18 05:05:57
Edit Download
7.60 KB lrw-r--r-- 2021-03-18 05:05:33
Edit Download
19.45 KB lrw-r--r-- 2021-03-18 05:05:04
Edit Download
13.57 KB lrw-r--r-- 2021-03-18 05:05:20
Edit Download
37.44 KB lrw-r--r-- 2021-03-18 05:04:54
Edit Download
5.39 KB lrw-r--r-- 2021-03-18 05:05:56
Edit Download
749 B lrw-r--r-- 2021-03-18 05:04:56
Edit Download
16.94 KB lrw-r--r-- 2021-03-18 05:05:51
Edit Download
51.20 KB lrw-r--r-- 2021-03-18 05:05:21
Edit Download
3.05 KB lrw-r--r-- 2021-03-18 05:05:52
Edit Download
31.47 KB lrw-r--r-- 2021-03-18 05:05:03
Edit Download
2.26 KB lrw-r--r-- 2021-03-18 05:04:43
Edit Download
22.48 KB lrw-r--r-- 2021-03-18 05:05:15
Edit Download
12.86 KB lrw-r--r-- 2021-03-18 05:06:03
Edit Download
2.66 KB lrw-r--r-- 2021-03-18 05:05:19
Edit Download
18.06 KB lrw-r--r-- 2021-03-18 05:05:07
Edit Download
213.79 KB lrw-r--r-- 2021-03-18 05:05:16
Edit Download
25.70 KB lrw-r--r-- 2026-03-04 05:56:21
Edit Download
13.01 KB lrw-r--r-- 2021-03-18 05:05:59
Edit Download
19.19 KB lrw-r--r-- 2021-03-18 05:05:54
Edit Download
11.07 KB lrw-r--r-- 2021-03-18 05:05:29
Edit Download
95.21 KB lrw-r--r-- 2021-03-18 05:05:38
Edit Download
128.23 KB lrw-r--r-- 2025-05-08 08:33:13
Edit Download
11.82 KB lrw-r--r-- 2021-03-18 05:04:53
Edit Download
40.90 KB lrw-r--r-- 2021-03-18 05:04:47
Edit Download
420 B lrw-r--r-- 2021-03-18 05:05:25
Edit Download
10.42 KB lrw-r--r-- 2021-03-18 05:05:14
Edit Download
28.28 KB lrw-r--r-- 2021-03-18 05:05:00
Edit Download
2.14 KB lrw-r--r-- 2021-03-18 05:04:44
Edit Download
125.26 KB lrw-r--r-- 2021-03-18 05:04:46
Edit Download
354 B lrw-r--r-- 2021-03-18 05:04:49
Edit Download
48.18 KB lrw-r--r-- 2021-03-18 05:05:46
Edit Download
4.17 KB lrw-r--r-- 2021-03-18 05:06:03
Edit Download
5.46 KB lrw-r--r-- 2021-03-18 05:05:40
Edit Download
3.13 KB lrw-r--r-- 2021-03-18 05:05:01
Edit Download
2.70 KB lrw-r--r-- 2021-03-18 05:05:08
Edit Download
1.21 KB lrw-r--r-- 2021-03-18 05:05:52
Edit Download
4.09 KB lrw-r--r-- 2021-03-18 05:05:33
Edit Download
3.84 KB lrw-r--r-- 2021-03-18 05:06:02
Edit Download
23.25 KB lrw-r--r-- 2021-03-18 05:04:58
Edit Download
309.02 KB lrw-r--r-- 2021-03-18 05:05:47
Edit Download
13.52 KB lrw-r--r-- 2021-03-18 05:05:08
Edit Download
8.34 KB lrw-r--r-- 2021-03-18 05:05:53
Edit Download
158.04 KB lrw-r--r-- 2021-03-18 05:05:48
Edit Download
22.60 KB lrw-r--r-- 2021-03-18 05:05:13
Edit Download
6.93 KB lrw-r--r-- 2021-03-18 05:04:50
Edit Download
4.76 KB lrw-r--r-- 2021-03-18 05:05:29
Edit Download
64.27 KB lrw-r--r-- 2021-03-18 05:05:23
Edit Download
57.08 KB lrw-r--r-- 2021-03-18 05:05:39
Edit Download
147.90 KB lrw-r--r-- 2021-03-18 05:05:10
Edit Download
49.83 KB lrw-r--r-- 2021-03-18 05:05:44
Edit Download
173 B lrw-r--r-- 2021-03-18 05:05:55
Edit Download
60.46 KB lrw-r--r-- 2021-03-18 05:05:11
Edit Download
173.10 KB lrw-r--r-- 2021-03-18 05:05:34
Edit Download
59.83 KB lrw-r--r-- 2021-03-18 05:05:31
Edit Download
25.49 KB lrw-r--r-- 2021-03-18 05:05:42
Edit Download
4.76 KB lrw-r--r-- 2021-03-18 05:05:24
Edit Download
6.47 KB lrw-r--r-- 2021-03-18 05:05:41
Edit Download
21.35 KB lrw-r--r-- 2021-03-18 05:05:11
Edit Download
2.67 KB lrw-r--r-- 2021-03-18 05:04:48
Edit Download
94.62 KB lrw-r--r-- 2021-03-18 05:05:51
Edit Download
19.88 KB lrw-r--r-- 2021-03-18 05:05:24
Edit Download
3.71 KB lrw-r--r-- 2021-03-18 05:05:19
Edit Download
4.15 KB lrw-r--r-- 2021-03-18 05:04:43
Edit Download
43.80 KB lrw-r--r-- 2021-03-18 05:04:59
Edit Download
23.37 KB lrw-r--r-- 2021-03-18 05:05:42
Edit Download
42.35 KB lrw-r--r-- 2021-03-18 05:04:51
Edit Download
75.21 KB lrw-r--r-- 2021-03-18 05:05:48
Edit Download
6.32 KB lrw-r--r-- 2021-03-18 05:06:04
Edit Download
103.88 KB lrw-r--r-- 2021-03-18 05:04:50
Edit Download
32.64 KB lrw-r--r-- 2021-03-18 05:05:12
Edit Download
7.17 KB lrw-r--r-- 2021-03-18 05:04:49
Edit Download
65.10 KB lrw-r--r-- 2021-03-18 05:05:58
Edit Download
9.42 KB lrw-r--r-- 2021-03-18 05:05:17
Edit Download
261.97 KB lrw-r--r-- 2021-03-18 05:05:14
Edit Download
36.12 KB lrw-r--r-- 2021-03-18 05:05:30
Edit Download
209 B lrw-r--r-- 2021-03-18 05:06:00
Edit Download
209 B lrw-r--r-- 2021-03-18 05:05:45
Edit Download
93.79 KB lrw-r--r-- 2021-03-18 05:05:23
Edit Download
22.30 KB lrw-r--r-- 2021-03-18 05:05:39
Edit Download
19.39 KB lrw-r--r-- 2021-03-18 05:05:52
Edit Download
5.52 KB lrw-r--r-- 2021-03-18 05:05:24
Edit Download
269 B lrw-r--r-- 2021-03-18 05:05:25
Edit Download
23.36 KB lrw-r--r-- 2021-03-18 05:04:52
Edit Download
98.29 KB lrw-r--r-- 2021-03-18 05:05:30
Edit Download
270 B lrw-r--r-- 2021-03-18 05:05:06
Edit Download
21.60 KB lrw-r--r-- 2021-03-18 05:04:56
Edit Download
3.28 KB lrw-r--r-- 2021-03-18 05:05:18
Edit Download
455 B lrw-r--r-- 2021-03-18 05:05:19
Edit Download
166.74 KB lrw-r--r-- 2021-03-18 05:05:05
Edit Download
4.60 KB lrw-r--r-- 2025-05-08 08:33:13
Edit Download
21.74 KB lrw-r--r-- 2021-03-18 05:05:55
Edit Download
126.12 KB lrw-r--r-- 2021-03-18 05:05:45
Edit Download
26.71 KB lrw-r--r-- 2021-03-18 05:05:44
Edit Download
148.31 KB lrw-r--r-- 2021-03-18 05:05:02
Edit Download
5.84 KB lrw-r--r-- 2021-03-18 05:04:49
Edit Download
808 B lrw-r--r-- 2021-03-18 05:06:01
Edit Download
60.75 KB lrw-r--r-- 2021-03-18 05:05:50
Edit Download
1.06 KB lrw-r--r-- 2021-03-18 05:04:44
Edit Download
107.21 KB lrw-r--r-- 2021-03-18 05:05:40
Edit Download
668 B lrw-r--r-- 2021-03-18 05:05:58
Edit Download
If ZipArchive is unavailable, a .tar will be created (no compression).