Server: appserver-7f0f8755-nginx-15961cad18524ec5a9db05f2a6a7e440
Current directory: /code/wp-includes/blocks
Software: nginx/1.27.5
Shell Command
Create a new file
Upload file
File: navigation-link.php
array(), 'inline_styles' => '', ); // Text color. $named_text_color = null; $custom_text_color = null; if ( $is_sub_menu && array_key_exists( 'customOverlayTextColor', $context ) ) { $custom_text_color = $context['customOverlayTextColor']; } elseif ( $is_sub_menu && array_key_exists( 'overlayTextColor', $context ) ) { $named_text_color = $context['overlayTextColor']; } elseif ( array_key_exists( 'customTextColor', $context ) ) { $custom_text_color = $context['customTextColor']; } elseif ( array_key_exists( 'textColor', $context ) ) { $named_text_color = $context['textColor']; } elseif ( isset( $context['style']['color']['text'] ) ) { $custom_text_color = $context['style']['color']['text']; } // If has text color. if ( ! is_null( $named_text_color ) ) { // Add the color class. array_push( $colors['css_classes'], 'has-text-color', sprintf( 'has-%s-color', $named_text_color ) ); } elseif ( ! is_null( $custom_text_color ) ) { // Add the custom color inline style. $colors['css_classes'][] = 'has-text-color'; $colors['inline_styles'] .= sprintf( 'color: %s;', $custom_text_color ); } // Background color. $named_background_color = null; $custom_background_color = null; if ( $is_sub_menu && array_key_exists( 'customOverlayBackgroundColor', $context ) ) { $custom_background_color = $context['customOverlayBackgroundColor']; } elseif ( $is_sub_menu && array_key_exists( 'overlayBackgroundColor', $context ) ) { $named_background_color = $context['overlayBackgroundColor']; } elseif ( array_key_exists( 'customBackgroundColor', $context ) ) { $custom_background_color = $context['customBackgroundColor']; } elseif ( array_key_exists( 'backgroundColor', $context ) ) { $named_background_color = $context['backgroundColor']; } elseif ( isset( $context['style']['color']['background'] ) ) { $custom_background_color = $context['style']['color']['background']; } // If has background color. if ( ! is_null( $named_background_color ) ) { // Add the background-color class. array_push( $colors['css_classes'], 'has-background', sprintf( 'has-%s-background-color', $named_background_color ) ); } elseif ( ! is_null( $custom_background_color ) ) { // Add the custom background-color inline style. $colors['css_classes'][] = 'has-background'; $colors['inline_styles'] .= sprintf( 'background-color: %s;', $custom_background_color ); } return $colors; } /** * 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_link_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; } /** * Returns the top-level submenu SVG chevron icon. * * @since 5.9.0 * * @return string */ function block_core_navigation_link_render_submenu_icon() { return '
'; } /** * Decodes a url if it's encoded, returning the same url if not. * * @since 6.2.0 * * @param string $url The url to decode. * * @return string $url Returns the decoded url. */ function block_core_navigation_link_maybe_urldecode( $url ) { $is_url_encoded = false; $query = parse_url( $url, PHP_URL_QUERY ); $query_params = wp_parse_args( $query ); foreach ( $query_params as $query_param ) { $can_query_param_be_encoded = is_string( $query_param ) && ! empty( $query_param ); if ( ! $can_query_param_be_encoded ) { continue; } if ( rawurldecode( $query_param ) !== $query_param ) { $is_url_encoded = true; break; } } if ( $is_url_encoded ) { return rawurldecode( $url ); } return $url; } /** * Renders the `core/navigation-link` 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_link( $attributes, $content, $block ) { $navigation_link_has_id = isset( $attributes['id'] ) && is_numeric( $attributes['id'] ); $is_post_type = isset( $attributes['kind'] ) && 'post-type' === $attributes['kind']; $is_post_type = $is_post_type || isset( $attributes['type'] ) && ( 'post' === $attributes['type'] || 'page' === $attributes['type'] ); // Don't render the block's subtree if it is a draft or if the ID does not exist. if ( $is_post_type && $navigation_link_has_id ) { $post = get_post( $attributes['id'] ); if ( ! $post || 'publish' !== $post->post_status ) { return ''; } } // Don't render the block's subtree if it has no label. if ( empty( $attributes['label'] ) ) { return ''; } $font_sizes = block_core_navigation_link_build_css_font_sizes( $block->context ); $classes = array_merge( $font_sizes['css_classes'] ); $style_attribute = $font_sizes['inline_styles']; $css_classes = trim( implode( ' ', $classes ) ); $has_submenu = count( $block->inner_blocks ) > 0; $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() ) { $queried_archive_link = get_post_type_archive_link( get_queried_object()->name ); if ( $attributes['url'] === $queried_archive_link ) { $is_active = true; } } $wrapper_attributes = get_block_wrapper_attributes( array( 'class' => $css_classes . ' wp-block-navigation-item' . ( $has_submenu ? ' has-child' : '' ) . ( $is_active ? ' current-menu-item' : '' ), 'style' => $style_attribute, ) ); $html = '
' . '
'; if ( isset( $attributes['label'] ) ) { $html .= wp_kses_post( $attributes['label'] ); } $html .= ''; // Add description if available. if ( ! empty( $attributes['description'] ) ) { $html .= '
'; $html .= wp_kses_post( $attributes['description'] ); $html .= '
'; } $html .= '
'; // End anchor tag content. if ( isset( $block->context['showSubmenuIcon'] ) && $block->context['showSubmenuIcon'] && $has_submenu ) { // The submenu icon can be hidden by a CSS rule on the Navigation Block. $html .= '
' . block_core_navigation_link_render_submenu_icon() . '
'; } if ( $has_submenu ) { $inner_blocks_html = ''; foreach ( $block->inner_blocks as $inner_block ) { $inner_blocks_html .= $inner_block->render(); } $html .= sprintf( '
%s
', $inner_blocks_html ); } $html .= '
'; return $html; } /** * Returns a navigation link variation * * @since 5.9.0 * * @param WP_Taxonomy|WP_Post_Type $entity post type or taxonomy entity. * @param string $kind string of value 'taxonomy' or 'post-type'. * * @return array */ function build_variation_for_navigation_link( $entity, $kind ) { $title = ''; $description = ''; if ( property_exists( $entity->labels, 'item_link' ) ) { $title = $entity->labels->item_link; } if ( property_exists( $entity->labels, 'item_link_description' ) ) { $description = $entity->labels->item_link_description; } $variation = array( 'name' => $entity->name, 'title' => $title, 'description' => $description, 'attributes' => array( 'type' => $entity->name, 'kind' => $kind, ), ); // Tweak some value for the variations. $variation_overrides = array( 'post_tag' => array( 'name' => 'tag', 'attributes' => array( 'type' => 'tag', 'kind' => $kind, ), ), 'post_format' => array( // The item_link and item_link_description for post formats is the // same as for tags, so need to be overridden. 'title' => __( 'Post Format Link' ), 'description' => __( 'A link to a post format' ), 'attributes' => array( 'type' => 'post_format', 'kind' => $kind, ), ), ); if ( array_key_exists( $entity->name, $variation_overrides ) ) { $variation = array_merge( $variation, $variation_overrides[ $entity->name ] ); } return $variation; } /** * Filters the registered variations for a block type. * Returns the dynamically built variations for all post-types and taxonomies. * * @since 6.5.0 * * @param array $variations Array of registered variations for a block type. * @param WP_Block_Type $block_type The full block type object. */ function block_core_navigation_link_filter_variations( $variations, $block_type ) { if ( 'core/navigation-link' !== $block_type->name ) { return $variations; } $generated_variations = block_core_navigation_link_build_variations(); return array_merge( $variations, $generated_variations ); } /** * Returns an array of variations for the navigation link block. * * @since 6.5.0 * * @return array */ function block_core_navigation_link_build_variations() { $post_types = get_post_types( array( 'show_in_nav_menus' => true ), 'objects' ); $taxonomies = get_taxonomies( array( 'show_in_nav_menus' => true ), 'objects' ); /* * Use two separate arrays as a way to order the variations in the UI. * Known variations (like Post Link and Page Link) are added to the * `built_ins` array. Variations for custom post types and taxonomies are * added to the `variations` array and will always appear after `built-ins. */ $built_ins = array(); $variations = array(); if ( $post_types ) { foreach ( $post_types as $post_type ) { $variation = build_variation_for_navigation_link( $post_type, 'post-type' ); if ( $post_type->_builtin ) { $built_ins[] = $variation; } else { $variations[] = $variation; } } } if ( $taxonomies ) { foreach ( $taxonomies as $taxonomy ) { $variation = build_variation_for_navigation_link( $taxonomy, 'taxonomy' ); if ( $taxonomy->_builtin ) { $built_ins[] = $variation; } else { $variations[] = $variation; } } } return array_merge( $built_ins, $variations ); } /** * Registers the navigation link block. * * @since 5.9.0 * * @uses render_block_core_navigation_link() * @throws WP_Error An WP_Error exception parsing the block definition. */ function register_block_core_navigation_link() { register_block_type_from_metadata( __DIR__ . '/navigation-link', array( 'render_callback' => 'render_block_core_navigation_link', ) ); } add_action( 'init', 'register_block_core_navigation_link' ); /** * Creates all variations for post types / taxonomies dynamically (= each time when variations are requested). * Do not use variation_callback, to also account for unregistering post types/taxonomies later on. */ add_action( 'get_block_type_variations', 'block_core_navigation_link_filter_variations', 10, 2 );
.
165 Items
Change directory
Remove directory
Rename directory
..
270 Items
Change directory
Remove directory
Rename directory
archives
9 Items
Change directory
Remove directory
Rename directory
archives.php
2.92 KB
Edit
Delete
Copy
Move
Remame
audio
13 Items
Change directory
Remove directory
Rename directory
avatar
9 Items
Change directory
Remove directory
Rename directory
avatar.php
5.75 KB
Edit
Delete
Copy
Move
Remame
block
1 Items
Change directory
Remove directory
Rename directory
block.php
3.13 KB
Edit
Delete
Copy
Move
Remame
blocks-json.php
168.64 KB
Edit
Delete
Copy
Move
Remame
button
9 Items
Change directory
Remove directory
Rename directory
button.php
1.76 KB
Edit
Delete
Copy
Move
Remame
buttons
9 Items
Change directory
Remove directory
Rename directory
calendar
5 Items
Change directory
Remove directory
Rename directory
calendar.php
5.93 KB
Edit
Delete
Copy
Move
Remame
categories
9 Items
Change directory
Remove directory
Rename directory
categories.php
2.87 KB
Edit
Delete
Copy
Move
Remame
code
13 Items
Change directory
Remove directory
Rename directory
column
1 Items
Change directory
Remove directory
Rename directory
columns
9 Items
Change directory
Remove directory
Rename directory
comment-author-name
1 Items
Change directory
Remove directory
Rename directory
comment-author-name.php
2.08 KB
Edit
Delete
Copy
Move
Remame
comment-content
5 Items
Change directory
Remove directory
Rename directory
comment-content.php
2.4 KB
Edit
Delete
Copy
Move
Remame
comment-date
1 Items
Change directory
Remove directory
Rename directory
comment-date.php
1.6 KB
Edit
Delete
Copy
Move
Remame
comment-edit-link
1 Items
Change directory
Remove directory
Rename directory
comment-edit-link.php
1.67 KB
Edit
Delete
Copy
Move
Remame
comment-reply-link
1 Items
Change directory
Remove directory
Rename directory
comment-reply-link.php
2.03 KB
Edit
Delete
Copy
Move
Remame
comment-template
5 Items
Change directory
Remove directory
Rename directory
comment-template.php
4.39 KB
Edit
Delete
Copy
Move
Remame
comments
9 Items
Change directory
Remove directory
Rename directory
comments-pagination
9 Items
Change directory
Remove directory
Rename directory
comments-pagination-next
1 Items
Change directory
Remove directory
Rename directory
comments-pagination-next.php
1.85 KB
Edit
Delete
Copy
Move
Remame
comments-pagination-numbers
5 Items
Change directory
Remove directory
Rename directory
comments-pagination-numbers.php
1.59 KB
Edit
Delete
Copy
Move
Remame
comments-pagination-previous
1 Items
Change directory
Remove directory
Rename directory
comments-pagination-previous.php
1.64 KB
Edit
Delete
Copy
Move
Remame
comments-pagination.php
1.17 KB
Edit
Delete
Copy
Move
Remame
comments-title
5 Items
Change directory
Remove directory
Rename directory
comments-title.php
2.71 KB
Edit
Delete
Copy
Move
Remame
comments.php
6.61 KB
Edit
Delete
Copy
Move
Remame
cover
9 Items
Change directory
Remove directory
Rename directory
cover.php
2.49 KB
Edit
Delete
Copy
Move
Remame
details
9 Items
Change directory
Remove directory
Rename directory
embed
13 Items
Change directory
Remove directory
Rename directory
file
13 Items
Change directory
Remove directory
Rename directory
file.php
2.19 KB
Edit
Delete
Copy
Move
Remame
footnotes
5 Items
Change directory
Remove directory
Rename directory
footnotes.php
3.68 KB
Edit
Delete
Copy
Move
Remame
freeform
5 Items
Change directory
Remove directory
Rename directory
gallery
13 Items
Change directory
Remove directory
Rename directory
gallery.php
6.29 KB
Edit
Delete
Copy
Move
Remame
group
13 Items
Change directory
Remove directory
Rename directory
heading
5 Items
Change directory
Remove directory
Rename directory
heading.php
1.27 KB
Edit
Delete
Copy
Move
Remame
home-link
1 Items
Change directory
Remove directory
Rename directory
home-link.php
5.6 KB
Edit
Delete
Copy
Move
Remame
html
5 Items
Change directory
Remove directory
Rename directory
image
17 Items
Change directory
Remove directory
Rename directory
image.php
11.86 KB
Edit
Delete
Copy
Move
Remame
index.php
4.48 KB
Edit
Delete
Copy
Move
Remame
latest-comments
5 Items
Change directory
Remove directory
Rename directory
latest-comments.php
4.92 KB
Edit
Delete
Copy
Move
Remame
latest-posts
9 Items
Change directory
Remove directory
Rename directory
latest-posts.php
8.35 KB
Edit
Delete
Copy
Move
Remame
legacy-widget
1 Items
Change directory
Remove directory
Rename directory
legacy-widget.php
3.9 KB
Edit
Delete
Copy
Move
Remame
list
5 Items
Change directory
Remove directory
Rename directory
list-item
1 Items
Change directory
Remove directory
Rename directory
list.php
1.24 KB
Edit
Delete
Copy
Move
Remame
loginout
1 Items
Change directory
Remove directory
Rename directory
loginout.php
1.38 KB
Edit
Delete
Copy
Move
Remame
media-text
9 Items
Change directory
Remove directory
Rename directory
media-text.php
4.16 KB
Edit
Delete
Copy
Move
Remame
missing
1 Items
Change directory
Remove directory
Rename directory
more
5 Items
Change directory
Remove directory
Rename directory
navigation
15 Items
Change directory
Remove directory
Rename directory
navigation-link
9 Items
Change directory
Remove directory
Rename directory
navigation-link.php
13.21 KB
Edit
Delete
Copy
Move
Remame
navigation-submenu
5 Items
Change directory
Remove directory
Rename directory
navigation-submenu.php
9.09 KB
Edit
Delete
Copy
Move
Remame
navigation.php
59.26 KB
Edit
Delete
Copy
Move
Remame
nextpage
5 Items
Change directory
Remove directory
Rename directory
page-list
9 Items
Change directory
Remove directory
Rename directory
page-list-item
1 Items
Change directory
Remove directory
Rename directory
page-list-item.php
0.35 KB
Edit
Delete
Copy
Move
Remame
page-list.php
13.25 KB
Edit
Delete
Copy
Move
Remame
paragraph
9 Items
Change directory
Remove directory
Rename directory
pattern
1 Items
Change directory
Remove directory
Rename directory
pattern.php
2.14 KB
Edit
Delete
Copy
Move
Remame
post-author
5 Items
Change directory
Remove directory
Rename directory
post-author-biography
1 Items
Change directory
Remove directory
Rename directory
post-author-biography.php
1.49 KB
Edit
Delete
Copy
Move
Remame
post-author-name
1 Items
Change directory
Remove directory
Rename directory
post-author-name.php
1.78 KB
Edit
Delete
Copy
Move
Remame
post-author.php
2.54 KB
Edit
Delete
Copy
Move
Remame
post-comments-form
9 Items
Change directory
Remove directory
Rename directory
post-comments-form.php
2.74 KB
Edit
Delete
Copy
Move
Remame
post-content
5 Items
Change directory
Remove directory
Rename directory
post-content.php
2.11 KB
Edit
Delete
Copy
Move
Remame
post-date
5 Items
Change directory
Remove directory
Rename directory
post-date.php
2.33 KB
Edit
Delete
Copy
Move
Remame
post-excerpt
9 Items
Change directory
Remove directory
Rename directory
post-excerpt.php
3.37 KB
Edit
Delete
Copy
Move
Remame
post-featured-image
9 Items
Change directory
Remove directory
Rename directory
post-featured-image.php
9.14 KB
Edit
Delete
Copy
Move
Remame
post-navigation-link
5 Items
Change directory
Remove directory
Rename directory
post-navigation-link.php
4.72 KB
Edit
Delete
Copy
Move
Remame
post-template
9 Items
Change directory
Remove directory
Rename directory
post-template.php
5.61 KB
Edit
Delete
Copy
Move
Remame
post-terms
5 Items
Change directory
Remove directory
Rename directory
post-terms.php
3.6 KB
Edit
Delete
Copy
Move
Remame
post-title
5 Items
Change directory
Remove directory
Rename directory
post-title.php
2.09 KB
Edit
Delete
Copy
Move
Remame
preformatted
5 Items
Change directory
Remove directory
Rename directory
pullquote
13 Items
Change directory
Remove directory
Rename directory
query
9 Items
Change directory
Remove directory
Rename directory
query-no-results
1 Items
Change directory
Remove directory
Rename directory
query-no-results.php
1.8 KB
Edit
Delete
Copy
Move
Remame
query-pagination
9 Items
Change directory
Remove directory
Rename directory
query-pagination-next
1 Items
Change directory
Remove directory
Rename directory
query-pagination-next.php
3.7 KB
Edit
Delete
Copy
Move
Remame
query-pagination-numbers
5 Items
Change directory
Remove directory
Rename directory
query-pagination-numbers.php
4.66 KB
Edit
Delete
Copy
Move
Remame
query-pagination-previous
1 Items
Change directory
Remove directory
Rename directory
query-pagination-previous.php
3.1 KB
Edit
Delete
Copy
Move
Remame
query-pagination.php
1.15 KB
Edit
Delete
Copy
Move
Remame
query-title
5 Items
Change directory
Remove directory
Rename directory
query-title.php
2.05 KB
Edit
Delete
Copy
Move
Remame
query.php
6.16 KB
Edit
Delete
Copy
Move
Remame
quote
9 Items
Change directory
Remove directory
Rename directory
read-more
5 Items
Change directory
Remove directory
Rename directory
read-more.php
1.79 KB
Edit
Delete
Copy
Move
Remame
require-dynamic-blocks.php
4.01 KB
Edit
Delete
Copy
Move
Remame
require-static-blocks.php
0.49 KB
Edit
Delete
Copy
Move
Remame
rss
9 Items
Change directory
Remove directory
Rename directory
rss.php
3.87 KB
Edit
Delete
Copy
Move
Remame
search
17 Items
Change directory
Remove directory
Rename directory
search.php
22.97 KB
Edit
Delete
Copy
Move
Remame
separator
13 Items
Change directory
Remove directory
Rename directory
shortcode
5 Items
Change directory
Remove directory
Rename directory
shortcode.php
0.72 KB
Edit
Delete
Copy
Move
Remame
site-logo
9 Items
Change directory
Remove directory
Rename directory
site-logo.php
6.05 KB
Edit
Delete
Copy
Move
Remame
site-tagline
5 Items
Change directory
Remove directory
Rename directory
site-tagline.php
1.17 KB
Edit
Delete
Copy
Move
Remame
site-title
9 Items
Change directory
Remove directory
Rename directory
site-title.php
1.77 KB
Edit
Delete
Copy
Move
Remame
social-link
5 Items
Change directory
Remove directory
Rename directory
social-link.php
62.67 KB
Edit
Delete
Copy
Move
Remame
social-links
9 Items
Change directory
Remove directory
Rename directory
spacer
9 Items
Change directory
Remove directory
Rename directory
table
13 Items
Change directory
Remove directory
Rename directory
tag-cloud
5 Items
Change directory
Remove directory
Rename directory
tag-cloud.php
1.41 KB
Edit
Delete
Copy
Move
Remame
template-part
9 Items
Change directory
Remove directory
Rename directory
template-part.php
9.86 KB
Edit
Delete
Copy
Move
Remame
term-description
5 Items
Change directory
Remove directory
Rename directory
term-description.php
1.3 KB
Edit
Delete
Copy
Move
Remame
text-columns
9 Items
Change directory
Remove directory
Rename directory
verse
5 Items
Change directory
Remove directory
Rename directory
video
13 Items
Change directory
Remove directory
Rename directory
widget-group
1 Items
Change directory
Remove directory
Rename directory
widget-group.php
2.38 KB
Edit
Delete
Copy
Move
Remame