/home/player95/public_html/mmsbee24.xyz/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.
 *
 * @access public
 * @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 /-->' : '';
	}
}
Path: home/player95/public_html/mmsbee24.xyz/wp-includes
  • [D] assets
  • [D] block-bindings
  • [D] block-patterns
  • [D] block-supports
  • [D] blocks
  • [D] certificates
  • [D] css
  • [D] customize
  • [D] fonts
  • [D] html-api
  • [D] ID3
  • [D] images
  • [D] interactivity-api
  • [D] IXR
  • [D] js
  • [D] l10n
  • [D] php-compat
  • [D] PHPMailer
  • [D] pomo
  • [D] Requests
  • [D] rest-api
  • [D] SimplePie
  • [D] sitemaps
  • [D] sodium_compat
  • [D] style-engine
  • [D] Text
  • [D] theme-compat
  • [D] widgets
  • [F] admin-bar.php
  • [F] atomlib.php
  • [F] author-template.php
  • [F] block-bindings.php
  • [F] block-editor.php
  • [F] block-i18n.json
  • [F] block-patterns.php
  • [F] block-template-utils.php
  • [F] block-template.php
  • [F] blocks.php
  • [F] bookmark-template.php
  • [F] bookmark.php
  • [F] cache-compat.php
  • [F] cache.php
  • [F] canonical.php
  • [F] capabilities.php
  • [F] category-template.php
  • [F] category.php
  • [F] class-avif-info.php
  • [F] class-feed.php
  • [F] class-http.php
  • [F] class-IXR.php
  • [F] class-json.php
  • [F] class-oembed.php
  • [F] class-phpass.php
  • [F] class-phpmailer.php
  • [F] class-pop3.php
  • [F] class-requests.php
  • [F] class-simplepie.php
  • [F] class-smtp.php
  • [F] class-snoopy.php
  • [F] class-walker-category-dropdown.php
  • [F] class-walker-category.php
  • [F] class-walker-comment.php
  • [F] class-walker-nav-menu.php
  • [F] class-walker-page-dropdown.php
  • [F] class-walker-page.php
  • [F] class-wp-admin-bar.php
  • [F] class-wp-ajax-response.php
  • [F] class-wp-application-passwords.php
  • [F] class-wp-block-bindings-registry.php
  • [F] class-wp-block-bindings-source.php
  • [F] class-wp-block-editor-context.php
  • [F] class-wp-block-list.php
  • [F] class-wp-block-metadata-registry.php
  • [F] class-wp-block-parser-block.php
  • [F] class-wp-block-parser-frame.php
  • [F] class-wp-block-parser.php
  • [F] class-wp-block-pattern-categories-registry.php
  • [F] class-wp-block-patterns-registry.php
  • [F] class-wp-block-styles-registry.php
  • [F] class-wp-block-supports.php
  • [F] class-wp-block-template.php
  • [F] class-wp-block-templates-registry.php
  • [F] class-wp-block-type-registry.php
  • [F] class-wp-block-type.php
  • [F] class-wp-block.php
  • [F] class-wp-classic-to-block-menu-converter.php
  • [F] class-wp-comment-query.php
  • [F] class-wp-comment.php
  • [F] class-wp-customize-control.php
  • [F] class-wp-customize-manager.php
  • [F] class-wp-customize-nav-menus.php
  • [F] class-wp-customize-panel.php
  • [F] class-wp-customize-section.php
  • [F] class-wp-customize-setting.php
  • [F] class-wp-customize-widgets.php
  • [F] class-wp-date-query.php
  • [F] class-wp-dependencies.php
  • [F] class-wp-dependency.php
  • [F] class-wp-duotone.php
  • [F] class-wp-editor.php
  • [F] class-wp-embed.php
  • [F] class-wp-error.php
  • [F] class-wp-exception.php
  • [F] class-wp-fatal-error-handler.php
  • [F] class-wp-feed-cache-transient.php
  • [F] class-wp-feed-cache.php
  • [F] class-wp-hook.php
  • [F] class-wp-http-cookie.php
  • [F] class-wp-http-curl.php
  • [F] class-wp-http-encoding.php
  • [F] class-wp-http-ixr-client.php
  • [F] class-wp-http-proxy.php
  • [F] class-wp-http-requests-hooks.php
  • [F] class-wp-http-requests-response.php
  • [F] class-wp-http-response.php
  • [F] class-wp-http-streams.php
  • [F] class-wp-http.php
  • [F] class-wp-image-editor-gd.php
  • [F] class-wp-image-editor-imagick.php
  • [F] class-wp-image-editor.php
  • [F] class-wp-list-util.php
  • [F] class-wp-locale-switcher.php
  • [F] class-wp-locale.php
  • [F] class-wp-matchesmapregex.php
  • [F] class-wp-meta-query.php
  • [F] class-wp-metadata-lazyloader.php
  • [F] class-wp-navigation-fallback.php
  • [F] class-wp-network-query.php
  • [F] class-wp-network.php
  • [F] class-wp-object-cache.php
  • [F] class-wp-oembed-controller.php
  • [F] class-wp-oembed.php
  • [F] class-wp-paused-extensions-storage.php
  • [F] class-wp-phpmailer.php
  • [F] class-wp-plugin-dependencies.php
  • [F] class-wp-post-type.php
  • [F] class-wp-post.php
  • [F] class-wp-query.php
  • [F] class-wp-recovery-mode-cookie-service.php
  • [F] class-wp-recovery-mode-email-service.php
  • [F] class-wp-recovery-mode-key-service.php
  • [F] class-wp-recovery-mode-link-service.php
  • [F] class-wp-recovery-mode.php
  • [F] class-wp-rewrite.php
  • [F] class-wp-role.php
  • [F] class-wp-roles.php
  • [F] class-wp-script-modules.php
  • [F] class-wp-scripts.php
  • [F] class-wp-session-tokens.php
  • [F] class-wp-simplepie-file.php
  • [F] class-wp-simplepie-sanitize-kses.php
  • [F] class-wp-site-query.php
  • [F] class-wp-site.php
  • [F] class-wp-speculation-rules.php
  • [F] class-wp-styles.php
  • [F] class-wp-tax-query.php
  • [F] class-wp-taxonomy.php
  • [F] class-wp-term-query.php
  • [F] class-wp-term.php
  • [F] class-wp-text-diff-renderer-inline.php
  • [F] class-wp-text-diff-renderer-table.php
  • [F] class-wp-textdomain-registry.php
  • [F] class-wp-theme-json-data.php
  • [F] class-wp-theme-json-resolver.php
  • [F] class-wp-theme-json-schema.php
  • [F] class-wp-theme-json.php
  • [F] class-wp-theme.php
  • [F] class-wp-token-map.php
  • [F] class-wp-url-pattern-prefixer.php
  • [F] class-wp-user-meta-session-tokens.php
  • [F] class-wp-user-query.php
  • [F] class-wp-user-request.php
  • [F] class-wp-user.php
  • [F] class-wp-walker.php
  • [F] class-wp-widget-factory.php
  • [F] class-wp-widget.php
  • [F] class-wp-xmlrpc-server.php
  • [F] class-wp.php
  • [F] class-wpdb.php
  • [F] class.wp-dependencies.php
  • [F] class.wp-scripts.php
  • [F] class.wp-styles.php
  • [F] comment-template.php
  • [F] comment.php
  • [F] compat.php
  • [F] cron.php
  • [F] date.php
  • [F] default-constants.php
  • [F] default-filters.php
  • [F] default-widgets.php
  • [F] deprecated.php
  • [F] embed-template.php
  • [F] embed.php
  • [F] error-protection.php
  • [F] feed-atom-comments.php
  • [F] feed-atom.php
  • [F] feed-rdf.php
  • [F] feed-rss.php
  • [F] feed-rss2-comments.php
  • [F] feed-rss2.php
  • [F] feed.php
  • [F] fonts.php
  • [F] formatting.php
  • [F] functions.php
  • [F] functions.wp-scripts.php
  • [F] functions.wp-styles.php
  • [F] general-template.php
  • [F] global-styles-and-settings.php
  • [F] http.php
  • [F] https-detection.php
  • [F] https-migration.php
  • [F] kses.php
  • [F] l10n.php
  • [F] link-template.php
  • [F] load.php
  • [F] locale.php
  • [F] media-template.php
  • [F] media.php
  • [F] meta.php
  • [F] ms-blogs.php
  • [F] ms-default-constants.php
  • [F] ms-default-filters.php
  • [F] ms-deprecated.php
  • [F] ms-files.php
  • [F] ms-functions.php
  • [F] ms-load.php
  • [F] ms-network.php
  • [F] ms-settings.php
  • [F] ms-site.php
  • [F] nav-menu-template.php
  • [F] nav-menu.php
  • [F] option.php
  • [F] pluggable-deprecated.php
  • [F] pluggable.php
  • [F] plugin.php
  • [F] post-formats.php
  • [F] post-template.php
  • [F] post-thumbnail-template.php
  • [F] post.php
  • [F] query.php
  • [F] registration-functions.php
  • [F] registration.php
  • [F] rest-api.php
  • [F] revision.php
  • [F] rewrite.php
  • [F] robots-template.php
  • [F] rss-functions.php
  • [F] rss.php
  • [F] script-loader.php
  • [F] script-modules.php
  • [F] session.php
  • [F] shortcodes.php
  • [F] sitemaps.php
  • [F] speculative-loading.php
  • [F] spl-autoload-compat.php
  • [F] style-engine.php
  • [F] taxonomy.php
  • [F] template-canvas.php
  • [F] template-loader.php
  • [F] template.php
  • [F] theme-i18n.json
  • [F] theme-previews.php
  • [F] theme-templates.php
  • [F] theme.json
  • [F] theme.php
  • [F] update.php
  • [F] user.php
  • [F] vars.php
  • [F] version.php
  • [F] widgets.php
  • [F] wp-db.php
  • [F] wp-diff.php
Page not found – mmsbee24
Skip to content

mmsbee24

  • Sample Page
  • Homepage
  • Error 404

Oops! That page can’t be found.

It looks like nothing was found at this location. Maybe try one of the links below or a search?

Random videos

Bringing stranger girl to my bedroom and fucked her pussy,hunter Asia
4 20:13
Bringing stranger girl to my bedroom and fucked her pussy,hunter Asia
Gandi Baat Anveshi Jain Flora Saini
2
Gandi Baat Anveshi Jain Flora Saini
Khwahish Hot Show Live Ass Slap
4
Khwahish Hot Show Live Ass Slap
Hot Ellie Sharma Quick Boob Flash and Teasing on Tango Live
1
Hot Ellie Sharma Quick Boob Flash and Teasing on Tango Live
Indian Milf ur_khwahishh pussy fingering, boobs pressing and Ass Showing
9
Indian Milf ur_khwahishh pussy fingering, boobs pressing and Ass Showing
Goddess Janisha Superb 121 Live Show
1
Goddess Janisha Superb 121 Live Show
Khwahish Private StripChat Show
13
Khwahish Private StripChat Show
Chubby babe riding
1
Chubby babe riding
fucking with Isabel,Jerk off with REAL GIRLS in sex video chat
0 17:27
fucking with Isabel,Jerk off with REAL GIRLS in sex video chat
Cute desi lady sexy navel and boobs in pink saree
8
Cute desi lady sexy navel and boobs in pink saree
Gunjan Aras-instagram Model & Gandi baat 4 fame
2
Gunjan Aras-instagram Model & Gandi baat 4 fame

Archives

  • November 2025

Categories

  • App Content
  • Big Boobs
  • Desi
  • StripChat
  • Tango
  • Uncategorized
All rights reserved. Powered by WP-Script.com
Registration is disabled.

Login to mmsbee24

Lost Password?

Reset Password

Enter the username or e-mail you used in your profile. A password reset link will be sent to you by email.


Loading...

Don't have an account? Sign up Already have an account? Login