PHP 8.2.29
Preview: class-wp-navigation-fallback.php Size: 8.98 KB
/home/medyaist/vetplusveteriner.com/wp-includes/class-wp-navigation-fallback.php
<?php
/**
 * WP_Navigation_Fallback class
 *
 * Manages fallback behavior for Navigation menus.
 *
 * @package WordPress
 * @subpackage Navigation
 * @since 6.3.0
 */

/**
 * Manages fallback behavior for Navigation menus.
 *
 * @since 6.3.0
 */
class WP_Navigation_Fallback {

	/**
	 * Updates the wp_navigation custom post type schema, in order to expose
	 * additional fields in the embeddable links of WP_REST_Navigation_Fallback_Controller.
	 *
	 * The Navigation Fallback endpoint may embed the full Navigation Menu object
	 * into the response as the `self` link. By default, the Posts Controller
	 * will only expose a limited subset of fields but the editor requires
	 * additional fields to be available in order to utilize the menu.
	 *
	 * Used with the `rest_wp_navigation_item_schema` hook.
	 *
	 * @since 6.4.0
	 *
	 * @param array $schema The schema for the `wp_navigation` post.
	 * @return array The modified schema.
	 */
	public static function update_wp_navigation_post_schema( $schema ) {
		// Expose top level fields.
		$schema['properties']['status']['context']  = array_merge( $schema['properties']['status']['context'], array( 'embed' ) );
		$schema['properties']['content']['context'] = array_merge( $schema['properties']['content']['context'], array( 'embed' ) );

		/*
		 * Exposes sub properties of content field.
		 * These sub properties aren't exposed by the posts controller by default,
		 * for requests where context is `embed`.
		 *
		 * @see WP_REST_Posts_Controller::get_item_schema()
		 */
		$schema['properties']['content']['properties']['raw']['context']           = array_merge( $schema['properties']['content']['properties']['raw']['context'], array( 'embed' ) );
		$schema['properties']['content']['properties']['rendered']['context']      = array_merge( $schema['properties']['content']['properties']['rendered']['context'], array( 'embed' ) );
		$schema['properties']['content']['properties']['block_version']['context'] = array_merge( $schema['properties']['content']['properties']['block_version']['context'], array( 'embed' ) );

		/*
		 * Exposes sub properties of title field.
		 * These sub properties aren't exposed by the posts controller by default,
		 * for requests where context is `embed`.
		 *
		 * @see WP_REST_Posts_Controller::get_item_schema()
		 */
		$schema['properties']['title']['properties']['raw']['context'] = array_merge( $schema['properties']['title']['properties']['raw']['context'], array( 'embed' ) );

		return $schema;
	}

	/**
	 * Gets (and/or creates) an appropriate fallback Navigation Menu.
	 *
	 * @since 6.3.0
	 *
	 * @return WP_Post|null the fallback Navigation Post or null.
	 */
	public static function get_fallback() {
		/**
		 * Filters whether or not a fallback should be created.
		 *
		 * @since 6.3.0
		 *
		 * @param bool $create Whether to create a fallback navigation menu. Default true.
		 */
		$should_create_fallback = apply_filters( 'wp_navigation_should_create_fallback', true );

		$fallback = static::get_most_recently_published_navigation();

		if ( $fallback || ! $should_create_fallback ) {
			return $fallback;
		}

		$fallback = static::create_classic_menu_fallback();

		if ( $fallback && ! is_wp_error( $fallback ) ) {
			// Return the newly created fallback post object which will now be the most recently created navigation menu.
			return $fallback instanceof WP_Post ? $fallback : static::get_most_recently_published_navigation();
		}

		$fallback = static::create_default_fallback();

		if ( $fallback && ! is_wp_error( $fallback ) ) {
			// Return the newly created fallback post object which will now be the most recently created navigation menu.
			return $fallback instanceof WP_Post ? $fallback : static::get_most_recently_published_navigation();
		}

		return null;
	}

	/**
	 * Finds the most recently published `wp_navigation` post type.
	 *
	 * @since 6.3.0
	 *
	 * @return WP_Post|null the first non-empty Navigation or null.
	 */
	private static function get_most_recently_published_navigation() {

		$parsed_args = array(
			'post_type'              => 'wp_navigation',
			'no_found_rows'          => true,
			'update_post_meta_cache' => false,
			'update_post_term_cache' => false,
			'order'                  => 'DESC',
			'orderby'                => 'date',
			'post_status'            => 'publish',
			'posts_per_page'         => 1,
		);

		$navigation_post = new WP_Query( $parsed_args );

		if ( count( $navigation_post->posts ) > 0 ) {
			return $navigation_post->posts[0];
		}

		return null;
	}

	/**
	 * Creates a Navigation Menu post from a Classic Menu.
	 *
	 * @since 6.3.0
	 *
	 * @return int|WP_Error The post ID of the default fallback menu or a WP_Error object.
	 */
	private static function create_classic_menu_fallback() {
		// See if we have a classic menu.
		$classic_nav_menu = static::get_fallback_classic_menu();

		if ( ! $classic_nav_menu ) {
			return new WP_Error( 'no_classic_menus', __( 'No Classic Menus found.' ) );
		}

		// If there is a classic menu then convert it to blocks.
		$classic_nav_menu_blocks = WP_Classic_To_Block_Menu_Converter::convert( $classic_nav_menu );

		if ( is_wp_error( $classic_nav_menu_blocks ) ) {
			return $classic_nav_menu_blocks;
		}

		if ( empty( $classic_nav_menu_blocks ) ) {
			return new WP_Error( 'cannot_convert_classic_menu', __( 'Unable to convert Classic Menu to blocks.' ) );
		}

		// Create a new navigation menu from the classic menu.
		$classic_menu_fallback = wp_insert_post(
			array(
				'post_content' => $classic_nav_menu_blocks,
				'post_title'   => $classic_nav_menu->name,
				'post_name'    => $classic_nav_menu->slug,
				'post_status'  => 'publish',
				'post_type'    => 'wp_navigation',
			),
			true // So that we can check whether the result is an error.
		);

		return $classic_menu_fallback;
	}

	/**
	 * Determines the most appropriate classic navigation menu to use as a fallback.
	 *
	 * @since 6.3.0
	 *
	 * @return WP_Term|null The most appropriate classic navigation menu to use as a fallback.
	 */
	private static function get_fallback_classic_menu() {
		$classic_nav_menus = wp_get_nav_menus();

		if ( ! $classic_nav_menus || is_wp_error( $classic_nav_menus ) ) {
			return null;
		}

		$nav_menu = static::get_nav_menu_at_primary_location();

		if ( $nav_menu ) {
			return $nav_menu;
		}

		$nav_menu = static::get_nav_menu_with_primary_slug( $classic_nav_menus );

		if ( $nav_menu ) {
			return $nav_menu;
		}

		return static::get_most_recently_created_nav_menu( $classic_nav_menus );
	}


	/**
	 * Sorts the classic menus and returns the most recently created one.
	 *
	 * @since 6.3.0
	 *
	 * @param WP_Term[] $classic_nav_menus Array of classic nav menu term objects.
	 * @return WP_Term The most recently created classic nav menu.
	 */
	private static function get_most_recently_created_nav_menu( $classic_nav_menus ) {
		usort(
			$classic_nav_menus,
			static function ( $a, $b ) {
				return $b->term_id - $a->term_id;
			}
		);

		return $classic_nav_menus[0];
	}

	/**
	 * Returns the classic menu with the slug `primary` if it exists.
	 *
	 * @since 6.3.0
	 *
	 * @param WP_Term[] $classic_nav_menus Array of classic nav menu term objects.
	 * @return WP_Term|null The classic nav menu with the slug `primary` or null.
	 */
	private static function get_nav_menu_with_primary_slug( $classic_nav_menus ) {
		foreach ( $classic_nav_menus as $classic_nav_menu ) {
			if ( 'primary' === $classic_nav_menu->slug ) {
				return $classic_nav_menu;
			}
		}

		return null;
	}


	/**
	 * Gets the classic menu assigned to the `primary` navigation menu location
	 * if it exists.
	 *
	 * @since 6.3.0
	 *
	 * @return WP_Term|null The classic nav menu assigned to the `primary` location or null.
	 */
	private static function get_nav_menu_at_primary_location() {
		$locations = get_nav_menu_locations();

		if ( isset( $locations['primary'] ) ) {
			$primary_menu = wp_get_nav_menu_object( $locations['primary'] );

			if ( $primary_menu ) {
				return $primary_menu;
			}
		}

		return null;
	}

	/**
	 * Creates a default Navigation Block Menu fallback.
	 *
	 * @since 6.3.0
	 *
	 * @return int|WP_Error The post ID of the default fallback menu or a WP_Error object.
	 */
	private static function create_default_fallback() {

		$default_blocks = static::get_default_fallback_blocks();

		// Create a new navigation menu from the fallback blocks.
		$default_fallback = wp_insert_post(
			array(
				'post_content' => $default_blocks,
				'post_title'   => _x( 'Navigation', 'Title of a Navigation menu' ),
				'post_name'    => 'navigation',
				'post_status'  => 'publish',
				'post_type'    => 'wp_navigation',
			),
			true // So that we can check whether the result is an error.
		);

		return $default_fallback;
	}

	/**
	 * Gets the rendered markup for the default fallback blocks.
	 *
	 * @since 6.3.0
	 *
	 * @return string default blocks markup to use a the fallback.
	 */
	private static function get_default_fallback_blocks() {
		$registry = WP_Block_Type_Registry::get_instance();

		// If `core/page-list` is not registered then use empty blocks.
		return $registry->is_registered( 'core/page-list' ) ? '<!-- wp:page-list /-->' : '';
	}
}

Directory Contents

Dirs: 29 × Files: 157
Name Size Perms Modified Actions
- drwxr-xr-x 2025-12-03 17:56:28
Edit Download
assets DIR
- drwxr-xr-x 2025-10-15 22:49:44
Edit Download
- drwxr-xr-x 2026-01-14 05:09:42
Edit Download
- drwxr-xr-x 2026-01-14 22:15:15
Edit Download
- drwxr-xr-x 2026-01-14 22:15:33
Edit Download
blocks DIR
- drwxr-xr-x 2026-01-14 15:46:12
Edit Download
- drwxr-xr-x 2026-01-09 23:52:28
Edit Download
css DIR
- drwxr-xr-x 2025-10-15 22:49:45
Edit Download
customize DIR
- drwxr-xr-x 2026-01-14 10:05:37
Edit Download
fonts DIR
- drwxr-xr-x 2026-01-13 23:32:46
Edit Download
html-api DIR
- drwxr-xr-x 2026-01-14 19:45:51
Edit Download
ID3 DIR
- drwxr-xr-x 2026-01-13 23:26:22
Edit Download
images DIR
- drwxr-xr-x 2026-01-09 23:58:18
Edit Download
- drwxr-xr-x 2026-01-15 00:20:13
Edit Download
IXR DIR
- drwxr-xr-x 2026-01-14 05:08:41
Edit Download
js DIR
- drwxr-xr-x 2026-01-13 23:29:55
Edit Download
l10n DIR
- drwxr-xr-x 2026-01-14 18:25:54
Edit Download
- drwxr-xr-x 2025-10-15 22:49:45
Edit Download
PHPMailer DIR
- drwxr-xr-x 2026-01-13 23:29:58
Edit Download
pomo DIR
- drwxr-xr-x 2025-10-15 22:49:45
Edit Download
Requests DIR
- drwxr-xr-x 2025-10-15 22:49:45
Edit Download
rest-api DIR
- drwxr-xr-x 2026-01-07 18:29:15
Edit Download
SimplePie DIR
- drwxr-xr-x 2026-01-10 00:55:04
Edit Download
sitemaps DIR
- drwxr-xr-x 2025-10-15 22:49:45
Edit Download
- drwxr-xr-x 2026-01-14 06:43:17
Edit Download
- drwxr-xr-x 2026-01-10 00:39:22
Edit Download
Text DIR
- drwxr-xr-x 2025-10-15 22:49:45
Edit Download
- drwxr-xr-x 2026-01-07 18:07:15
Edit Download
widgets DIR
- drwxr-xr-x 2026-01-14 06:44:22
Edit Download
7.80 KB lrw-r--r-- 2025-12-03 17:56:33
Edit Download
18.94 KB lrw-r--r-- 2025-12-03 17:56:34
Edit Download
7.35 KB lrw-r--r-- 2025-12-03 17:56:33
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 17:56:33
Edit Download
112.05 KB lrw-r--r-- 2025-12-03 17:56:33
Edit Download
42.63 KB lrw-r--r-- 2025-12-03 17:56:34
Edit Download
6.61 KB lrw-r--r-- 2024-09-17 18:08:16
Edit Download
2.18 KB lrw-r--r-- 2023-04-05 10:12:26
Edit Download
13.89 KB lrw-r--r-- 2024-03-18 12:46:14
Edit Download
7.43 KB lrw-r--r-- 2023-09-14 09:46:20
Edit Download
17.46 KB lrw-r--r-- 2024-07-17 21:52:18
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 17:56:34
Edit Download
1.32 KB lrw-r--r-- 2022-09-12 12:47:14
Edit Download
4.60 KB lrw-r--r-- 2025-12-03 17:56:33
Edit Download
11.62 KB lrw-r--r-- 2025-03-05 19:17:24
Edit Download
2.50 KB lrw-r--r-- 2025-12-03 17:56:33
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 17:56:33
Edit Download
10.60 KB lrw-r--r-- 2025-12-03 17:56:33
Edit Download
67.84 KB lrw-r--r-- 2025-12-03 17:56:33
Edit Download
6.34 KB lrw-r--r-- 2025-12-03 17:56:33
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 17:56:33
Edit Download
4.91 KB lrw-r--r-- 2025-12-03 17:56:34
Edit Download
16.86 KB lrw-r--r-- 2024-05-01 21:01:10
Edit Download
24.23 KB lrw-r--r-- 2025-12-03 17:56:33
Edit Download
3.97 KB lrw-r--r-- 2025-12-03 17:56:33
Edit Download
47.66 KB lrw-r--r-- 2025-12-03 17:56:34
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 17:56:33
Edit Download
198.38 KB lrw-r--r-- 2025-12-03 17:56:34
Edit Download
56.65 KB lrw-r--r-- 2025-12-03 17:56:34
Edit Download
10.46 KB lrw-r--r-- 2025-01-22 16:48:26
Edit Download
10.95 KB lrw-r--r-- 2024-10-13 16:09:12
Edit Download
29.26 KB lrw-r--r-- 2025-01-22 16:48:26
Edit Download
70.91 KB lrw-r--r-- 2025-12-03 17:56:33
Edit Download
35.30 KB lrw-r--r-- 2025-12-03 17:56:34
Edit Download
15.02 KB lrw-r--r-- 2025-12-03 17:56:33
Edit Download
2.57 KB lrw-r--r-- 2025-12-03 17:56:33
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
3.23 KB lrw-r--r-- 2025-12-03 17:56:33
Edit Download
969 B lrw-r--r-- 2024-09-30 19:50:20
Edit Download
16.28 KB lrw-r--r-- 2025-12-03 17:56:33
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 17:56:34
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
16.46 KB lrw-r--r-- 2023-09-21 15:29:12
Edit Download
40.60 KB lrw-r--r-- 2025-12-03 17:56:33
Edit Download
20.22 KB lrw-r--r-- 2025-12-03 17:56:33
Edit Download
36.11 KB lrw-r--r-- 2025-12-03 17:56:33
Edit Download
7.27 KB lrw-r--r-- 2024-02-27 19:38:16
Edit Download
6.62 KB lrw-r--r-- 2025-12-03 17:56:34
Edit Download
16.49 KB lrw-r--r-- 2025-02-25 19:40:22
Edit Download
1.79 KB lrw-r--r-- 2024-02-05 22:25:14
Edit Download
29.82 KB lrw-r--r-- 2025-12-03 17:56:33
Edit Download
6.67 KB lrw-r--r-- 2023-05-11 08:15:24
Edit Download
8.98 KB lrw-r--r-- 2025-12-03 17:56:34
Edit Download
19.42 KB lrw-r--r-- 2025-12-03 17:56:33
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 17:56:33
Edit Download
1.06 KB lrw-r--r-- 2025-12-03 17:56:33
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 17:56:34
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 17:56:33
Edit Download
24.72 KB lrw-r--r-- 2025-03-17 19:40:26
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 17:56:33
Edit Download
159.91 KB lrw-r--r-- 2025-12-03 17:56:34
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 17:56:33
Edit Download
2.46 KB lrw-r--r-- 2023-09-08 06:32:24
Edit Download
9.17 KB lrw-r--r-- 2025-12-03 17:56:33
Edit Download
31.13 KB lrw-r--r-- 2025-12-03 17:56:33
Edit Download
33.38 KB lrw-r--r-- 2025-12-03 17:56:33
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 17:56:33
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 17:56:33
Edit Download
7.29 KB lrw-r--r-- 2025-12-03 17:56:33
Edit Download
7.35 KB lrw-r--r-- 2025-02-18 19:32:22
Edit Download
11.86 KB lrw-r--r-- 2025-12-03 17:56:33
Edit Download
19.12 KB lrw-r--r-- 2025-12-03 17:56:33
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 17:56:33
Edit Download
5.17 KB lrw-r--r-- 2022-09-12 12:47:14
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
34.90 KB lrw-r--r-- 2024-11-03 23:34:16
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 17:56:33
Edit Download
64.27 KB lrw-r--r-- 2025-04-08 11:18:28
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
13.01 KB lrw-r--r-- 2024-07-26 04:56:14
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 17:56:33
Edit Download
25.86 KB lrw-r--r-- 2025-12-03 17:56:33
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
338 B lrw-r--r-- 2022-09-20 11:17:12
Edit Download
130.93 KB lrw-r--r-- 2025-12-03 17:56:33
Edit Download
37.02 KB lrw-r--r-- 2025-12-03 17:56:33
Edit Download
2.24 KB lrw-r--r-- 2025-01-22 16:48:26
Edit Download
4.02 KB lrw-r--r-- 2023-05-02 12:45:22
Edit Download
214.68 KB lrw-r--r-- 2026-03-02 09:20:26
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
9.56 KB lrw-r--r-- 2025-12-03 17:56:33
Edit Download
281.84 KB lrw-r--r-- 2025-12-03 17:56:34
Edit Download
14.95 KB lrw-r--r-- 2025-12-03 17:56:33
Edit Download
8.44 KB lrw-r--r-- 2025-12-03 17:56:33
Edit Download
20.71 KB lrw-r--r-- 2025-12-03 17:56:33
Edit Download
5.72 KB lrw-r--r-- 2025-02-24 10:43:24
Edit Download
81.72 KB lrw-r--r-- 2025-12-03 17:56:33
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 17:56:33
Edit Download
89.69 KB lrw-r--r-- 2025-12-03 17:56:34
Edit Download
4.11 KB lrw-r--r-- 2025-12-03 17:56:33
Edit Download
6.94 KB lrw-r--r-- 2024-05-27 13:29:16
Edit Download
289.13 KB lrw-r--r-- 2025-12-03 17:56:33
Edit Download
200 B lrw-r--r-- 2020-11-12 08:17:08
Edit Download
255 B lrw-r--r-- 2020-11-16 19:52:06
Edit Download
22.66 KB lrw-r--r-- 2025-12-03 17:56:33
Edit Download
9.68 KB lrw-r--r-- 2025-12-03 17:56:34
Edit Download
23.49 KB lrw-r--r-- 2025-12-03 17:56:33
Edit Download
3.16 KB lrw-r--r-- 2021-05-15 14:38:06
Edit Download
544 B lrw-r--r-- 2023-09-30 21:22:28
Edit Download
2.84 KB lrw-r--r-- 2025-12-03 17:56:33
Edit Download
6.09 KB lrw-r--r-- 2025-02-17 14:49:20
Edit Download
6.41 KB lrw-r--r-- 2025-01-22 16:48:26
Edit Download
69.46 KB lrw-r--r-- 2025-12-03 17:56:33
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).