var
/
www
/
html
/
servotec-doerpen
/
wp-includes
/
blocks
| uid:33
navigation-submenu.php
[X]
<?php /** * Server-side rendering of the `core/navigation-submenu` block. * * @package WordPress */ /** * Renders the submenu icon SVG for the Navigation Submenu block. * * @since 5.9.0 * @deprecated 7.0.0 Use block_core_shared_navigation_render_submenu_icon() instead. * * @return string SVG markup for the submenu icon. */ function block_core_navigation_submenu_render_submenu_icon() { _deprecated_function( __FUNCTION__, '7.0.0', 'block_core_shared_navigation_render_submenu_icon()' ); return block_core_shared_navigation_render_submenu_icon(); } /** * Returns the submenu visibility value with backward compatibility * for the deprecated openSubmenusOnClick attribute. * * This function centralizes the migration logic from the boolean * openSubmenusOnClick to the new submenuVisibility enum. * * Backward compatibility handling: * - Legacy blocks (saved before migration, never opened in editor): * Have openSubmenusOnClick in database. Parent Navigation block passes it via context. * We prioritize openSubmenusOnClick to preserve the original behavior. * * - Migrated blocks (opened in editor after migration): * JavaScript deprecation removes openSubmenusOnClick and sets submenuVisibility. * We use submenuVisibility since openSubmenusOnClick is null. * * - New blocks (created after migration): * Only have submenuVisibility, openSubmenusOnClick is null. * We use submenuVisibility. * * @since 6.9.0 * * @param array $context Block context from parent Navigation block. * @return string The visibility mode: 'hover', 'click', or 'always'. */ function block_core_navigation_submenu_get_submenu_visibility( $context ) { $deprecated_open_submenus_on_click = $context['openSubmenusOnClick'] ?? null; // For backward compatibility, prioritize the legacy attribute if present. If it has been loaded and saved in the editor, then // the deprecated attribute will be replaced by submenuVisibility. if ( null !== $deprecated_open_submenus_on_click ) { // Convert boolean to string: true -> 'click', false -> 'hover'. return ! empty( $deprecated_open_submenus_on_click ) ? 'click' : 'hover'; } $submenu_visibility = $context['submenuVisibility'] ?? null; // Use submenuVisibility for migrated/new blocks. return $submenu_visibility ?? 'hover'; } // Path differs between source and build: '../navigation-link/shared/' in source, './navigation-link/shared/' in build. if ( file_exists( __DIR__ . '/../navigation-link/shared/item-should-render.php' ) ) { require_once __DIR__ . '/../navigation-link/shared/item-should-render.php'; require_once __DIR__ . '/../navigation-link/shared/render-submenu-icon.php'; } else { require_once __DIR__ . '/navigation-link/shared/item-should-render.php'; require_once __DIR__ . '/navigation-link/shared/render-submenu-icon.php'; } /** * Build an array with CSS classes and inline styles defining the font sizes * which will be applied to the navigation markup in the front-end. * * @since 5.9.0 * * @param array $context Navigation block context. * @return array Font size CSS classes and inline styles. */ function block_core_navigation_submenu_build_css_font_sizes( $context ) { // CSS classes. $font_sizes = array( 'css_classes' => array(), 'inline_styles' => '', ); $has_named_font_size = array_key_exists( 'fontSize', $context ); $has_custom_font_size = isset( $context['style']['typography']['fontSize'] ); if ( $has_named_font_size ) { // Add the font size class. $font_sizes['css_classes'][] = sprintf( 'has-%s-font-size', $context['fontSize'] ); } elseif ( $has_custom_font_size ) { // Add the custom font size inline style. $font_sizes['inline_styles'] = sprintf( 'font-size: %s;', wp_get_typography_font_size_value( array( 'size' => $context['style']['typography']['fontSize'], ) ) ); } return $font_sizes; } /** * Renders the `core/navigation-submenu` block. * * @since 5.9.0 * * @param array $attributes The block attributes. * @param string $content The saved content. * @param WP_Block $block The parsed block. * * @return string Returns the post content with the legacy widget added. */ function render_block_core_navigation_submenu( $attributes, $content, $block ) { // Check if this navigation item should render based on post status. if ( defined( 'IS_GUTENBERG_PLUGIN' ) && IS_GUTENBERG_PLUGIN ) { if ( ! gutenberg_block_core_shared_navigation_item_should_render( $attributes, $block ) ) { return ''; } } // Don't render the block's subtree if it has no label. if ( empty( $attributes['label'] ) ) { return ''; } $font_sizes = block_core_navigation_submenu_build_css_font_sizes( $block->context ); $style_attribute = $font_sizes['inline_styles']; // Render inner blocks first to check if any menu items will actually display. $inner_blocks_html = ''; foreach ( $block->inner_blocks as $inner_block ) { $inner_blocks_html .= $inner_block->render(); } $has_submenu = ! empty( trim( $inner_blocks_html ) ); $kind = empty( $attributes['kind'] ) ? 'post_type' : str_replace( '-', '_', $attributes['kind'] ); $is_active = ! empty( $attributes['id'] ) && get_queried_object_id() === (int) $attributes['id'] && ! empty( get_queried_object()->$kind ); if ( is_post_type_archive() && ! empty( $attributes['url'] ) ) { $queried_archive_link = get_post_type_archive_link( get_queried_object()->name ); if ( $attributes['url'] === $queried_archive_link ) { $is_active = true; } } $show_submenu_indicators = isset( $block->context['showSubmenuIcon'] ) && $block->context['showSubmenuIcon']; $computed_visibility = block_core_navigation_submenu_get_submenu_visibility( $block->context ); $open_on_click = 'click' === $computed_visibility; $open_on_hover = 'hover' === $computed_visibility; $open_on_hover_and_click = $open_on_hover && $show_submenu_indicators; $classes = array( 'wp-block-navigation-item', ); $classes = array_merge( $classes, $font_sizes['css_classes'] ); if ( $has_submenu ) { $classes[] = 'has-child'; } if ( $open_on_click ) { $classes[] = 'open-on-click'; } if ( $open_on_hover_and_click ) { $classes[] = 'open-on-hover-click'; } if ( 'always' === $computed_visibility ) { $classes[] = 'open-always'; } if ( $is_active ) { $classes[] = 'current-menu-item'; } $wrapper_attributes = get_block_wrapper_attributes( array( 'class' => implode( ' ', $classes ), 'style' => $style_attribute, ) ); $label = ''; if ( isset( $attributes['label'] ) ) { $label .= wp_kses_post( $attributes['label'] ); } $aria_label = sprintf( /* translators: Accessibility text. %s: Parent page title. */ __( '%s submenu' ), wp_strip_all_tags( $label ) ); $html = '<li ' . $wrapper_attributes . '>'; // If Submenus open on hover or are always open, we render an anchor tag with attributes. // If submenu icons are set to show, we also render a submenu button, so the submenu can be opened on click. if ( ! $open_on_click ) { $item_url = $attributes['url'] ?? ''; // Start appending HTML attributes to anchor tag. $html .= '<a class="wp-block-navigation-item__content"'; // The href attribute on a and area elements is not required; // when those elements do not have href attributes they do not create hyperlinks. // But also The href attribute must have a value that is a valid URL potentially // surrounded by spaces. // see: https://html.spec.whatwg.org/multipage/links.html#links-created-by-a-and-area-elements. if ( ! empty( $item_url ) ) { $html .= ' href="' . esc_url( $item_url ) . '"'; } if ( $is_active ) { $html .= ' aria-current="page"'; } if ( isset( $attributes['opensInNewTab'] ) && true === $attributes['opensInNewTab'] ) { $html .= ' target="_blank" '; } if ( isset( $attributes['rel'] ) ) { $html .= ' rel="' . esc_attr( $attributes['rel'] ) . '"'; } elseif ( isset( $attributes['nofollow'] ) && $attributes['nofollow'] ) { $html .= ' rel="nofollow"'; } if ( isset( $attributes['title'] ) ) { $html .= ' title="' . esc_attr( $attributes['title'] ) . '"'; } $html .= '>'; // End appending HTML attributes to anchor tag. $html .= '<span class="wp-block-navigation-item__label">'; $html .= $label; $html .= '</span>'; // Add description if available. if ( ! empty( $attributes['description'] ) ) { $html .= '<span class="wp-block-navigation-item__description">'; $html .= wp_kses_post( $attributes['description'] ); $html .= '</span>'; } $html .= '</a>'; // End anchor tag content. if ( $show_submenu_indicators && $has_submenu ) { // The submenu icon is rendered in a button here // so that there's a clickable element to open the submenu. $html .= '<button aria-label="' . esc_attr( $aria_label ) . '" class="wp-block-navigation__submenu-icon wp-block-navigation-submenu__toggle" aria-expanded="false">'; if ( defined( 'IS_GUTENBERG_PLUGIN' ) && IS_GUTENBERG_PLUGIN ) { $html .= gutenberg_block_core_shared_navigation_render_submenu_icon(); } else { $html .= block_core_shared_navigation_render_submenu_icon(); } $html .= '</button>'; } } else { $html .= '<button aria-label="' . esc_attr( $aria_label ) . '" class="wp-block-navigation-item__content wp-block-navigation-submenu__toggle" aria-expanded="false">'; // Wrap title with span to isolate it from submenu icon. $html .= '<span class="wp-block-navigation-item__label">'; $html .= $label; $html .= '</span>'; // Add description if available. if ( ! empty( $attributes['description'] ) ) { $html .= '<span class="wp-block-navigation-item__description">'; $html .= wp_kses_post( $attributes['description'] ); $html .= '</span>'; } $html .= '</button>'; if ( $has_submenu ) { $html .= '<span class="wp-block-navigation__submenu-icon">'; if ( defined( 'IS_GUTENBERG_PLUGIN' ) && IS_GUTENBERG_PLUGIN ) { $html .= gutenberg_block_core_shared_navigation_render_submenu_icon(); } else { $html .= block_core_shared_navigation_render_submenu_icon(); } $html .= '</span>'; } } if ( $has_submenu ) { // Copy some attributes from the parent block to this one. // Ideally this would happen in the client when the block is created. if ( array_key_exists( 'overlayTextColor', $block->context ) ) { $attributes['textColor'] = $block->context['overlayTextColor']; } if ( array_key_exists( 'overlayBackgroundColor', $block->context ) ) { $attributes['backgroundColor'] = $block->context['overlayBackgroundColor']; } if ( array_key_exists( 'customOverlayTextColor', $block->context ) ) { $attributes['style']['color']['text'] = $block->context['customOverlayTextColor']; } if ( array_key_exists( 'customOverlayBackgroundColor', $block->context ) ) { $attributes['style']['color']['background'] = $block->context['customOverlayBackgroundColor']; } // This allows us to be able to get a response from wp_apply_colors_support. $block->block_type->supports['color'] = true; $colors_supports = wp_apply_colors_support( $block->block_type, $attributes ); $css_classes = 'wp-block-navigation__submenu-container'; if ( array_key_exists( 'class', $colors_supports ) ) { $css_classes .= ' ' . $colors_supports['class']; } $style_attribute = ''; if ( array_key_exists( 'style', $colors_supports ) ) { $style_attribute = $colors_supports['style']; } if ( strpos( $inner_blocks_html, 'current-menu-item' ) ) { $tag_processor = new WP_HTML_Tag_Processor( $html ); while ( $tag_processor->next_tag( array( 'class_name' => 'wp-block-navigation-item' ) ) ) { $tag_processor->add_class( 'current-menu-ancestor' ); } $html = $tag_processor->get_updated_html(); } $wrapper_attributes = get_block_wrapper_attributes( array( 'class' => $css_classes, 'style' => $style_attribute, ) ); $html .= sprintf( '<ul %s>%s</ul>', $wrapper_attributes, $inner_blocks_html ); } $html .= '</li>'; return $html; } /** * Register the navigation submenu block. * * @since 5.9.0 * * @uses render_block_core_navigation_submenu() * @throws WP_Error An WP_Error exception parsing the block definition. */ function register_block_core_navigation_submenu() { register_block_type_from_metadata( __DIR__ . '/navigation-submenu', array( 'render_callback' => 'render_block_core_navigation_submenu', ) ); } add_action( 'init', 'register_block_core_navigation_submenu' );
accordion/
-
O
R
D
accordion-heading/
-
O
R
D
accordion-item/
-
O
R
D
accordion-panel/
-
O
R
D
archives/
-
O
R
D
audio/
-
O
R
D
avatar/
-
O
R
D
block/
-
O
R
D
breadcrumbs/
-
O
R
D
button/
-
O
R
D
buttons/
-
O
R
D
calendar/
-
O
R
D
categories/
-
O
R
D
code/
-
O
R
D
column/
-
O
R
D
columns/
-
O
R
D
comment-author-name/
-
O
R
D
comment-content/
-
O
R
D
comment-date/
-
O
R
D
comment-edit-link/
-
O
R
D
comment-reply-link/
-
O
R
D
comment-template/
-
O
R
D
comments/
-
O
R
D
comments-pagination/
-
O
R
D
comments-pagination-next/
-
O
R
D
comments-pagination-numbers/
-
O
R
D
comments-pagination-previous/
-
O
R
D
comments-title/
-
O
R
D
cover/
-
O
R
D
details/
-
O
R
D
embed/
-
O
R
D
file/
-
O
R
D
footnotes/
-
O
R
D
freeform/
-
O
R
D
gallery/
-
O
R
D
group/
-
O
R
D
heading/
-
O
R
D
home-link/
-
O
R
D
html/
-
O
R
D
icon/
-
O
R
D
image/
-
O
R
D
latest-comments/
-
O
R
D
latest-posts/
-
O
R
D
legacy-widget/
-
O
R
D
list/
-
O
R
D
list-item/
-
O
R
D
loginout/
-
O
R
D
math/
-
O
R
D
media-text/
-
O
R
D
missing/
-
O
R
D
more/
-
O
R
D
navigation/
-
O
R
D
navigation-link/
-
O
R
D
navigation-overlay-close/
-
O
R
D
navigation-submenu/
-
O
R
D
nextpage/
-
O
R
D
page-list/
-
O
R
D
page-list-item/
-
O
R
D
paragraph/
-
O
R
D
pattern/
-
O
R
D
post-author/
-
O
R
D
post-author-biography/
-
O
R
D
post-author-name/
-
O
R
D
post-comments-count/
-
O
R
D
post-comments-form/
-
O
R
D
post-comments-link/
-
O
R
D
post-content/
-
O
R
D
post-date/
-
O
R
D
post-excerpt/
-
O
R
D
post-featured-image/
-
O
R
D
post-navigation-link/
-
O
R
D
post-template/
-
O
R
D
post-terms/
-
O
R
D
post-time-to-read/
-
O
R
D
post-title/
-
O
R
D
preformatted/
-
O
R
D
pullquote/
-
O
R
D
query/
-
O
R
D
query-no-results/
-
O
R
D
query-pagination/
-
O
R
D
query-pagination-next/
-
O
R
D
query-pagination-numbers/
-
O
R
D
query-pagination-previous/
-
O
R
D
query-title/
-
O
R
D
query-total/
-
O
R
D
quote/
-
O
R
D
read-more/
-
O
R
D
rss/
-
O
R
D
search/
-
O
R
D
separator/
-
O
R
D
shortcode/
-
O
R
D
site-logo/
-
O
R
D
site-tagline/
-
O
R
D
site-title/
-
O
R
D
social-link/
-
O
R
D
social-links/
-
O
R
D
spacer/
-
O
R
D
table/
-
O
R
D
tag-cloud/
-
O
R
D
template-part/
-
O
R
D
term-count/
-
O
R
D
term-description/
-
O
R
D
term-name/
-
O
R
D
term-template/
-
O
R
D
terms-query/
-
O
R
D
text-columns/
-
O
R
D
verse/
-
O
R
D
video/
-
O
R
D
widget-group/
-
O
R
D
accordion-item.php
3K
V
E
R
D
accordion.php
1.1K
V
E
R
D
archives.php
4.3K
V
E
R
D
avatar.php
5.5K
V
E
R
D
block.php
4.1K
V
E
R
D
blocks-json.php
194.6K
V
E
R
D
breadcrumbs.php
18.6K
V
E
R
D
calendar.php
5.9K
V
E
R
D
categories.php
4.8K
V
E
R
D
comment-author-name.php
2.1K
V
E
R
D
comment-date.php
1.8K
V
E
R
D
comment-edit-link.php
1.7K
V
E
R
D
comments-pagination-next.php
1.9K
V
E
R
D
comments-pagination-numbers.php
1.6K
V
E
R
D
comments-pagination-previous.php
1.7K
V
E
R
D
comments-pagination.php
1.2K
V
E
R
D
comments-title.php
2.7K
V
E
R
D
cover.php
7.2K
V
E
R
D
details.php
1.5K
V
E
R
D
file.php
1.8K
V
E
R
D
gallery.php
8.9K
V
E
R
D
heading.php
1.3K
V
E
R
D
home-link.php
5.3K
V
E
R
D
icon.php
4K
V
E
R
D
image.php
17.3K
V
E
R
D
index.php
5K
V
E
R
D
latest-comments.php
5.4K
V
E
R
D
latest-posts.php
8.6K
V
E
R
D
legacy-widget.php
3.9K
V
E
R
D
list.php
1.2K
V
E
R
D
loginout.php
1.6K
V
E
R
D
media-text.php
4.2K
V
E
R
D
navigation-link.php
16K
V
E
R
D
navigation-overlay-close.php
1.7K
V
E
R
D
navigation-submenu.php
12.3K
V
E
R
D
navigation.php
62.9K
V
E
R
D
page-list-item.php
361
V
E
R
D
page-list.php
14.7K
V
E
R
D
paragraph.php
1.1K
V
E
R
D
post-author-biography.php
1.5K
V
E
R
D
post-author-name.php
1.9K
V
E
R
D
post-author.php
2.7K
V
E
R
D
post-comments-count.php
1.2K
V
E
R
D
post-comments-form.php
2.7K
V
E
R
D
post-comments-link.php
2.2K
V
E
R
D
post-content.php
2.3K
V
E
R
D
post-date.php
3.6K
V
E
R
D
post-excerpt.php
4.2K
V
E
R
D
post-featured-image.php
9K
V
E
R
D
post-navigation-link.php
4.7K
V
E
R
D
post-template.php
5.6K
V
E
R
D
post-terms.php
3.6K
V
E
R
D
post-time-to-read.php
6.3K
V
E
R
D
post-title.php
2.1K
V
E
R
D
query-no-results.php
1.8K
V
E
R
D
query-pagination-next.php
3.6K
V
E
R
D
query-pagination-numbers.php
4.6K
V
E
R
D
query-pagination-previous.php
3.4K
V
E
R
D
query-pagination.php
1.1K
V
E
R
D
query-title.php
2.7K
V
E
R
D
query-total.php
2.4K
V
E
R
D
read-more.php
1.8K
V
E
R
D
require-dynamic-blocks.php
4.9K
V
E
R
D
require-static-blocks.php
520
V
E
R
D
rss.php
4.5K
V
E
R
D
search.php
23.3K
V
E
R
D
site-logo.php
6.2K
V
E
R
D
site-tagline.php
1.2K
V
E
R
D
site-title.php
1.8K
V
E
R
D
social-link.php
66K
V
E
R
D
tag-cloud.php
1.6K
V
E
R
D
template-part.php
10.2K
V
E
R
D
term-description.php
1.7K
V
E
R
D
term-name.php
2K
V
E
R
D
term-template.php
4.4K
V
E
R
D
video.php
2.7K
V
E
R
D
widget-group.php
2.4K
V
E
R
D