$64 GRAYBYTE WORDPRESS FILE MANAGER $47

SERVER : in-mum-web1330.main-hosting.eu #1 SMP Mon Feb 10 22:45:17 UTC 2025
SERVER IP : 147.79.69.250 | ADMIN IP 216.73.216.21
OPTIONS : CRL = ON | WGT = ON | SDO = OFF | PKEX = OFF
DEACTIVATED : NONE

/home/u550391411/domains/kunaldryfruites.com/public_html/wp-includes/blocks/

HOME
Current File : /home/u550391411/domains/kunaldryfruites.com/public_html/wp-includes/blocks//gallery.php
<?php
/**
 * Server-side rendering of the `core/gallery` block.
 *
 * @package WordPress
 */

/**
 * Handles backwards compatibility for Gallery Blocks,
 * whose images feature a `data-id` attribute.
 *
 * Now that the Gallery Block contains inner Image Blocks,
 * we add a custom `data-id` attribute before rendering the gallery
 * so that the Image Block can pick it up in its render_callback.
 *
 * @param array $parsed_block The block being rendered.
 * @return array The migrated block object.
 */
function block_core_gallery_data_id_backcompatibility( $parsed_block ) {
	if ( 'core/gallery' === $parsed_block['blockName'] ) {
		foreach ( $parsed_block['innerBlocks'] as $key => $inner_block ) {
			if ( 'core/image' === $inner_block['blockName'] ) {
				if ( ! isset( $parsed_block['innerBlocks'][ $key ]['attrs']['data-id'] ) && isset( $inner_block['attrs']['id'] ) ) {
					$parsed_block['innerBlocks'][ $key ]['attrs']['data-id'] = esc_attr( $inner_block['attrs']['id'] );
				}
			}
		}
	}

	return $parsed_block;
}

add_filter( 'render_block_data', 'block_core_gallery_data_id_backcompatibility' );

/**
 * Adds a style tag for the --wp--style--unstable-gallery-gap var.
 *
 * The Gallery block needs to recalculate Image block width based on
 * the current gap setting in order to maintain the number of flex columns
 * so a css var is added to allow this.
 *
 * @param array  $attributes Attributes of the block being rendered.
 * @param string $content Content of the block being rendered.
 * @return string The content of the block being rendered.
 */
function block_core_gallery_render( $attributes, $content ) {
	$gap = $attributes['style']['spacing']['blockGap'] ?? null;
	// Skip if gap value contains unsupported characters.
	// Regex for CSS value borrowed from `safecss_filter_attr`, and used here
	// because we only want to match against the value, not the CSS attribute.
	if ( is_array( $gap ) ) {
		foreach ( $gap as $key => $value ) {
			// Make sure $value is a string to avoid PHP 8.1 deprecation error in preg_match() when the value is null.
			$value = is_string( $value ) ? $value : '';
			$value = $value && preg_match( '%[\\\(&=}]|/\*%', $value ) ? null : $value;

			// Get spacing CSS variable from preset value if provided.
			if ( is_string( $value ) && str_contains( $value, 'var:preset|spacing|' ) ) {
				$index_to_splice = strrpos( $value, '|' ) + 1;
				$slug            = _wp_to_kebab_case( substr( $value, $index_to_splice ) );
				$value           = "var(--wp--preset--spacing--$slug)";
			}

			$gap[ $key ] = $value;
		}
	} else {
		// Make sure $gap is a string to avoid PHP 8.1 deprecation error in preg_match() when the value is null.
		$gap = is_string( $gap ) ? $gap : '';
		$gap = $gap && preg_match( '%[\\\(&=}]|/\*%', $gap ) ? null : $gap;

		// Get spacing CSS variable from preset value if provided.
		if ( is_string( $gap ) && str_contains( $gap, 'var:preset|spacing|' ) ) {
			$index_to_splice = strrpos( $gap, '|' ) + 1;
			$slug            = _wp_to_kebab_case( substr( $gap, $index_to_splice ) );
			$gap             = "var(--wp--preset--spacing--$slug)";
		}
	}

	$unique_gallery_classname = wp_unique_id( 'wp-block-gallery-' );
	$processed_content        = new WP_HTML_Tag_Processor( $content );
	$processed_content->next_tag();
	$processed_content->add_class( $unique_gallery_classname );

	// --gallery-block--gutter-size is deprecated. --wp--style--gallery-gap-default should be used by themes that want to set a default
	// gap on the gallery.
	$fallback_gap = 'var( --wp--style--gallery-gap-default, var( --gallery-block--gutter-size, var( --wp--style--block-gap, 0.5em ) ) )';
	$gap_value    = $gap ? $gap : $fallback_gap;
	$gap_column   = $gap_value;

	if ( is_array( $gap_value ) ) {
		$gap_row    = isset( $gap_value['top'] ) ? $gap_value['top'] : $fallback_gap;
		$gap_column = isset( $gap_value['left'] ) ? $gap_value['left'] : $fallback_gap;
		$gap_value  = $gap_row === $gap_column ? $gap_row : $gap_row . ' ' . $gap_column;
	}

	// The unstable gallery gap calculation requires a real value (such as `0px`) and not `0`.
	if ( '0' === $gap_column ) {
		$gap_column = '0px';
	}

	// Set the CSS variable to the column value, and the `gap` property to the combined gap value.
	$gallery_styles = array(
		array(
			'selector'     => ".wp-block-gallery.{$unique_gallery_classname}",
			'declarations' => array(
				'--wp--style--unstable-gallery-gap' => $gap_column,
				'gap'                               => $gap_value,
			),
		),
	);

	wp_style_engine_get_stylesheet_from_css_rules(
		$gallery_styles,
		array(
			'context' => 'block-supports',
		)
	);
	return (string) $processed_content;
}
/**
 * Registers the `core/gallery` block on server.
 */
function register_block_core_gallery() {
	register_block_type_from_metadata(
		__DIR__ . '/gallery',
		array(
			'render_callback' => 'block_core_gallery_render',
		)
	);
}

add_action( 'init', 'register_block_core_gallery' );

Current_dir [ WRITEABLE ] Document_root [ WRITEABLE ]


[ Back ]
NAME
SIZE
LAST TOUCH
USER
CAN-I?
FUNCTIONS
..
--
2 Mar 2024 8.56 AM
u550391411 / o200927086
0755
archives
--
2 Mar 2024 8.56 AM
u550391411 / o200927086
0755
audio
--
2 Mar 2024 8.56 AM
u550391411 / o200927086
0755
avatar
--
2 Mar 2024 8.56 AM
u550391411 / o200927086
0755
block
--
2 Mar 2024 8.56 AM
u550391411 / o200927086
0755
button
--
2 Mar 2024 8.56 AM
u550391411 / o200927086
0755
buttons
--
2 Mar 2024 8.56 AM
u550391411 / o200927086
0755
calendar
--
2 Mar 2024 8.56 AM
u550391411 / o200927086
0755
categories
--
2 Mar 2024 8.56 AM
u550391411 / o200927086
0755
code
--
2 Mar 2024 8.56 AM
u550391411 / o200927086
0755
column
--
2 Mar 2024 8.56 AM
u550391411 / o200927086
0755
columns
--
2 Mar 2024 8.56 AM
u550391411 / o200927086
0755
comment-author-name
--
2 Mar 2024 8.56 AM
u550391411 / o200927086
0755
comment-content
--
2 Mar 2024 8.56 AM
u550391411 / o200927086
0755
comment-date
--
2 Mar 2024 8.56 AM
u550391411 / o200927086
0755
comment-edit-link
--
2 Mar 2024 8.56 AM
u550391411 / o200927086
0755
comment-reply-link
--
2 Mar 2024 8.56 AM
u550391411 / o200927086
0755
comment-template
--
2 Mar 2024 8.56 AM
u550391411 / o200927086
0755
comments
--
2 Mar 2024 8.56 AM
u550391411 / o200927086
0755
comments-pagination
--
2 Mar 2024 8.56 AM
u550391411 / o200927086
0755
comments-pagination-next
--
2 Mar 2024 8.56 AM
u550391411 / o200927086
0755
comments-pagination-numbers
--
2 Mar 2024 8.56 AM
u550391411 / o200927086
0755
comments-pagination-previous
--
2 Mar 2024 8.56 AM
u550391411 / o200927086
0755
comments-title
--
2 Mar 2024 8.56 AM
u550391411 / o200927086
0755
cover
--
2 Mar 2024 8.56 AM
u550391411 / o200927086
0755
details
--
2 Mar 2024 8.56 AM
u550391411 / o200927086
0755
embed
--
2 Mar 2024 8.56 AM
u550391411 / o200927086
0755
file
--
2 Mar 2024 8.56 AM
u550391411 / o200927086
0755
footnotes
--
2 Mar 2024 8.56 AM
u550391411 / o200927086
0755
freeform
--
2 Mar 2024 8.56 AM
u550391411 / o200927086
0755
gallery
--
2 Mar 2024 8.56 AM
u550391411 / o200927086
0755
group
--
2 Mar 2024 8.56 AM
u550391411 / o200927086
0755
heading
--
2 Mar 2024 8.56 AM
u550391411 / o200927086
0755
home-link
--
2 Mar 2024 8.56 AM
u550391411 / o200927086
0755
html
--
2 Mar 2024 8.56 AM
u550391411 / o200927086
0755
image
--
2 Mar 2024 8.56 AM
u550391411 / o200927086
0755
latest-comments
--
2 Mar 2024 8.56 AM
u550391411 / o200927086
0755
latest-posts
--
2 Mar 2024 8.56 AM
u550391411 / o200927086
0755
legacy-widget
--
2 Mar 2024 8.56 AM
u550391411 / o200927086
0755
list
--
2 Mar 2024 8.56 AM
u550391411 / o200927086
0755
list-item
--
2 Mar 2024 8.56 AM
u550391411 / o200927086
0755
loginout
--
2 Mar 2024 8.56 AM
u550391411 / o200927086
0755
media-text
--
2 Mar 2024 8.56 AM
u550391411 / o200927086
0755
missing
--
2 Mar 2024 8.56 AM
u550391411 / o200927086
0755
more
--
2 Mar 2024 8.56 AM
u550391411 / o200927086
0755
navigation
--
2 Mar 2024 8.56 AM
u550391411 / o200927086
0755
navigation-link
--
2 Mar 2024 8.56 AM
u550391411 / o200927086
0755
navigation-submenu
--
2 Mar 2024 8.56 AM
u550391411 / o200927086
0755
nextpage
--
2 Mar 2024 8.56 AM
u550391411 / o200927086
0755
page-list
--
2 Mar 2024 8.56 AM
u550391411 / o200927086
0755
page-list-item
--
2 Mar 2024 8.56 AM
u550391411 / o200927086
0755
paragraph
--
2 Mar 2024 8.56 AM
u550391411 / o200927086
0755
pattern
--
2 Mar 2024 8.56 AM
u550391411 / o200927086
0755
post-author
--
2 Mar 2024 8.56 AM
u550391411 / o200927086
0755
post-author-biography
--
2 Mar 2024 8.56 AM
u550391411 / o200927086
0755
post-author-name
--
2 Mar 2024 8.56 AM
u550391411 / o200927086
0755
post-comments-form
--
2 Mar 2024 8.56 AM
u550391411 / o200927086
0755
post-content
--
2 Mar 2024 8.56 AM
u550391411 / o200927086
0755
post-date
--
2 Mar 2024 8.56 AM
u550391411 / o200927086
0755
post-excerpt
--
2 Mar 2024 8.56 AM
u550391411 / o200927086
0755
post-featured-image
--
2 Mar 2024 8.56 AM
u550391411 / o200927086
0755
post-navigation-link
--
2 Mar 2024 8.56 AM
u550391411 / o200927086
0755
post-template
--
2 Mar 2024 8.56 AM
u550391411 / o200927086
0755
post-terms
--
2 Mar 2024 8.56 AM
u550391411 / o200927086
0755
post-title
--
2 Mar 2024 8.56 AM
u550391411 / o200927086
0755
preformatted
--
2 Mar 2024 8.56 AM
u550391411 / o200927086
0755
pullquote
--
2 Mar 2024 8.56 AM
u550391411 / o200927086
0755
query
--
2 Mar 2024 8.56 AM
u550391411 / o200927086
0755
query-no-results
--
2 Mar 2024 8.56 AM
u550391411 / o200927086
0755
query-pagination
--
2 Mar 2024 8.56 AM
u550391411 / o200927086
0755
query-pagination-next
--
2 Mar 2024 8.56 AM
u550391411 / o200927086
0755
query-pagination-numbers
--
2 Mar 2024 8.56 AM
u550391411 / o200927086
0755
query-pagination-previous
--
2 Mar 2024 8.56 AM
u550391411 / o200927086
0755
query-title
--
2 Mar 2024 8.56 AM
u550391411 / o200927086
0755
quote
--
2 Mar 2024 8.56 AM
u550391411 / o200927086
0755
read-more
--
2 Mar 2024 8.56 AM
u550391411 / o200927086
0755
rss
--
2 Mar 2024 8.56 AM
u550391411 / o200927086
0755
search
--
2 Mar 2024 8.56 AM
u550391411 / o200927086
0755
separator
--
2 Mar 2024 8.56 AM
u550391411 / o200927086
0755
shortcode
--
2 Mar 2024 8.56 AM
u550391411 / o200927086
0755
site-logo
--
2 Mar 2024 8.56 AM
u550391411 / o200927086
0755
site-tagline
--
2 Mar 2024 8.56 AM
u550391411 / o200927086
0755
site-title
--
2 Mar 2024 8.56 AM
u550391411 / o200927086
0755
social-link
--
2 Mar 2024 8.56 AM
u550391411 / o200927086
0755
social-links
--
2 Mar 2024 8.56 AM
u550391411 / o200927086
0755
spacer
--
2 Mar 2024 8.56 AM
u550391411 / o200927086
0755
table
--
2 Mar 2024 8.56 AM
u550391411 / o200927086
0755
tag-cloud
--
2 Mar 2024 8.56 AM
u550391411 / o200927086
0755
template-part
--
2 Mar 2024 8.56 AM
u550391411 / o200927086
0755
term-description
--
2 Mar 2024 8.56 AM
u550391411 / o200927086
0755
text-columns
--
2 Mar 2024 8.56 AM
u550391411 / o200927086
0755
verse
--
2 Mar 2024 8.56 AM
u550391411 / o200927086
0755
video
--
2 Mar 2024 8.56 AM
u550391411 / o200927086
0755
widget-group
--
2 Mar 2024 8.56 AM
u550391411 / o200927086
0755
archives.php
2.887 KB
2 Mar 2024 8.56 AM
u550391411 / o200927086
0644
avatar.php
5.511 KB
10 Apr 2024 5.51 PM
u550391411 / o200927086
0644
block.php
1.566 KB
2 Mar 2024 8.56 AM
u550391411 / o200927086
0644
blocks-json.php
159.815 KB
2 Mar 2024 8.56 AM
u550391411 / o200927086
0644
calendar.php
5.986 KB
2 Mar 2024 8.56 AM
u550391411 / o200927086
0644
categories.php
2.781 KB
2 Mar 2024 8.56 AM
u550391411 / o200927086
0644
comment-author-name.php
2.046 KB
2 Mar 2024 8.56 AM
u550391411 / o200927086
0644
comment-content.php
2.364 KB
2 Mar 2024 8.56 AM
u550391411 / o200927086
0644
comment-date.php
1.559 KB
2 Mar 2024 8.56 AM
u550391411 / o200927086
0644
comment-edit-link.php
1.636 KB
2 Mar 2024 8.56 AM
u550391411 / o200927086
0644
comment-reply-link.php
1.989 KB
2 Mar 2024 8.56 AM
u550391411 / o200927086
0644
comment-template.php
4.352 KB
2 Mar 2024 8.56 AM
u550391411 / o200927086
0644
comments-pagination-next.php
1.811 KB
2 Mar 2024 8.56 AM
u550391411 / o200927086
0644
comments-pagination-numbers.php
1.557 KB
2 Mar 2024 8.56 AM
u550391411 / o200927086
0644
comments-pagination-previous.php
1.607 KB
2 Mar 2024 8.56 AM
u550391411 / o200927086
0644
comments-pagination.php
1.134 KB
2 Mar 2024 8.56 AM
u550391411 / o200927086
0644
comments-title.php
2.67 KB
2 Mar 2024 8.56 AM
u550391411 / o200927086
0644
comments.php
6.469 KB
2 Mar 2024 8.56 AM
u550391411 / o200927086
0644
cover.php
2.452 KB
2 Mar 2024 8.56 AM
u550391411 / o200927086
0644
file.php
3.261 KB
2 Mar 2024 8.56 AM
u550391411 / o200927086
0644
footnotes.php
3.031 KB
2 Mar 2024 8.56 AM
u550391411 / o200927086
0644
gallery.php
4.836 KB
2 Mar 2024 8.56 AM
u550391411 / o200927086
0644
heading.php
1.233 KB
2 Mar 2024 8.56 AM
u550391411 / o200927086
0644
home-link.php
5.192 KB
2 Mar 2024 8.56 AM
u550391411 / o200927086
0644
image.php
14.358 KB
2 Mar 2024 8.56 AM
u550391411 / o200927086
0644
index.php
4.478 KB
2 Mar 2024 8.56 AM
u550391411 / o200927086
0644
latest-comments.php
4.885 KB
2 Mar 2024 8.56 AM
u550391411 / o200927086
0644
latest-posts.php
8.17 KB
2 Mar 2024 8.56 AM
u550391411 / o200927086
0644
legacy-widget.php
3.811 KB
2 Mar 2024 8.56 AM
u550391411 / o200927086
0644
loginout.php
1.348 KB
2 Mar 2024 8.56 AM
u550391411 / o200927086
0644
navigation-link.php
11.649 KB
2 Mar 2024 8.56 AM
u550391411 / o200927086
0644
navigation-submenu.php
8.814 KB
2 Mar 2024 8.56 AM
u550391411 / o200927086
0644
navigation.php
37.307 KB
2 Mar 2024 8.56 AM
u550391411 / o200927086
0644
page-list-item.php
0.334 KB
2 Mar 2024 8.56 AM
u550391411 / o200927086
0644
page-list.php
13.137 KB
2 Mar 2024 8.56 AM
u550391411 / o200927086
0644
pattern.php
1.404 KB
2 Mar 2024 8.56 AM
u550391411 / o200927086
0644
post-author-biography.php
1.414 KB
2 Mar 2024 8.56 AM
u550391411 / o200927086
0644
post-author-name.php
1.705 KB
2 Mar 2024 8.56 AM
u550391411 / o200927086
0644
post-author.php
2.507 KB
2 Mar 2024 8.56 AM
u550391411 / o200927086
0644
post-comments-form.php
2.684 KB
2 Mar 2024 8.56 AM
u550391411 / o200927086
0644
post-content.php
2.068 KB
2 Mar 2024 8.56 AM
u550391411 / o200927086
0644
post-date.php
2.289 KB
2 Mar 2024 8.56 AM
u550391411 / o200927086
0644
post-excerpt.php
3.329 KB
2 Mar 2024 8.56 AM
u550391411 / o200927086
0644
post-featured-image.php
7.374 KB
2 Mar 2024 8.56 AM
u550391411 / o200927086
0644
post-navigation-link.php
4.378 KB
2 Mar 2024 8.56 AM
u550391411 / o200927086
0644
post-template.php
5.521 KB
2 Mar 2024 8.56 AM
u550391411 / o200927086
0644
post-terms.php
3.307 KB
2 Mar 2024 8.56 AM
u550391411 / o200927086
0644
post-title.php
2.019 KB
2 Mar 2024 8.56 AM
u550391411 / o200927086
0644
query-no-results.php
1.711 KB
2 Mar 2024 8.56 AM
u550391411 / o200927086
0644
query-pagination-next.php
3.596 KB
2 Mar 2024 8.56 AM
u550391411 / o200927086
0644
query-pagination-numbers.php
4.409 KB
2 Mar 2024 8.56 AM
u550391411 / o200927086
0644
query-pagination-previous.php
3.052 KB
2 Mar 2024 8.56 AM
u550391411 / o200927086
0644
query-pagination.php
1.111 KB
2 Mar 2024 8.56 AM
u550391411 / o200927086
0644
query-title.php
2.012 KB
2 Mar 2024 8.56 AM
u550391411 / o200927086
0644
query.php
7.163 KB
2 Mar 2024 8.56 AM
u550391411 / o200927086
0644
read-more.php
1.75 KB
2 Mar 2024 8.56 AM
u550391411 / o200927086
0644
require-dynamic-blocks.php
3.852 KB
2 Mar 2024 8.56 AM
u550391411 / o200927086
0644
require-static-blocks.php
0.523 KB
2 Mar 2024 8.56 AM
u550391411 / o200927086
0644
rss.php
3.834 KB
2 Mar 2024 8.56 AM
u550391411 / o200927086
0644
search.php
23.936 KB
2 Mar 2024 8.56 AM
u550391411 / o200927086
0644
shortcode.php
0.681 KB
2 Mar 2024 8.56 AM
u550391411 / o200927086
0644
site-logo.php
5.794 KB
2 Mar 2024 8.56 AM
u550391411 / o200927086
0644
site-tagline.php
0.971 KB
2 Mar 2024 8.56 AM
u550391411 / o200927086
0644
site-title.php
1.729 KB
2 Mar 2024 8.56 AM
u550391411 / o200927086
0644
social-link.php
60.442 KB
2 Mar 2024 8.56 AM
u550391411 / o200927086
0644
tag-cloud.php
1.37 KB
2 Mar 2024 8.56 AM
u550391411 / o200927086
0644
template-part.php
9.501 KB
25 Jun 2024 6.26 PM
u550391411 / o200927086
0644
term-description.php
1.268 KB
2 Mar 2024 8.56 AM
u550391411 / o200927086
0644
widget-group.php
2.115 KB
2 Mar 2024 8.56 AM
u550391411 / o200927086
0644

GRAYBYTE WORDPRESS FILE MANAGER @ 2026 CONTACT ME
Static GIF