PHP 8.1.33
Preview: cache.php Size: 9.28 KB
/home/jambtst2015/public_html/wp-includes/cache.php

<?php
/**
 * Object Cache API
 *
 * @link https://codex.wordpress.org/Class_Reference/WP_Object_Cache
 *
 * @package WordPress
 * @subpackage Cache
 */

/** WP_Object_Cache class */
require_once ABSPATH . WPINC . '/class-wp-object-cache.php';

/**
 * Adds data to the cache, if the cache key doesn't already exist.
 *
 * @since 2.0.0
 *
 * @see WP_Object_Cache::add()
 * @global WP_Object_Cache $wp_object_cache Object cache global instance.
 *
 * @param int|string $key    The cache key to use for retrieval later.
 * @param mixed      $data   The data to add to the cache.
 * @param string     $group  Optional. The group to add the cache to. Enables the same key
 *                           to be used across groups. Default empty.
 * @param int        $expire Optional. When the cache data should expire, in seconds.
 *                           Default 0 (no expiration).
 * @return bool True on success, false if cache key and group already exist.
 */
function wp_cache_add( $key, $data, $group = '', $expire = 0 ) {
	global $wp_object_cache;

	return $wp_object_cache->add( $key, $data, $group, (int) $expire );
}

/**
 * Closes the cache.
 *
 * This function has ceased to do anything since WordPress 2.5. The
 * functionality was removed along with the rest of the persistent cache.
 *
 * This does not mean that plugins can't implement this function when they need
 * to make sure that the cache is cleaned up after WordPress no longer needs it.
 *
 * @since 2.0.0
 *
 * @return true Always returns true.
 */
function wp_cache_close() {
	return true;
}

/**
 * Decrements numeric cache item's value.
 *
 * @since 3.3.0
 *
 * @see WP_Object_Cache::decr()
 * @global WP_Object_Cache $wp_object_cache Object cache global instance.
 *
 * @param int|string $key    The cache key to decrement.
 * @param int        $offset Optional. The amount by which to decrement the item's value. Default 1.
 * @param string     $group  Optional. The group the key is in. Default empty.
 * @return int|false The item's new value on success, false on failure.
 */
function wp_cache_decr( $key, $offset = 1, $group = '' ) {
	global $wp_object_cache;

	return $wp_object_cache->decr( $key, $offset, $group );
}

/**
 * Removes the cache contents matching key and group.
 *
 * @since 2.0.0
 *
 * @see WP_Object_Cache::delete()
 * @global WP_Object_Cache $wp_object_cache Object cache global instance.
 *
 * @param int|string $key   What the contents in the cache are called.
 * @param string     $group Optional. Where the cache contents are grouped. Default empty.
 * @return bool True on successful removal, false on failure.
 */
function wp_cache_delete( $key, $group = '' ) {
	global $wp_object_cache;

	return $wp_object_cache->delete( $key, $group );
}

/**
 * Removes all cache items.
 *
 * @since 2.0.0
 *
 * @see WP_Object_Cache::flush()
 * @global WP_Object_Cache $wp_object_cache Object cache global instance.
 *
 * @return bool True on success, false on failure.
 */
function wp_cache_flush() {
	global $wp_object_cache;

	return $wp_object_cache->flush();
}

/**
 * Retrieves the cache contents from the cache by key and group.
 *
 * @since 2.0.0
 *
 * @see WP_Object_Cache::get()
 * @global WP_Object_Cache $wp_object_cache Object cache global instance.
 *
 * @param int|string $key   The key under which the cache contents are stored.
 * @param string     $group Optional. Where the cache contents are grouped. Default empty.
 * @param bool       $force Optional. Whether to force an update of the local cache
 *                          from the persistent cache. Default false.
 * @param bool       $found Optional. Whether the key was found in the cache (passed by reference).
 *                          Disambiguates a return of false, a storable value. Default null.
 * @return mixed|false The cache contents on success, false on failure to retrieve contents.
 */
function wp_cache_get( $key, $group = '', $force = false, &$found = null ) {
	global $wp_object_cache;

	return $wp_object_cache->get( $key, $group, $force, $found );
}

/**
 * Retrieves multiple values from the cache in one call.
 *
 * @since 5.5.0
 *
 * @see WP_Object_Cache::get_multiple()
 * @global WP_Object_Cache $wp_object_cache Object cache global instance.
 *
 * @param array  $keys  Array of keys under which the cache contents are stored.
 * @param string $group Optional. Where the cache contents are grouped. Default empty.
 * @param bool   $force Optional. Whether to force an update of the local cache
 *                      from the persistent cache. Default false.
 * @return array Array of values organized into groups.
 */
function wp_cache_get_multiple( $keys, $group = '', $force = false ) {
	global $wp_object_cache;

	return $wp_object_cache->get_multiple( $keys, $group, $force );
}

/**
 * Increment numeric cache item's value
 *
 * @since 3.3.0
 *
 * @see WP_Object_Cache::incr()
 * @global WP_Object_Cache $wp_object_cache Object cache global instance.
 *
 * @param int|string $key    The key for the cache contents that should be incremented.
 * @param int        $offset Optional. The amount by which to increment the item's value. Default 1.
 * @param string     $group  Optional. The group the key is in. Default empty.
 * @return int|false The item's new value on success, false on failure.
 */
function wp_cache_incr( $key, $offset = 1, $group = '' ) {
	global $wp_object_cache;

	return $wp_object_cache->incr( $key, $offset, $group );
}

/**
 * Sets up Object Cache Global and assigns it.
 *
 * @since 2.0.0
 *
 * @global WP_Object_Cache $wp_object_cache
 */
function wp_cache_init() {
	$GLOBALS['wp_object_cache'] = new WP_Object_Cache();
}

/**
 * Replaces the contents of the cache with new data.
 *
 * @since 2.0.0
 *
 * @see WP_Object_Cache::replace()
 * @global WP_Object_Cache $wp_object_cache Object cache global instance.
 *
 * @param int|string $key    The key for the cache data that should be replaced.
 * @param mixed      $data   The new data to store in the cache.
 * @param string     $group  Optional. The group for the cache data that should be replaced.
 *                           Default empty.
 * @param int        $expire Optional. When to expire the cache contents, in seconds.
 *                           Default 0 (no expiration).
 * @return bool False if original value does not exist, true if contents were replaced
 */
function wp_cache_replace( $key, $data, $group = '', $expire = 0 ) {
	global $wp_object_cache;

	return $wp_object_cache->replace( $key, $data, $group, (int) $expire );
}

/**
 * Saves the data to the cache.
 *
 * Differs from wp_cache_add() and wp_cache_replace() in that it will always write data.
 *
 * @since 2.0.0
 *
 * @see WP_Object_Cache::set()
 * @global WP_Object_Cache $wp_object_cache Object cache global instance.
 *
 * @param int|string $key    The cache key to use for retrieval later.
 * @param mixed      $data   The contents to store in the cache.
 * @param string     $group  Optional. Where to group the cache contents. Enables the same key
 *                           to be used across groups. Default empty.
 * @param int        $expire Optional. When to expire the cache contents, in seconds.
 *                           Default 0 (no expiration).
 * @return bool True on success, false on failure.
 */
function wp_cache_set( $key, $data, $group = '', $expire = 0 ) {
	global $wp_object_cache;

	return $wp_object_cache->set( $key, $data, $group, (int) $expire );
}

/**
 * Switches the internal blog ID.
 *
 * This changes the blog id used to create keys in blog specific groups.
 *
 * @since 3.5.0
 *
 * @see WP_Object_Cache::switch_to_blog()
 * @global WP_Object_Cache $wp_object_cache Object cache global instance.
 *
 * @param int $blog_id Site ID.
 */
function wp_cache_switch_to_blog( $blog_id ) {
	global $wp_object_cache;

	$wp_object_cache->switch_to_blog( $blog_id );
}

/**
 * Adds a group or set of groups to the list of global groups.
 *
 * @since 2.6.0
 *
 * @see WP_Object_Cache::add_global_groups()
 * @global WP_Object_Cache $wp_object_cache Object cache global instance.
 *
 * @param string|array $groups A group or an array of groups to add.
 */
function wp_cache_add_global_groups( $groups ) {
	global $wp_object_cache;

	$wp_object_cache->add_global_groups( $groups );
}

/**
 * Adds a group or set of groups to the list of non-persistent groups.
 *
 * @since 2.6.0
 *
 * @param string|array $groups A group or an array of groups to add.
 */
function wp_cache_add_non_persistent_groups( $groups ) {
	// Default cache doesn't persist so nothing to do here.
}

/**
 * Reset internal cache keys and structures.
 *
 * If the cache back end uses global blog or site IDs as part of its cache keys,
 * this function instructs the back end to reset those keys and perform any cleanup
 * since blog or site IDs have changed since cache init.
 *
 * This function is deprecated. Use wp_cache_switch_to_blog() instead of this
 * function when preparing the cache for a blog switch. For clearing the cache
 * during unit tests, consider using wp_cache_init(). wp_cache_init() is not
 * recommended outside of unit tests as the performance penalty for using it is
 * high.
 *
 * @since 2.6.0
 * @deprecated 3.5.0 WP_Object_Cache::reset()
 * @see WP_Object_Cache::reset()
 *
 * @global WP_Object_Cache $wp_object_cache Object cache global instance.
 */
function wp_cache_reset() {
	_deprecated_function( __FUNCTION__, '3.5.0', 'WP_Object_Cache::reset()' );

	global $wp_object_cache;

	$wp_object_cache->reset();
}

Directory Contents

Dirs: 22 × Files: 197

Name Size Perms Modified Actions
assets DIR
- drwxr-xr-x 2024-11-22 17:53:11
Edit Download
- drwxr-xr-x 2025-10-09 18:37:32
Edit Download
blocks DIR
- drwxr-xr-x 2025-10-09 01:47:10
Edit Download
- drwxr-xr-x 2024-11-22 17:53:11
Edit Download
css DIR
- drwxr-xr-x 2024-11-22 17:53:11
Edit Download
customize DIR
- drwxr-xr-x 2025-10-08 16:54:08
Edit Download
fonts DIR
- drwxr-xr-x 2024-11-22 17:53:11
Edit Download
ID3 DIR
- drwxr-xr-x 2024-11-22 17:53:11
Edit Download
images DIR
- drwxr-xr-x 2024-11-22 17:53:11
Edit Download
IXR DIR
- drwxr-xr-x 2025-10-10 23:14:10
Edit Download
js DIR
- drwxr-xr-x 2024-11-22 17:53:11
Edit Download
PHPMailer DIR
- drwxr-xr-x 2024-11-22 17:53:11
Edit Download
pomo DIR
- drwxr-xr-x 2024-11-22 17:53:11
Edit Download
- drwxr-xr-x 2024-11-22 17:53:11
Edit Download
Requests DIR
- drwxr-xr-x 2025-10-10 18:53:53
Edit Download
rest-api DIR
- drwxr-xr-x 2025-10-09 05:42:33
Edit Download
SimplePie DIR
- drwxr-xr-x 2025-10-15 06:02:39
Edit Download
sitemaps DIR
- drwxr-xr-x 2024-11-22 17:53:11
Edit Download
- drwxr-xr-x 2024-11-22 17:53:11
Edit Download
Text DIR
- drwxr-xr-x 2024-11-22 17:53:11
Edit Download
- drwxr-xr-x 2025-10-08 19:14:33
Edit Download
widgets DIR
- drwxr-xr-x 2025-10-08 17:22:39
Edit Download
30.96 KB lrw-r--r-- 2024-11-22 17:53:11
Edit Download
11.59 KB lrw-r--r-- 2024-11-22 17:53:11
Edit Download
16.62 KB lrw-r--r-- 2024-11-22 17:53:11
Edit Download
1.42 KB lrw-r--r-- 2024-11-22 17:53:11
Edit Download
25.76 KB lrw-r--r-- 2024-11-22 17:53:11
Edit Download
12.22 KB lrw-r--r-- 2024-11-22 17:53:11
Edit Download
14.79 KB lrw-r--r-- 2024-11-22 17:53:11
Edit Download
1.02 KB lrw-r--r-- 2024-11-22 17:53:11
Edit Download
9.28 KB lrw-r--r-- 2024-11-22 17:53:11
Edit Download
30.65 KB lrw-r--r-- 2024-11-22 17:53:11
Edit Download
33.98 KB lrw-r--r-- 2024-11-22 17:53:11
Edit Download
53.63 KB lrw-r--r-- 2024-11-22 17:53:11
Edit Download
12.41 KB lrw-r--r-- 2024-11-22 17:53:11
Edit Download
529 B lrw-r--r-- 2024-11-22 17:53:11
Edit Download
38.79 KB lrw-r--r-- 2024-11-22 17:53:11
Edit Download
2.48 KB lrw-r--r-- 2024-11-22 17:53:11
Edit Download
42.43 KB lrw-r--r-- 2024-11-22 17:53:11
Edit Download
407 B lrw-r--r-- 2024-11-22 17:53:11
Edit Download
7.15 KB lrw-r--r-- 2024-11-22 17:53:11
Edit Download
664 B lrw-r--r-- 2024-11-22 17:53:11
Edit Download
20.35 KB lrw-r--r-- 2024-11-22 17:53:11
Edit Download
29.14 KB lrw-r--r-- 2024-11-22 17:53:11
Edit Download
94.01 KB lrw-r--r-- 2024-11-22 17:53:11
Edit Download
452 B lrw-r--r-- 2024-11-22 17:53:11
Edit Download
36.83 KB lrw-r--r-- 2024-11-22 17:53:11
Edit Download
2.08 KB lrw-r--r-- 2024-11-22 17:53:11
Edit Download
7.69 KB lrw-r--r-- 2024-11-22 17:53:11
Edit Download
13.37 KB lrw-r--r-- 2024-11-22 17:53:11
Edit Download
8.45 KB lrw-r--r-- 2024-11-22 17:53:11
Edit Download
2.25 KB lrw-r--r-- 2024-11-22 17:53:11
Edit Download
6.88 KB lrw-r--r-- 2024-11-22 17:53:11
Edit Download
16.46 KB lrw-r--r-- 2024-11-22 17:53:11
Edit Download
5.12 KB lrw-r--r-- 2024-11-22 17:53:11
Edit Download
4.37 KB lrw-r--r-- 2024-11-22 17:53:11
Edit Download
14.86 KB lrw-r--r-- 2024-11-22 17:53:11
Edit Download
4.08 KB lrw-r--r-- 2024-11-22 17:53:11
Edit Download
4.74 KB lrw-r--r-- 2024-11-22 17:53:11
Edit Download
4.62 KB lrw-r--r-- 2024-11-22 17:53:11
Edit Download
5.03 KB lrw-r--r-- 2024-11-22 17:53:11
Edit Download
5.88 KB lrw-r--r-- 2024-11-22 17:53:11
Edit Download
5.97 KB lrw-r--r-- 2024-11-22 17:53:11
Edit Download
43.58 KB lrw-r--r-- 2024-11-22 17:53:11
Edit Download
8.83 KB lrw-r--r-- 2024-11-22 17:53:11
Edit Download
24.91 KB lrw-r--r-- 2024-11-22 17:53:11
Edit Download
196.37 KB lrw-r--r-- 2024-11-22 17:53:11
Edit Download
55.71 KB lrw-r--r-- 2025-10-08 16:39:40
Edit Download
10.16 KB lrw-r--r-- 2024-11-22 17:53:11
Edit Download
10.72 KB lrw-r--r-- 2024-11-22 17:53:11
Edit Download
29.03 KB lrw-r--r-- 2024-11-22 17:53:11
Edit Download
65.46 KB lrw-r--r-- 2024-11-22 17:53:11
Edit Download
34.51 KB lrw-r--r-- 2024-11-22 17:53:11
Edit Download
2.45 KB lrw-r--r-- 2024-11-22 17:53:11
Edit Download
68.93 KB lrw-r--r-- 2024-11-22 17:53:11
Edit Download
15.42 KB lrw-r--r-- 2024-11-22 17:53:11
Edit Download
4.84 KB lrw-r--r-- 2024-11-22 17:53:11
Edit Download
7.37 KB lrw-r--r-- 2024-11-22 17:53:11
Edit Download
2.50 KB lrw-r--r-- 2024-11-22 17:53:11
Edit Download
749 B lrw-r--r-- 2024-11-22 17:53:11
Edit Download
13.72 KB lrw-r--r-- 2024-11-22 17:53:11
Edit Download
7.02 KB lrw-r--r-- 2024-11-22 17:53:11
Edit Download
12.06 KB lrw-r--r-- 2024-11-22 17:53:11
Edit Download
6.40 KB lrw-r--r-- 2024-11-22 17:53:11
Edit Download
3.39 KB lrw-r--r-- 2024-11-22 17:53:11
Edit Download
5.73 KB lrw-r--r-- 2024-11-22 17:53:11
Edit Download
1.92 KB lrw-r--r-- 2024-11-22 17:53:11
Edit Download
4.24 KB lrw-r--r-- 2024-11-22 17:53:11
Edit Download
2.88 KB lrw-r--r-- 2024-11-22 17:53:11
Edit Download
15.73 KB lrw-r--r-- 2024-11-22 17:53:11
Edit Download
13.81 KB lrw-r--r-- 2024-11-22 17:53:11
Edit Download
23.32 KB lrw-r--r-- 2024-11-22 17:53:11
Edit Download
13.77 KB lrw-r--r-- 2024-11-22 17:53:11
Edit Download
6.46 KB lrw-r--r-- 2024-11-22 17:53:11
Edit Download
4.90 KB lrw-r--r-- 2024-11-22 17:53:11
Edit Download
13.59 KB lrw-r--r-- 2024-11-22 17:53:11
Edit Download
1.76 KB lrw-r--r-- 2024-11-22 17:53:11
Edit Download
27.22 KB lrw-r--r-- 2024-11-22 17:53:11
Edit Download
5.26 KB lrw-r--r-- 2024-11-22 17:53:11
Edit Download
17.94 KB lrw-r--r-- 2024-11-22 17:53:11
Edit Download
12.09 KB lrw-r--r-- 2024-11-22 17:53:11
Edit Download
13.22 KB lrw-r--r-- 2024-11-22 17:53:11
Edit Download
6.63 KB lrw-r--r-- 2024-11-22 17:53:11
Edit Download
28.31 KB lrw-r--r-- 2024-11-22 17:53:11
Edit Download
4.81 KB lrw-r--r-- 2024-11-22 17:53:11
Edit Download
19.08 KB lrw-r--r-- 2024-11-22 17:53:11
Edit Download
6.29 KB lrw-r--r-- 2024-11-22 17:53:11
Edit Download
131.80 KB lrw-r--r-- 2024-11-22 17:53:11
Edit Download
6.31 KB lrw-r--r-- 2024-11-22 17:53:11
Edit Download
9.89 KB lrw-r--r-- 2024-11-22 17:53:11
Edit Download
4.17 KB lrw-r--r-- 2024-11-22 17:53:11
Edit Download
3.29 KB lrw-r--r-- 2024-11-22 17:53:11
Edit Download
11.11 KB lrw-r--r-- 2024-11-22 17:53:11
Edit Download
59.42 KB lrw-r--r-- 2024-11-22 17:53:11
Edit Download
2.44 KB lrw-r--r-- 2024-11-22 17:53:11
Edit Download
8.23 KB lrw-r--r-- 2024-11-22 17:53:11
Edit Download
7.26 KB lrw-r--r-- 2024-11-22 17:53:11
Edit Download
2.27 KB lrw-r--r-- 2024-11-22 17:53:11
Edit Download
1.73 KB lrw-r--r-- 2024-11-22 17:53:11
Edit Download
27.88 KB lrw-r--r-- 2024-11-22 17:53:11
Edit Download
7.19 KB lrw-r--r-- 2024-11-22 17:53:11
Edit Download
18.98 KB lrw-r--r-- 2024-11-22 17:53:11
Edit Download
12.28 KB lrw-r--r-- 2024-11-22 17:53:11
Edit Download
35.32 KB lrw-r--r-- 2024-11-22 17:53:11
Edit Download
5.14 KB lrw-r--r-- 2024-11-22 17:53:11
Edit Download
716 B lrw-r--r-- 2024-11-22 17:53:11
Edit Download
16.48 KB lrw-r--r-- 2024-11-22 17:53:11
Edit Download
50.35 KB lrw-r--r-- 2024-11-22 17:53:11
Edit Download
2.92 KB lrw-r--r-- 2024-11-22 17:53:11
Edit Download
30.62 KB lrw-r--r-- 2024-11-22 17:53:11
Edit Download
2.14 KB lrw-r--r-- 2024-11-22 17:53:11
Edit Download
21.63 KB lrw-r--r-- 2024-11-22 17:53:11
Edit Download
12.42 KB lrw-r--r-- 2024-11-22 17:53:11
Edit Download
2.56 KB lrw-r--r-- 2024-11-22 17:53:11
Edit Download
17.49 KB lrw-r--r-- 2024-11-22 17:53:11
Edit Download
205.52 KB lrw-r--r-- 2024-11-22 17:53:11
Edit Download
24.45 KB lrw-r--r-- 2024-11-22 17:53:11
Edit Download
12.57 KB lrw-r--r-- 2024-11-22 17:53:11
Edit Download
18.04 KB lrw-r--r-- 2024-11-22 17:53:11
Edit Download
10.62 KB lrw-r--r-- 2024-11-22 17:53:11
Edit Download
91.85 KB lrw-r--r-- 2024-11-22 17:53:11
Edit Download
122.66 KB lrw-r--r-- 2024-11-22 17:53:11
Edit Download
12.65 KB lrw-r--r-- 2024-11-22 17:53:11
Edit Download
32.06 KB lrw-r--r-- 2024-11-22 17:53:11
Edit Download
406 B lrw-r--r-- 2024-11-22 17:53:11
Edit Download
10.02 KB lrw-r--r-- 2024-11-22 17:53:11
Edit Download
26.14 KB lrw-r--r-- 2024-11-22 17:53:11
Edit Download
2.07 KB lrw-r--r-- 2024-11-22 17:53:11
Edit Download
118.65 KB lrw-r--r-- 2024-11-22 17:53:11
Edit Download
341 B lrw-r--r-- 2024-11-22 17:53:11
Edit Download
46.48 KB lrw-r--r-- 2024-11-22 17:53:11
Edit Download
3.30 KB lrw-r--r-- 2024-11-22 17:53:11
Edit Download
506.25 KB lrw-r--r-- 2025-11-04 04:11:46
Edit Download
5.32 KB lrw-r--r-- 2024-11-22 17:53:11
Edit Download
3.03 KB lrw-r--r-- 2024-11-22 17:53:11
Edit Download
2.61 KB lrw-r--r-- 2024-11-22 17:53:11
Edit Download
1.16 KB lrw-r--r-- 2024-11-22 17:53:11
Edit Download
3.97 KB lrw-r--r-- 2024-11-22 17:53:11
Edit Download
3.71 KB lrw-r--r-- 2024-11-22 17:53:11
Edit Download
22.12 KB lrw-r--r-- 2024-11-22 17:53:11
Edit Download
304.25 KB lrw-r--r-- 2024-11-22 17:53:11
Edit Download
228.27 KB lrw-r--r-- 2024-11-22 17:53:11
Edit Download
13.07 KB lrw-r--r-- 2024-11-22 17:53:11
Edit Download
8.11 KB lrw-r--r-- 2024-11-22 17:53:11
Edit Download
153.99 KB lrw-r--r-- 2024-11-22 17:53:11
Edit Download
21.86 KB lrw-r--r-- 2024-11-22 17:53:11
Edit Download
61.88 KB lrw-r--r-- 2024-11-22 17:53:11
Edit Download
55.27 KB lrw-r--r-- 2024-11-22 17:53:11
Edit Download
141.46 KB lrw-r--r-- 2024-11-22 17:53:11
Edit Download
43.82 KB lrw-r--r-- 2024-11-22 17:53:11
Edit Download
162 B lrw-r--r-- 2024-11-22 17:53:11
Edit Download
57.29 KB lrw-r--r-- 2024-11-22 17:53:11
Edit Download
159.30 KB lrw-r--r-- 2024-11-22 17:53:11
Edit Download
58.17 KB lrw-r--r-- 2024-11-22 17:53:11
Edit Download
24.58 KB lrw-r--r-- 2024-11-22 17:53:11
Edit Download
4.60 KB lrw-r--r-- 2024-11-22 17:53:11
Edit Download
6.34 KB lrw-r--r-- 2024-11-22 17:53:11
Edit Download
20.63 KB lrw-r--r-- 2024-11-22 17:53:11
Edit Download
2.58 KB lrw-r--r-- 2024-11-22 17:53:11
Edit Download
88.26 KB lrw-r--r-- 2024-11-22 17:53:11
Edit Download
19.36 KB lrw-r--r-- 2024-11-22 17:53:11
Edit Download
3.57 KB lrw-r--r-- 2024-11-22 17:53:11
Edit Download
4.03 KB lrw-r--r-- 2024-11-22 17:53:11
Edit Download
42.51 KB lrw-r--r-- 2024-11-22 17:53:11
Edit Download
22.75 KB lrw-r--r-- 2024-11-22 17:53:11
Edit Download
40.78 KB lrw-r--r-- 2024-11-22 17:53:11
Edit Download
72.65 KB lrw-r--r-- 2024-11-22 17:53:11
Edit Download
6.12 KB lrw-r--r-- 2024-11-22 17:53:11
Edit Download
99.86 KB lrw-r--r-- 2024-11-22 17:53:11
Edit Download
31.66 KB lrw-r--r-- 2024-11-22 17:53:11
Edit Download
6.91 KB lrw-r--r-- 2024-11-22 17:53:11
Edit Download
62.05 KB lrw-r--r-- 2024-11-22 17:53:11
Edit Download
9.00 KB lrw-r--r-- 2024-11-22 17:53:11
Edit Download
245.87 KB lrw-r--r-- 2024-11-22 17:53:11
Edit Download
34.69 KB lrw-r--r-- 2024-11-22 17:53:11
Edit Download
202 B lrw-r--r-- 2024-11-22 17:53:11
Edit Download
202 B lrw-r--r-- 2024-11-22 17:53:11
Edit Download
65.83 KB lrw-r--r-- 2024-11-22 17:53:11
Edit Download
21.46 KB lrw-r--r-- 2024-11-22 17:53:11
Edit Download
17.65 KB lrw-r--r-- 2024-11-22 17:53:11
Edit Download
211 B lrw-r--r-- 2024-11-22 17:53:11
Edit Download
22.44 KB lrw-r--r-- 2024-11-22 17:53:11
Edit Download
89.87 KB lrw-r--r-- 2024-11-22 17:53:11
Edit Download
258 B lrw-r--r-- 2024-11-22 17:53:11
Edit Download
21.85 KB lrw-r--r-- 2024-11-22 17:53:11
Edit Download
3.16 KB lrw-r--r-- 2024-11-22 17:53:11
Edit Download
443 B lrw-r--r-- 2024-11-22 17:53:11
Edit Download
158.32 KB lrw-r--r-- 2024-11-22 17:53:11
Edit Download
2.94 KB lrw-r--r-- 2024-11-22 17:53:11
Edit Download
21.02 KB lrw-r--r-- 2024-11-22 17:53:11
Edit Download
120.92 KB lrw-r--r-- 2024-11-22 17:53:11
Edit Download
25.57 KB lrw-r--r-- 2024-11-22 17:53:11
Edit Download
129.65 KB lrw-r--r-- 2024-11-22 17:53:11
Edit Download
5.68 KB lrw-r--r-- 2024-11-22 17:53:11
Edit Download
767 B lrw-r--r-- 2025-10-08 16:39:40
Edit Download
57.75 KB lrw-r--r-- 2024-11-22 17:53:11
Edit Download
1.02 KB lrw-r--r-- 2024-11-22 17:53:11
Edit Download
103.12 KB lrw-r--r-- 2024-11-22 17:53:11
Edit Download
647 B lrw-r--r-- 2024-11-22 17:53:11
Edit Download

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