[ Avaa Bypassed ]




Upload:

Command:

www-data@3.149.249.113: ~ $
<?php
/**
 * Server-side rendering of the `core/navigation-submenu` block.
 *
 * @package WordPress
 */

/**
 * Build an array with CSS classes and inline styles defining the colors
 * which will be applied to the navigation markup in the front-end.
 *
 * @param  array $context     Navigation block context.
 * @param  array $attributes  Block attributes.
 * @param  bool  $is_sub_menu Whether the block is a sub-menu.
 * @return array Colors CSS classes and inline styles.
 */
function block_core_navigation_submenu_build_css_colors( $context, $attributes, $is_sub_menu = false ) {
	$colors = array(
		'css_classes'   => 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.
 *
 * @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;
}

/**
 * Returns the top-level submenu SVG chevron icon.
 *
 * @return string
 */
function block_core_navigation_submenu_render_submenu_icon() {
	return '<svg xmlns="http://www.w3.org/2000/svg" width="12" height="12" viewBox="0 0 12 12" fill="none" aria-hidden="true" focusable="false"><path d="M1.50002 4L6.00002 8L10.5 4" stroke-width="1.5"></path></svg>';
}

/**
 * Renders the `core/navigation-submenu` block.
 *
 * @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 ) {

	$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.
	if ( $is_post_type && $navigation_link_has_id && 'publish' !== get_post_status( $attributes['id'] ) ) {
		return '';
	}

	// Don't render the block's subtree if it has no label.
	if ( empty( $attributes['label'] ) ) {
		return '';
	}

	$colors          = block_core_navigation_submenu_build_css_colors( $block->context, $attributes );
	$font_sizes      = block_core_navigation_submenu_build_css_font_sizes( $block->context );
	$classes         = array_merge(
		$colors['css_classes'],
		$font_sizes['css_classes']
	);
	$style_attribute = ( $colors['inline_styles'] . $font_sizes['inline_styles'] );

	$css_classes = trim( implode( ' ', $classes ) );
	$has_submenu = count( $block->inner_blocks ) > 0;
	$is_active   = ! empty( $attributes['id'] ) && ( get_queried_object_id() === (int) $attributes['id'] );

	$show_submenu_indicators = isset( $block->context['showSubmenuIcon'] ) && $block->context['showSubmenuIcon'];
	$open_on_click           = isset( $block->context['openSubmenusOnClick'] ) && $block->context['openSubmenusOnClick'];
	$open_on_hover_and_click = isset( $block->context['openSubmenusOnClick'] ) && ! $block->context['openSubmenusOnClick'] &&
		$show_submenu_indicators;

	$wrapper_attributes = get_block_wrapper_attributes(
		array(
			'class' => $css_classes . ' wp-block-navigation-item' . ( $has_submenu ? ' has-child' : '' ) .
			( $open_on_click ? ' open-on-click' : '' ) . ( $open_on_hover_and_click ? ' open-on-hover-click' : '' ) .
			( $is_active ? ' current-menu-item' : '' ),
			'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, 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 = isset( $attributes['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 .= $label;

		$html .= '</a>';
		// End anchor tag content.

		if ( $show_submenu_indicators ) {
			// 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">' . block_core_navigation_submenu_render_submenu_icon() . '</button>';
		}
	} else {
		// If menus open on click, we render the parent as a button.
		$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>';

		$html .= '</button>';

		$html .= '<span class="wp-block-navigation__submenu-icon">' . block_core_navigation_submenu_render_submenu_icon() . '</span>';

	}

	if ( $has_submenu ) {
		$colors      = block_core_navigation_submenu_build_css_colors( $block->context, $attributes, $has_submenu );
		$classes     = array_merge(
			array( 'wp-block-navigation__submenu-container' ),
			$colors['css_classes']
		);
		$css_classes = trim( implode( ' ', $classes ) );

		$style_attribute = $colors['inline_styles'];

		$inner_blocks_html = '';
		foreach ( $block->inner_blocks as $inner_block ) {
			$inner_blocks_html .= $inner_block->render();
		}

		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__content' ) ) ) {
				$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.
 *
 * @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' );

Filemanager

Name Type Size Permission Actions
archives Folder 0777
audio Folder 0777
avatar Folder 0777
block Folder 0777
button Folder 0777
buttons Folder 0777
calendar Folder 0777
categories Folder 0777
code Folder 0777
column Folder 0777
columns Folder 0777
comment-author-name Folder 0777
comment-content Folder 0777
comment-date Folder 0777
comment-edit-link Folder 0777
comment-reply-link Folder 0777
comment-template Folder 0777
comments Folder 0777
comments-pagination Folder 0777
comments-pagination-next Folder 0777
comments-pagination-numbers Folder 0777
comments-pagination-previous Folder 0777
comments-title Folder 0777
cover Folder 0777
embed Folder 0777
file Folder 0777
freeform Folder 0777
gallery Folder 0777
group Folder 0777
heading Folder 0777
home-link Folder 0777
html Folder 0777
image Folder 0777
latest-comments Folder 0777
latest-posts Folder 0777
legacy-widget Folder 0777
list Folder 0777
list-item Folder 0777
loginout Folder 0777
media-text Folder 0777
missing Folder 0777
more Folder 0777
navigation Folder 0777
navigation-link Folder 0777
navigation-submenu Folder 0777
nextpage Folder 0777
page-list Folder 0777
page-list-item Folder 0777
paragraph Folder 0777
pattern Folder 0777
post-author Folder 0777
post-author-biography Folder 0777
post-author-name Folder 0777
post-comments-form Folder 0777
post-content Folder 0777
post-date Folder 0777
post-excerpt Folder 0777
post-featured-image Folder 0777
post-navigation-link Folder 0777
post-template Folder 0777
post-terms Folder 0777
post-title Folder 0777
preformatted Folder 0777
pullquote Folder 0777
query Folder 0777
query-no-results Folder 0777
query-pagination Folder 0777
query-pagination-next Folder 0777
query-pagination-numbers Folder 0777
query-pagination-previous Folder 0777
query-title Folder 0777
quote Folder 0777
read-more Folder 0777
rss Folder 0777
search Folder 0777
separator Folder 0777
shortcode Folder 0777
site-logo Folder 0777
site-tagline Folder 0777
site-title Folder 0777
social-link Folder 0777
social-links Folder 0777
spacer Folder 0777
table Folder 0777
tag-cloud Folder 0777
template-part Folder 0777
term-description Folder 0777
text-columns Folder 0777
verse Folder 0777
video Folder 0777
widget-group Folder 0777
archives.php File 2.89 KB 0777
avatar.php File 5.3 KB 0777
block.php File 1.57 KB 0777
blocks-json.php File 110.42 KB 0777
calendar.php File 6.03 KB 0777
categories.php File 2.78 KB 0777
comment-author-name.php File 2.05 KB 0777
comment-content.php File 2.36 KB 0777
comment-date.php File 1.56 KB 0777
comment-edit-link.php File 1.64 KB 0777
comment-reply-link.php File 1.99 KB 0777
comment-template.php File 3.58 KB 0777
comments-pagination-next.php File 1.8 KB 0777
comments-pagination-numbers.php File 1.56 KB 0777
comments-pagination-previous.php File 1.6 KB 0777
comments-pagination.php File 1.13 KB 0777
comments-title.php File 2.67 KB 0777
comments.php File 6.5 KB 0777
cover.php File 2.43 KB 0777
file.php File 1.56 KB 0777
gallery.php File 4.85 KB 0777
heading.php File 1.23 KB 0777
home-link.php File 4.74 KB 0777
image.php File 1.26 KB 0777
index.php File 779 B 0777
latest-comments.php File 4.88 KB 0777
latest-posts.php File 7.43 KB 0777
legacy-widget.php File 3.81 KB 0777
loginout.php File 1.35 KB 0777
navigation-link.php File 11.51 KB 0777
navigation-submenu.php File 10.77 KB 0777
navigation.php File 30.54 KB 0777
page-list.php File 13.14 KB 0777
pattern.php File 921 B 0777
post-author-biography.php File 1.41 KB 0777
post-author-name.php File 1.71 KB 0777
post-author.php File 2.5 KB 0777
post-comments-form.php File 2.68 KB 0777
post-content.php File 2.28 KB 0777
post-date.php File 1.96 KB 0777
post-excerpt.php File 2.56 KB 0777
post-featured-image.php File 7.19 KB 0777
post-navigation-link.php File 4.26 KB 0777
post-template.php File 4.06 KB 0777
post-terms.php File 3.21 KB 0777
post-title.php File 1.81 KB 0777
query-no-results.php File 1.76 KB 0777
query-pagination-next.php File 2.66 KB 0777
query-pagination-numbers.php File 3.73 KB 0777
query-pagination-previous.php File 2.12 KB 0777
query-pagination.php File 1.11 KB 0777
query-title.php File 2.08 KB 0777
query.php File 304 B 0777
read-more.php File 1.75 KB 0777
require-dynamic-blocks.php File 3.74 KB 0777
require-static-blocks.php File 543 B 0777
rss.php File 3.83 KB 0777
search.php File 19.94 KB 0777
shortcode.php File 697 B 0777
site-logo.php File 5.67 KB 0777
site-tagline.php File 994 B 0777
site-title.php File 1.73 KB 0777
social-link.php File 59.56 KB 0777
tag-cloud.php File 1.37 KB 0777
template-part.php File 9.36 KB 0777
term-description.php File 1.27 KB 0777
widget-group.php File 2.12 KB 0777