Current Path : /storage/v11800/affypharma/public_html/wp-includes/

Linux v11800 5.3.0-1023-aws #25~18.04.1-Ubuntu SMP Fri Jun 5 15:19:18 UTC 2020 aarch64

Upload File :
Current File : /storage/v11800/affypharma/public_html/wp-includes/nav-menu-template.php
<?php
/**
 * Nav Menu API: Template functions
 *
 * @package WordPress
 * @subpackage Nav_Menus
 * @since 3.0.0
 */

/** Walker_Nav_Menu class */
require_once ABSPATH . WPINC . '/class-walker-nav-menu.php';

/**
 * Displays a navigation menu.
 *
 * @since 3.0.0
 * @since 4.7.0 Added the `item_spacing` argument.
 * @since 5.5.0 Added the `container_aria_label` argument.
 *
 * @param array $args {
 *     Optional. Array of nav menu arguments.
 *
 *     @type int|string|WP_Term $menu                 Desired menu. Accepts a menu ID, slug, name, or object.
 *                                                    Default empty.
 *     @type string             $menu_class           CSS class to use for the ul element which forms the menu.
 *                                                    Default 'menu'.
 *     @type string             $menu_id              The ID that is applied to the ul element which forms the menu.
 *                                                    Default is the menu slug, incremented.
 *     @type string             $container            Whether to wrap the ul, and what to wrap it with.
 *                                                    Default 'div'.
 *     @type string             $container_class      Class that is applied to the container.
 *                                                    Default 'menu-{menu slug}-container'.
 *     @type string             $container_id         The ID that is applied to the container. Default empty.
 *     @type string             $container_aria_label The aria-label attribute that is applied to the container
 *                                                    when it's a nav element. Default empty.
 *     @type callable|false     $fallback_cb          If the menu doesn't exist, a callback function will fire.
 *                                                    Default is 'wp_page_menu'. Set to false for no fallback.
 *     @type string             $before               Text before the link markup. Default empty.
 *     @type string             $after                Text after the link markup. Default empty.
 *     @type string             $link_before          Text before the link text. Default empty.
 *     @type string             $link_after           Text after the link text. Default empty.
 *     @type bool               $echo                 Whether to echo the menu or return it. Default true.
 *     @type int                $depth                How many levels of the hierarchy are to be included.
 *                                                    0 means all. Default 0.
 *                                                    Default 0.
 *     @type object             $walker               Instance of a custom walker class. Default empty.
 *     @type string             $theme_location       Theme location to be used. Must be registered with
 *                                                    register_nav_menu() in order to be selectable by the user.
 *     @type string             $items_wrap           How the list items should be wrapped. Uses printf() format with
 *                                                    numbered placeholders. Default is a ul with an id and class.
 *     @type string             $item_spacing         Whether to preserve whitespace within the menu's HTML.
 *                                                    Accepts 'preserve' or 'discard'. Default 'preserve'.
 * }
 * @return void|string|false Void if 'echo' argument is true, menu output if 'echo' is false.
 *                           False if there are no items or no menu was found.
 */
function wp_nav_menu( $args = array() ) {
	static $menu_id_slugs = array();

	$defaults = array(
		'menu'                 => '',
		'container'            => 'div',
		'container_class'      => '',
		'container_id'         => '',
		'container_aria_label' => '',
		'menu_class'           => 'menu',
		'menu_id'              => '',
		'echo'                 => true,
		'fallback_cb'          => 'wp_page_menu',
		'before'               => '',
		'after'                => '',
		'link_before'          => '',
		'link_after'           => '',
		'items_wrap'           => '<ul id="%1$s" class="%2$s">%3$s</ul>',
		'item_spacing'         => 'preserve',
		'depth'                => 0,
		'walker'               => '',
		'theme_location'       => '',
	);

	$args = wp_parse_args( $args, $defaults );

	if ( ! in_array( $args['item_spacing'], array( 'preserve', 'discard' ), true ) ) {
		// Invalid value, fall back to default.
		$args['item_spacing'] = $defaults['item_spacing'];
	}

	/**
	 * Filters the arguments used to display a navigation menu.
	 *
	 * @since 3.0.0
	 *
	 * @see wp_nav_menu()
	 *
	 * @param array $args Array of wp_nav_menu() arguments.
	 */
	$args = apply_filters( 'wp_nav_menu_args', $args );
	$args = (object) $args;

	/**
	 * Filters whether to short-circuit the wp_nav_menu() output.
	 *
	 * Returning a non-null value from the filter will short-circuit wp_nav_menu(),
	 * echoing that value if $args->echo is true, returning that value otherwise.
	 *
	 * @since 3.9.0
	 *
	 * @see wp_nav_menu()
	 *
	 * @param string|null $output Nav menu output to short-circuit with. Default null.
	 * @param stdClass    $args   An object containing wp_nav_menu() arguments.
	 */
	$nav_menu = apply_filters( 'pre_wp_nav_menu', null, $args );

	if ( null !== $nav_menu ) {
		if ( $args->echo ) {
			echo $nav_menu;
			return;
		}

		return $nav_menu;
	}

	// Get the nav menu based on the requested menu.
	$menu = wp_get_nav_menu_object( $args->menu );

	// Get the nav menu based on the theme_location.
	$locations = get_nav_menu_locations();
	if ( ! $menu && $args->theme_location && $locations && isset( $locations[ $args->theme_location ] ) ) {
		$menu = wp_get_nav_menu_object( $locations[ $args->theme_location ] );
	}

	// Get the first menu that has items if we still can't find a menu.
	if ( ! $menu && ! $args->theme_location ) {
		$menus = wp_get_nav_menus();
		foreach ( $menus as $menu_maybe ) {
			$menu_items = wp_get_nav_menu_items( $menu_maybe->term_id, array( 'update_post_term_cache' => false ) );
			if ( $menu_items ) {
				$menu = $menu_maybe;
				break;
			}
		}
	}

	if ( empty( $args->menu ) ) {
		$args->menu = $menu;
	}

	// If the menu exists, get its items.
	if ( $menu && ! is_wp_error( $menu ) && ! isset( $menu_items ) ) {
		$menu_items = wp_get_nav_menu_items( $menu->term_id, array( 'update_post_term_cache' => false ) );
	}

	/*
	 * If no menu was found:
	 *  - Fall back (if one was specified), or bail.
	 *
	 * If no menu items were found:
	 *  - Fall back, but only if no theme location was specified.
	 *  - Otherwise, bail.
	 */
	if ( ( ! $menu || is_wp_error( $menu ) || ( isset( $menu_items ) && empty( $menu_items ) && ! $args->theme_location ) )
		&& isset( $args->fallback_cb ) && $args->fallback_cb && is_callable( $args->fallback_cb ) ) {
			return call_user_func( $args->fallback_cb, (array) $args );
	}

	if ( ! $menu || is_wp_error( $menu ) ) {
		return false;
	}

	$nav_menu = '';
	$items    = '';

	$show_container = false;
	if ( $args->container ) {
		/**
		 * Filters the list of HTML tags that are valid for use as menu containers.
		 *
		 * @since 3.0.0
		 *
		 * @param string[] $tags The acceptable HTML tags for use as menu containers.
		 *                       Default is array containing 'div' and 'nav'.
		 */
		$allowed_tags = apply_filters( 'wp_nav_menu_container_allowedtags', array( 'div', 'nav' ) );

		if ( is_string( $args->container ) && in_array( $args->container, $allowed_tags, true ) ) {
			$show_container = true;
			$class          = $args->container_class ? ' class="' . esc_attr( $args->container_class ) . '"' : ' class="menu-' . $menu->slug . '-container"';
			$id             = $args->container_id ? ' id="' . esc_attr( $args->container_id ) . '"' : '';
			$aria_label     = ( 'nav' === $args->container && $args->container_aria_label ) ? ' aria-label="' . esc_attr( $args->container_aria_label ) . '"' : '';
			$nav_menu      .= '<' . $args->container . $id . $class . $aria_label . '>';
		}
	}

	// Set up the $menu_item variables.
	_wp_menu_item_classes_by_context( $menu_items );

	$sorted_menu_items        = array();
	$menu_items_with_children = array();
	foreach ( (array) $menu_items as $menu_item ) {
		/*
		 * Fix invalid `menu_item_parent`. See: https://core.trac.wordpress.org/ticket/56926.
		 * Compare as strings. Plugins may change the ID to a string.
		 */
		if ( (string) $menu_item->ID === (string) $menu_item->menu_item_parent ) {
			$menu_item->menu_item_parent = 0;
		}

		$sorted_menu_items[ $menu_item->menu_order ] = $menu_item;
		if ( $menu_item->menu_item_parent ) {
			$menu_items_with_children[ $menu_item->menu_item_parent ] = true;
		}
	}

	// Add the menu-item-has-children class where applicable.
	if ( $menu_items_with_children ) {
		foreach ( $sorted_menu_items as &$menu_item ) {
			if ( isset( $menu_items_with_children[ $menu_item->ID ] ) ) {
				$menu_item->classes[] = 'menu-item-has-children';
			}
		}
	}

	unset( $menu_items, $menu_item );

	/**
	 * Filters the sorted list of menu item objects before generating the menu's HTML.
	 *
	 * @since 3.1.0
	 *
	 * @param array    $sorted_menu_items The menu items, sorted by each menu item's menu order.
	 * @param stdClass $args              An object containing wp_nav_menu() arguments.
	 */
	$sorted_menu_items = apply_filters( 'wp_nav_menu_objects', $sorted_menu_items, $args );

	$items .= walk_nav_menu_tree( $sorted_menu_items, $args->depth, $args );
	unset( $sorted_menu_items );

	// Attributes.
	if ( ! empty( $args->menu_id ) ) {
		$wrap_id = $args->menu_id;
	} else {
		$wrap_id = 'menu-' . $menu->slug;

		while ( in_array( $wrap_id, $menu_id_slugs, true ) ) {
			if ( preg_match( '#-(\d+)$#', $wrap_id, $matches ) ) {
				$wrap_id = preg_replace( '#-(\d+)$#', '-' . ++$matches[1], $wrap_id );
			} else {
				$wrap_id = $wrap_id . '-1';
			}
		}
	}
	$menu_id_slugs[] = $wrap_id;

	$wrap_class = $args->menu_class ? $args->menu_class : '';

	/**
	 * Filters the HTML list content for navigation menus.
	 *
	 * @since 3.0.0
	 *
	 * @see wp_nav_menu()
	 *
	 * @param string   $items The HTML list content for the menu items.
	 * @param stdClass $args  An object containing wp_nav_menu() arguments.
	 */
	$items = apply_filters( 'wp_nav_menu_items', $items, $args );
	/**
	 * Filters the HTML list content for a specific navigation menu.
	 *
	 * @since 3.0.0
	 *
	 * @see wp_nav_menu()
	 *
	 * @param string   $items The HTML list content for the menu items.
	 * @param stdClass $args  An object containing wp_nav_menu() arguments.
	 */
	$items = apply_filters( "wp_nav_menu_{$menu->slug}_items", $items, $args );

	// Don't print any markup if there are no items at this point.
	if ( empty( $items ) ) {
		return false;
	}

	$nav_menu .= sprintf( $args->items_wrap, esc_attr( $wrap_id ), esc_attr( $wrap_class ), $items );
	unset( $items );

	if ( $show_container ) {
		$nav_menu .= '</' . $args->container . '>';
	}

	/**
	 * Filters the HTML content for navigation menus.
	 *
	 * @since 3.0.0
	 *
	 * @see wp_nav_menu()
	 *
	 * @param string   $nav_menu The HTML content for the navigation menu.
	 * @param stdClass $args     An object containing wp_nav_menu() arguments.
	 */
	$nav_menu = apply_filters( 'wp_nav_menu', $nav_menu, $args );

	if ( $args->echo ) {
		echo $nav_menu;
	} else {
		return $nav_menu;
	}
}

/**
 * Adds the class property classes for the current context, if applicable.
 *
 * @access private
 * @since 3.0.0
 *
 * @global WP_Query   $wp_query   WordPress Query object.
 * @global WP_Rewrite $wp_rewrite WordPress rewrite component.
 *
 * @param array $menu_items The current menu item objects to which to add the class property information.
 */
function _wp_menu_item_classes_by_context( &$menu_items ) {
	global $wp_query, $wp_rewrite;

	$queried_object    = $wp_query->get_queried_object();
	$queried_object_id = (int) $wp_query->queried_object_id;

	$active_object               = '';
	$active_ancestor_item_ids    = array();
	$active_parent_item_ids      = array();
	$active_parent_object_ids    = array();
	$possible_taxonomy_ancestors = array();
	$possible_object_parents     = array();
	$home_page_id                = (int) get_option( 'page_for_posts' );

	if ( $wp_query->is_singular && ! empty( $queried_object->post_type ) && ! is_post_type_hierarchical( $queried_object->post_type ) ) {
		foreach ( (array) get_object_taxonomies( $queried_object->post_type ) as $taxonomy ) {
			if ( is_taxonomy_hierarchical( $taxonomy ) ) {
				$term_hierarchy = _get_term_hierarchy( $taxonomy );
				$terms          = wp_get_object_terms( $queried_object_id, $taxonomy, array( 'fields' => 'ids' ) );
				if ( is_array( $terms ) ) {
					$possible_object_parents = array_merge( $possible_object_parents, $terms );
					$term_to_ancestor        = array();
					foreach ( (array) $term_hierarchy as $anc => $descs ) {
						foreach ( (array) $descs as $desc ) {
							$term_to_ancestor[ $desc ] = $anc;
						}
					}

					foreach ( $terms as $desc ) {
						do {
							$possible_taxonomy_ancestors[ $taxonomy ][] = $desc;
							if ( isset( $term_to_ancestor[ $desc ] ) ) {
								$_desc = $term_to_ancestor[ $desc ];
								unset( $term_to_ancestor[ $desc ] );
								$desc = $_desc;
							} else {
								$desc = 0;
							}
						} while ( ! empty( $desc ) );
					}
				}
			}
		}
	} elseif ( ! empty( $queried_object->taxonomy ) && is_taxonomy_hierarchical( $queried_object->taxonomy ) ) {
		$term_hierarchy   = _get_term_hierarchy( $queried_object->taxonomy );
		$term_to_ancestor = array();
		foreach ( (array) $term_hierarchy as $anc => $descs ) {
			foreach ( (array) $descs as $desc ) {
				$term_to_ancestor[ $desc ] = $anc;
			}
		}
		$desc = $queried_object->term_id;
		do {
			$possible_taxonomy_ancestors[ $queried_object->taxonomy ][] = $desc;
			if ( isset( $term_to_ancestor[ $desc ] ) ) {
				$_desc = $term_to_ancestor[ $desc ];
				unset( $term_to_ancestor[ $desc ] );
				$desc = $_desc;
			} else {
				$desc = 0;
			}
		} while ( ! empty( $desc ) );
	}

	$possible_object_parents = array_filter( $possible_object_parents );

	$front_page_url         = home_url();
	$front_page_id          = (int) get_option( 'page_on_front' );
	$privacy_policy_page_id = (int) get_option( 'wp_page_for_privacy_policy' );

	foreach ( (array) $menu_items as $key => $menu_item ) {

		$menu_items[ $key ]->current = false;

		$classes   = (array) $menu_item->classes;
		$classes[] = 'menu-item';
		$classes[] = 'menu-item-type-' . $menu_item->type;
		$classes[] = 'menu-item-object-' . $menu_item->object;

		// This menu item is set as the 'Front Page'.
		if ( 'post_type' === $menu_item->type && $front_page_id === (int) $menu_item->object_id ) {
			$classes[] = 'menu-item-home';
		}

		// This menu item is set as the 'Privacy Policy Page'.
		if ( 'post_type' === $menu_item->type && $privacy_policy_page_id === (int) $menu_item->object_id ) {
			$classes[] = 'menu-item-privacy-policy';
		}

		// If the menu item corresponds to a taxonomy term for the currently queried non-hierarchical post object.
		if ( $wp_query->is_singular && 'taxonomy' === $menu_item->type
			&& in_array( (int) $menu_item->object_id, $possible_object_parents, true )
		) {
			$active_parent_object_ids[] = (int) $menu_item->object_id;
			$active_parent_item_ids[]   = (int) $menu_item->db_id;
			$active_object              = $queried_object->post_type;

			// If the menu item corresponds to the currently queried post or taxonomy object.
		} elseif (
			$menu_item->object_id == $queried_object_id
			&& (
				( ! empty( $home_page_id ) && 'post_type' === $menu_item->type
					&& $wp_query->is_home && $home_page_id == $menu_item->object_id )
				|| ( 'post_type' === $menu_item->type && $wp_query->is_singular )
				|| ( 'taxonomy' === $menu_item->type
					&& ( $wp_query->is_category || $wp_query->is_tag || $wp_query->is_tax )
					&& $queried_object->taxonomy == $menu_item->object )
			)
		) {
			$classes[]                   = 'current-menu-item';
			$menu_items[ $key ]->current = true;
			$_anc_id                     = (int) $menu_item->db_id;

			while (
				( $_anc_id = (int) get_post_meta( $_anc_id, '_menu_item_menu_item_parent', true ) )
				&& ! in_array( $_anc_id, $active_ancestor_item_ids, true )
			) {
				$active_ancestor_item_ids[] = $_anc_id;
			}

			if ( 'post_type' === $menu_item->type && 'page' === $menu_item->object ) {
				// Back compat classes for pages to match wp_page_menu().
				$classes[] = 'page_item';
				$classes[] = 'page-item-' . $menu_item->object_id;
				$classes[] = 'current_page_item';
			}

			$active_parent_item_ids[]   = (int) $menu_item->menu_item_parent;
			$active_parent_object_ids[] = (int) $menu_item->post_parent;
			$active_object              = $menu_item->object;

			// If the menu item corresponds to the currently queried post type archive.
		} elseif (
			'post_type_archive' === $menu_item->type
			&& is_post_type_archive( array( $menu_item->object ) )
		) {
			$classes[]                   = 'current-menu-item';
			$menu_items[ $key ]->current = true;
			$_anc_id                     = (int) $menu_item->db_id;

			while (
				( $_anc_id = (int) get_post_meta( $_anc_id, '_menu_item_menu_item_parent', true ) )
				&& ! in_array( $_anc_id, $active_ancestor_item_ids, true )
			) {
				$active_ancestor_item_ids[] = $_anc_id;
			}

			$active_parent_item_ids[] = (int) $menu_item->menu_item_parent;

			// If the menu item corresponds to the currently requested URL.
		} elseif ( 'custom' === $menu_item->object && isset( $_SERVER['HTTP_HOST'] ) ) {
			$_root_relative_current = untrailingslashit( $_SERVER['REQUEST_URI'] );

			// If it's the customize page then it will strip the query var off the URL before entering the comparison block.
			if ( is_customize_preview() ) {
				$_root_relative_current = strtok( untrailingslashit( $_SERVER['REQUEST_URI'] ), '?' );
			}

			$current_url        = set_url_scheme( 'http://' . $_SERVER['HTTP_HOST'] . $_root_relative_current );
			$raw_item_url       = strpos( $menu_item->url, '#' ) ? substr( $menu_item->url, 0, strpos( $menu_item->url, '#' ) ) : $menu_item->url;
			$item_url           = set_url_scheme( untrailingslashit( $raw_item_url ) );
			$_indexless_current = untrailingslashit( preg_replace( '/' . preg_quote( $wp_rewrite->index, '/' ) . '$/', '', $current_url ) );

			$matches = array(
				$current_url,
				urldecode( $current_url ),
				$_indexless_current,
				urldecode( $_indexless_current ),
				$_root_relative_current,
				urldecode( $_root_relative_current ),
			);

			if ( $raw_item_url && in_array( $item_url, $matches, true ) ) {
				$classes[]                   = 'current-menu-item';
				$menu_items[ $key ]->current = true;
				$_anc_id                     = (int) $menu_item->db_id;

				while (
					( $_anc_id = (int) get_post_meta( $_anc_id, '_menu_item_menu_item_parent', true ) )
					&& ! in_array( $_anc_id, $active_ancestor_item_ids, true )
				) {
					$active_ancestor_item_ids[] = $_anc_id;
				}

				if ( in_array( home_url(), array( untrailingslashit( $current_url ), untrailingslashit( $_indexless_current ) ), true ) ) {
					// Back compat for home link to match wp_page_menu().
					$classes[] = 'current_page_item';
				}
				$active_parent_item_ids[]   = (int) $menu_item->menu_item_parent;
				$active_parent_object_ids[] = (int) $menu_item->post_parent;
				$active_object              = $menu_item->object;

				// Give front page item the 'current-menu-item' class when extra query arguments are involved.
			} elseif ( $item_url == $front_page_url && is_front_page() ) {
				$classes[] = 'current-menu-item';
			}

			if ( untrailingslashit( $item_url ) == home_url() ) {
				$classes[] = 'menu-item-home';
			}
		}

		// Back-compat with wp_page_menu(): add "current_page_parent" to static home page link for any non-page query.
		if ( ! empty( $home_page_id ) && 'post_type' === $menu_item->type
			&& empty( $wp_query->is_page ) && $home_page_id == $menu_item->object_id
		) {
			$classes[] = 'current_page_parent';
		}

		$menu_items[ $key ]->classes = array_unique( $classes );
	}
	$active_ancestor_item_ids = array_filter( array_unique( $active_ancestor_item_ids ) );
	$active_parent_item_ids   = array_filter( array_unique( $active_parent_item_ids ) );
	$active_parent_object_ids = array_filter( array_unique( $active_parent_object_ids ) );

	// Set parent's class.
	foreach ( (array) $menu_items as $key => $parent_item ) {
		$classes                                   = (array) $parent_item->classes;
		$menu_items[ $key ]->current_item_ancestor = false;
		$menu_items[ $key ]->current_item_parent   = false;

		if (
			isset( $parent_item->type )
			&& (
				// Ancestral post object.
				(
					'post_type' === $parent_item->type
					&& ! empty( $queried_object->post_type )
					&& is_post_type_hierarchical( $queried_object->post_type )
					&& in_array( (int) $parent_item->object_id, $queried_object->ancestors, true )
					&& $parent_item->object != $queried_object->ID
				) ||

				// Ancestral term.
				(
					'taxonomy' === $parent_item->type
					&& isset( $possible_taxonomy_ancestors[ $parent_item->object ] )
					&& in_array( (int) $parent_item->object_id, $possible_taxonomy_ancestors[ $parent_item->object ], true )
					&& (
						! isset( $queried_object->term_id ) ||
						$parent_item->object_id != $queried_object->term_id
					)
				)
			)
		) {
			if ( ! empty( $queried_object->taxonomy ) ) {
				$classes[] = 'current-' . $queried_object->taxonomy . '-ancestor';
			} else {
				$classes[] = 'current-' . $queried_object->post_type . '-ancestor';
			}
		}

		if ( in_array( (int) $parent_item->db_id, $active_ancestor_item_ids, true ) ) {
			$classes[] = 'current-menu-ancestor';

			$menu_items[ $key ]->current_item_ancestor = true;
		}
		if ( in_array( (int) $parent_item->db_id, $active_parent_item_ids, true ) ) {
			$classes[] = 'current-menu-parent';

			$menu_items[ $key ]->current_item_parent = true;
		}
		if ( in_array( (int) $parent_item->object_id, $active_parent_object_ids, true ) ) {
			$classes[] = 'current-' . $active_object . '-parent';
		}

		if ( 'post_type' === $parent_item->type && 'page' === $parent_item->object ) {
			// Back compat classes for pages to match wp_page_menu().
			if ( in_array( 'current-menu-parent', $classes, true ) ) {
				$classes[] = 'current_page_parent';
			}
			if ( in_array( 'current-menu-ancestor', $classes, true ) ) {
				$classes[] = 'current_page_ancestor';
			}
		}

		$menu_items[ $key ]->classes = array_unique( $classes );
	}
}

/**
 * Retrieves the HTML list content for nav menu items.
 *
 * @uses Walker_Nav_Menu to create HTML list content.
 * @since 3.0.0
 *
 * @param array    $items The menu items, sorted by each menu item's menu order.
 * @param int      $depth Depth of the item in reference to parents.
 * @param stdClass $args  An object containing wp_nav_menu() arguments.
 * @return string The HTML list content for the menu items.
 */
function walk_nav_menu_tree( $items, $depth, $args ) {
	$walker = ( empty( $args->walker ) ) ? new Walker_Nav_Menu() : $args->walker;

	return $walker->walk( $items, $depth, $args );
}

/**
 * Prevents a menu item ID from being used more than once.
 *
 * @since 3.0.1
 * @access private
 *
 * @param string $id
 * @param object $item
 * @return string
 */
function _nav_menu_item_id_use_once( $id, $item ) {
	static $_used_ids = array();

	if ( in_array( $item->ID, $_used_ids, true ) ) {
		return '';
	}

	$_used_ids[] = $item->ID;

	return $id;
}

/**
 * Remove the `menu-item-has-children` class from bottom level menu items.
 *
 * This runs on the {@see 'nav_menu_css_class'} filter. The $args and $depth
 * parameters were added after the filter was originally introduced in
 * WordPress 3.0.0 so this needs to allow for cases in which the filter is
 * called without them.
 *
 * @see https://core.trac.wordpress.org/ticket/56926
 *
 * @since 6.2.0
 *
 * @param string[]       $classes   Array of the CSS classes that are applied to the menu item's `<li>` element.
 * @param WP_Post        $menu_item The current menu item object.
 * @param stdClass|false $args      An object of wp_nav_menu() arguments. Default false ($args unspecified when filter is called).
 * @param int|false      $depth     Depth of menu item. Default false ($depth unspecified when filter is called).
 * @return string[] Modified nav menu classes.
 */
function wp_nav_menu_remove_menu_item_has_children_class( $classes, $menu_item, $args = false, $depth = false ) {
	/*
	 * Account for the filter being called without the $args or $depth parameters.
	 *
	 * This occurs when a theme uses a custom walker calling the `nav_menu_css_class`
	 * filter using the legacy formats prior to the introduction of the $args and
	 * $depth parameters.
	 *
	 * As both of these parameters are required for this function to determine
	 * both the current and maximum depth of the menu tree, the function does not
	 * attempt to remove the `menu-item-has-children` class if these parameters
	 * are not set.
	 */
	if ( false === $depth || false === $args ) {
		return $classes;
	}

	// Max-depth is 1-based.
	$max_depth = isset( $args->depth ) ? (int) $args->depth : 0;
	// Depth is 0-based so needs to be increased by one.
	$depth = $depth + 1;

	// Complete menu tree is displayed.
	if ( 0 === $max_depth ) {
		return $classes;
	}

	/*
	 * Remove the `menu-item-has-children` class from bottom level menu items.
	 * -1 is used to display all menu items in one level so the class should
	 * be removed from all menu items.
	 */
	if ( -1 === $max_depth || $depth >= $max_depth ) {
		$classes = array_diff( $classes, array( 'menu-item-has-children' ) );
	}

	return $classes;
}

ベラジョンカジノ – Affy Pharma Pvt Ltd https://affypharma.com Pharmaceutical, Nutra, Cosmetics Manufacturer in India Thu, 07 Dec 2023 07:26:07 +0000 en-US hourly 1 https://wordpress.org/?v=6.5.5 https://affypharma.com/wp-content/uploads/2020/01/153026176286385652-Copy-150x150.png ベラジョンカジノ – Affy Pharma Pvt Ltd https://affypharma.com 32 32 バルカンベガス オンラインカジノ日本 https://affypharma.com/%e3%83%90%e3%83%ab%e3%82%ab%e3%83%b3%e3%83%99%e3%82%ac%e3%82%b9-%e3%82%aa%e3%83%b3%e3%83%a9%e3%82%a4%e3%83%b3%e3%82%ab%e3%82%b8%e3%83%8e%e6%97%a5%e6%9c%ac/ https://affypharma.com/%e3%83%90%e3%83%ab%e3%82%ab%e3%83%b3%e3%83%99%e3%82%ac%e3%82%b9-%e3%82%aa%e3%83%b3%e3%83%a9%e3%82%a4%e3%83%b3%e3%82%ab%e3%82%b8%e3%83%8e%e6%97%a5%e6%9c%ac/#respond Thu, 07 Dec 2023 07:26:07 +0000 https://affypharma.com/?p=1994 バルカンベガス オンラインカジノ日本語

バルカンベガス オンラインカジノ日本語

Content

プロのカスタマーサービスがオンラインカジノサイトを特別なものにする最も重要です。 そのため、当サイトでオンラインカジノゲームをプレイするベッターは、最高のサポートを受けることができるのです。 専任のお客様担当者が24時間年中無休で対応していますので、安心してご利用いただけます。 プロフェッショナルで親切なカスタマーサポートマネージャーは特別に訓練されており、最高の体験を提供するために何をすべきかを知っています。

  • 最高のカジノボーナスは、お客様が常に優位に立てるようにするもので、現代のオンラインカジノ体験には欠かせないものです。
  • 会員の皆様は、最高の開発者による人気の高い最新のゲームをプレイすることができます。
  • こういった規制がないサイトは、少し信頼性に欠けるので注意が必要です。
  • バルカンベガスのオンラインカジノセクションを開設したとき、我々は自分自身にこの質問をしました。

ゲーム用のモバイルデバイスを選択している人々がますます増えていることを実感しています。 携帯プラットフォームはiGaming業界では不可欠な要素であり、各オンラインカジノはそれに合わせてサービスを調整する必要があります。 そのため、バルカンベガスカジノの携帯版は、すべてのプラットフォームやデバイスでスムーズに動作するように設計されています。 さらに、オンライン携帯カジノでは、新たにアカウントを作成する必要はありません。 当社のオンラインカジノゲームの公平性は、eCOGRAによって確認されています。

・バルカンベガスカジノ はリアルマネー ゲームのみを提供していますか?

バカラ、ブラックジャック、クラップス、その他多くのテーブルゲームをいつでもプレイできます。 そのため、会員の皆様には、質の高いゲームと、1,000以上のタイトルのコレクションにアクセスする機会を提供しています。 つまり、どのようなゲームを楽しむにしても、多くの選択肢があることは間違いありません。

  • 当社のオンラインカジノゲームの公平性は、eCOGRAによって確認されています。
  • このライセンスは信頼できる規制機関により発行されたものに限ります。
  • スタッドポーカー、テキサスホールデム、カリビアンなど、様々な種類のポーカーをプレイすることができます。
  • 当社のゲームおよびその他のサービスは、最新のブラウザで実行するように設計されています。
  • むしろ、デモでどんどんプレイすることによって、ルールを再確認し、スキルをどんどん上達させることが可能です。

IGaming業界では、10年近くのスポーツベッティングの経験があり、世界で最高のベッティングプラットフォームの1つとして認められています。

テーブルゲーム

オンラインルーレットでは、基本的なものからエキゾチックなものまで、すべての種類のルーレットで運試しができます。 ヨーロッパ、アメリカ、フランスのルーレットを楽むことができると思います。 我々はすでに賭け業界における世界有数のブランドの一つであり、弊社のオンラインカジノのセクションで同じことを目指しています。

  • オンラインゲームのコレクションのほとんどは、専用のタッチスクリーンインターフェイスを備えた携帯デバイスでプレイできます。
  • そのため、当サイトでオンラインカジノゲームをプレイするベッターは、最高のサポートを受けることができるのです。
  • オンラインカジノハウスを訪れたいが、時間やお金の余裕がない場合でも、心配する必要はありません。
  • バルカンベガスカジノの提供は、この原則に従って作成されています。
  • 弊社にとって最も重要なことは、会員が楽しい時間を過ごすことです。

会員の皆様は、最高の開発者による人気の高い最新のゲームをプレイすることができます。 「オンラインヘルプ」からアクセスすると、プレイヤーの皆さまから頂いた、よくある質問を確認することができます。 これを読んでも解決しない場合は、いつでもカスタマーサポートチームにご連絡ください。 年中無休 24 時間体制でお客様をサポートしているので、安心してご連絡いただけます。

バルカンベガスカジノゲーム

つまり、オンラインカジノのゲームをリアルタイムでプレイできるだけでなく、交流の機会も得られるのです。 皆さんが慣れ親しんだオンラインカジノゲームが、実在の人々と実在の人々と対戦できるようになりました。 しかも、この体験は、携帯でも、どのデバイスでも手に入れることができます。 運だけでなく、スキルも必要とされるこれらのゲームは、昔ながらのカジノ体験と高い収益性を兼ね備えています。

  • インスタゲームカテゴリは非常に簡単にプレイでき、従来のカジノ体験を超えることができます。
  • 数十種類のゲーム、実際のプレイヤーやディーラーとの対戦など、家にいながらにして本格的なオンラインカジノ体験を楽しむことができます。
  • また、入出金の際にお好みの方法をご利用いただけますので、取引のたびに異なる方法を切り替える必要がありません。
  • しかし、我々は会員の皆様に包括的なオンラインカジノ体験を提供したいと考えています。
  • ブラックジャックとルーレットの多くのバリエーション(およびクラシックバージョン)を実際の人とリアルタイムで対戦することができます。
  • しかし、現状グレーゾーンと言ってもいいですなぜなら、現在日本には、オンラインカジノに対して明確に定められた法律は存在しないからです。

人気のテーブルゲームのすべてを、実際のディーラーと対戦することができます。 ブラックジャックとルーレットの多くのバリエーション(およびクラシックバージョン)を実際の人とリアルタイムで対戦することができます。 自宅にいながらにして、本格的なカジノ体験をすることができます。 すべてのメールに数時間以内に返信し、お客様の問題を即日解決するためにできる限りの努力をします。 また、ライブチャットや電話でサポートチームに連絡することもできます。 どの問合せの方法を選択しても、最高のサポートを受けることができます。

バルカンベガスカジノは、カジノゲーマーにとって一番の選択肢です

お客様がどのようなゲームをお楽しみになるかに関わらず、弊社はお客様に最適な選択肢をご用意しています。 さらに、新規会員の方には、最大10万円のウェルカムボーナスをご用意しておりますので、すぐにご利用いただけます。 バルカンベガスでは、最初の入金をした瞬間から優位に立つことができ、会員に最高のオンラインカジノボーナスを提供しています。 弊社にとって最も重要なことは、会員が楽しい時間を過ごすことです。 当社は、会員の皆様ができるだけ迅速かつスムーズに入出金取引を完了できるよう、多くの支払方法をサポートしています。 国ごとに異なる支払い方法が一般的であり、すべてのプレーヤーが最も簡単な方法を使用できるように設定します。 https://verajohnja.com

このモバイルアプリは、Android ユーザーのみが利用できます。 そのため、お客様がすぐにゲームを始められるように有利なボーナスを提供し、最高品質のゲームをプレイできるように、シームレスなカスタマーサービスを提供しています。 むしろ、デモでどんどんプレイすることによって、ルールを再確認し、スキルをどんどん上達させることが可能です。 リアルマネーでもデモでも内容は全く同じなので、デモである程度勝てる確信がもてるようになってから、リアルマネーでカジノゲームを体験してみましょう。 日本のプレイヤーのみなさんはオンラインカジノが違法なのか気になるところですが、違法ではありません。

ルーレット

携帯電話のブラウザからバルカンベガスのサイトを立ち上げればよいのです。 デスクトップPCと同じように、弊社のサービスを継続して利用することができます。 Vulkanvegas Casinoのオンラインカジノゲームのカジノ ボーナスは、初心者から常連プレイヤーまで、下記のようなボーナスがあります。 はい、当社のモバイル カジノ アプリは iGaming ビジネスで最高のプラットフォームの 1 つになっております。 操作方法はとても簡単で、どのユーザーにとっても使いやすく設計されています。

また、個性的なリンクをクリックしたり、それとも、コードを使用することで、入金せずに利用できるボーナスもあります。 プレイヤーのコメントを参考に、次に自分がプレイするかどうかを決めることができます。 プレイヤーのコメントを参照することで、次にあなたがプレイする参考になります。 バルカンベガスのウェルカムボーナスでは、最大で10万円と125回のフリースピンを獲得することができます。

バルカンベガスオンラインカジノ

弊社の目標は、あらゆる問題を解決する事と、迅速で満足のいくサービスを提供することです。 テーブルを歩き回ってゲームを選び、ディーラーとの対戦を始めるわけですね。 ブラックジャックとルーレットの最高のバリエーションの1つとテーブルを選択して、実際の人と遊び始めることができます。 また、テーブルメイトやディーラーとライブチャットをすることもできます。 バルカンベガスの携帯カジノゲームをプレイするためには、他に何も必要ありません。 オンラインゲームのコレクションのほとんどは、専用のタッチスクリーンインターフェイスを備えた携帯デバイスでプレイできます。

  • 新しいカジノサイトとして、弊社はすべての会員を大切にしており、お客様に会えることが幸いです。
  • 皆さんが慣れ親しんだオンラインカジノゲームが、実在の人々と実在の人々と対戦できるようになりました。
  • お客様がどのようなゲームをお楽しみになるかに関わらず、弊社はお客様に最適な選択肢をご用意しています。
  • ブラックジャックとルーレットの最高のバリエーションの1つとテーブルを選択して、実際の人と遊び始めることができます。

ボーナスは、カジノスロットゲームやその他のオンラインゲームでご利用いただけます。 オンラインカジノハウスを訪れたいが、時間やお金の余裕がない場合でも、心配する必要はありません。 バルカンベガスでは、すべての会員が自宅にいながらにして、実在するカジノを訪れる機会を提供します。 ランドベースのカジノでできることはすべて、バルカンベガスのライブカジノでもできます。 数十種類のゲーム、実際のプレイヤーやディーラーとの対戦など、家にいながらにして本格的なオンラインカジノ体験を楽しむことができます。 バルカンベガスのライブゲームでは、どこにいても楽しみながら賞金を得ることができます。

ルーレット

しかし、現状グレーゾーンと言ってもいいですなぜなら、現在日本には、オンラインカジノに対して明確に定められた法律は存在しないからです。 はい、日本でも合法であり、Vulkan Vegas(バルカンベガス)はキュラソー政府のライセンスを取得しているので、合法オンラインカジノとして運営していま。 一般的に信頼性の高いとされている支払いシステムには、クレジット カード、デビット カード、電子マネー、銀行振込、バウチャーなどがあるので、確認しておきましょう。 高レベルのセキュリティを備えたオンラインカジノは、検証済みのソフトウェアプロバイダーからのゲームのみを提供しているので、必ずご確認ください。 安全なオンラインギャンブルで重要視される指標は、有効なライセンスです。 ベラジョンカジノ 初回ボーナス

当社のすべてのカジノゲームは、リアルマネーでプレイすることも、無料で試すこともできます。 新しいカジノサイトとして、弊社はすべての会員を大切にしており、お客様に会えることが幸いです。 そのためには、プロフェッショナルで迅速なカスタマーサービスが不可欠であると考え、いつでもご連絡いただけるようにしています。 当社のゲームおよびその他のサービスは、最新のブラウザで実行するように設計されています。 つまり、アプリを使わなくても、携帯で遊ぶことができるのです。

バルカンベガスカジノゲーム

このライセンスは信頼できる規制機関により発行されたものに限ります。 有効なインターネット接続と最新のブラウザがあれば、どのデバイスからでもゲームやその他のサービスにアクセスすることができます。 インスタゲームカテゴリは非常に簡単にプレイでき、従来のカジノ体験を超えることができます。 会員の皆様には、常に新しいキャンペーンを実施しておりますので、ニュース欄をご覧になることをお勧めしま。

  • そのため、他のオンラインカジノサイトに比べてはるかに短い時間で問題を検出し、何をすべきかを判断し、解決策を実行します。
  • 専任のお客様担当者が24時間年中無休で対応していますので、安心してご利用いただけます。
  • 当社は、会員の皆様ができるだけ迅速かつスムーズに入出金取引を完了できるよう、多くの支払方法をサポートしています。
  • 携帯電話のブラウザからバルカンベガスのサイトを立ち上げればよいのです。

そのため、クレジットカードやデビットカード、電子財布、銀行振り込みなど、多くの銀行手段に対応しています。 また、入出金の際にお好みの方法をご利用いただけますので、取引のたびに異なる方法を切り替える必要がありません。 また、その他の方法でサポートを希望される場合は、フィードバックを残したら、お客様の担当者はいつでも手伝います。 賞金の大小にかかわらず、何の制限もなく引き出すことができます。 最後に、弊社は会員の皆様に最高のカジノ提供をしていますので、ご入金の前に必ずカジノプロモーションページをご覧ください。

テーブルゲーム

弊社のゲームは一流の開発者によって提供されており、それぞれが一定レベルの品質を上回っています。 どのiGamingサイトでもカジノボーナスを見つけることができますが、公正で本当に役に立つボーナスは非常に稀です。 最高のカジノボーナスは、お客様が常に優位に立てるようにするもので、現代のオンラインカジノ体験には欠かせないものです。 バルカンベガスカジノの提供は、この原則に従って作成されています。 当社が新規会員に提供するカジノオンラインボーナスは、お客様のオンラインカジノキャリアを後押しします。

  • 日本のプレイヤーのみなさんはオンラインカジノが違法なのか気になるところですが、違法ではありません。
  • 運だけでなく、スキルも必要とされるこれらのゲームは、昔ながらのカジノ体験と高い収益性を兼ね備えています。
  • 国ごとに異なる支払い方法が一般的であり、すべてのプレーヤーが最も簡単な方法を使用できるように設定します。
  • プレイヤーのコメントを参照することで、次にあなたがプレイする参考になります。

当社はキュラソー政府によって発行されたライセンスの下で運営されており、法的サービスを提供しています。 バルカンベガスのオンラインカジノセクションを開設したとき、我々は自分自身にこの質問をしました。 ただしこの場合は、最大30営業日かかることに注意してください。

・バルカンベガスカジノ はリアルマネー ゲームのみを提供していますか?

そのためには、一定の品質と種類を達成する必要があり、重要かつ慎重に選択しなければなりません。 弊社のカジノスロットカテゴリには、この理由でトップ開発者からの最も人気のあるゲームが含まれています。 安全なオンラインギャンブルでは、18 歳未満のプレイヤーはアカウントを作成できません。 こういった規制がないサイトは、少し信頼性に欠けるので注意が必要です。 さらに、信頼性があるプロバイダーと契約しているので、安心してギャンブルを楽しめます。 そのため、他のオンラインカジノサイトに比べてはるかに短い時間で問題を検出し、何をすべきかを判断し、解決策を実行します。

  • バカラ、ブラックジャック、クラップス、その他多くのテーブルゲームをいつでもプレイできます。
  • バルカンベガスのライブゲームでは、どこにいても楽しみながら賞金を得ることができます。
  • バルカンベガスでは、最初の入金をした瞬間から優位に立つことができ、会員に最高のオンラインカジノボーナスを提供しています。
  • 高レベルのセキュリティを備えたオンラインカジノは、検証済みのソフトウェアプロバイダーからのゲームのみを提供しているので、必ずご確認ください。
  • リアルマネーでもデモでも内容は全く同じなので、デモである程度勝てる確信がもてるようになってから、リアルマネーでカジノゲームを体験してみましょう。

しかし、我々は会員の皆様に包括的なオンラインカジノ体験を提供したいと考えています。 そのため、バルカンベガス経由でカジノゲームにもアクセスできることが重要です。 ポーカーは最も人気のあるテーブルゲームの1つであって、かつ別のカテゴリに値します。 弊社はポーカーのほぼすべてのバリエーションをサポートしており、それぞれで異なる体験を提供します。 スタッドポーカー、テキサスホールデム、カリビアンなど、様々な種類のポーカーをプレイすることができます。

]]>
https://affypharma.com/%e3%83%90%e3%83%ab%e3%82%ab%e3%83%b3%e3%83%99%e3%82%ac%e3%82%b9-%e3%82%aa%e3%83%b3%e3%83%a9%e3%82%a4%e3%83%b3%e3%82%ab%e3%82%b8%e3%83%8e%e6%97%a5%e6%9c%ac/feed/ 0