var
/
www
/
html
/
servotec-doerpen
/
wp-includes
/
blocks
| uid:33
block.php
[X]
<?php // phpcs:ignore WordPress.Files.FileName.InvalidClassFileName // Needed for WP_Block_Cloner helper class. /** * Server-side rendering of the `core/block` block. * * @package WordPress */ /** * Renders the `core/block` block on server. * * @since 5.0.0 * * @global WP_Embed $wp_embed * * @param array $attributes The block attributes. * * @return string Rendered HTML of the referenced block. */ function render_block_core_block( $attributes, $content, $block_instance ) { static $seen_refs = array(); if ( empty( $attributes['ref'] ) ) { return ''; } $reusable_block = get_post( $attributes['ref'] ); if ( ! $reusable_block || 'wp_block' !== $reusable_block->post_type ) { return ''; } if ( isset( $seen_refs[ $attributes['ref'] ] ) ) { // WP_DEBUG_DISPLAY must only be honored when WP_DEBUG. This precedent // is set in `wp_debug_mode()`. $is_debug = WP_DEBUG && WP_DEBUG_DISPLAY; return $is_debug ? // translators: Visible only in the front end, this warning takes the place of a faulty block. __( '[block rendering halted]' ) : ''; } if ( 'publish' !== $reusable_block->post_status || ! empty( $reusable_block->post_password ) ) { return ''; } $seen_refs[ $attributes['ref'] ] = true; // Handle embeds for reusable blocks. global $wp_embed; $content = $wp_embed->run_shortcode( $reusable_block->post_content ); $content = $wp_embed->autoembed( $content ); // Back compat. // For blocks that have not been migrated in the editor, add some back compat // so that front-end rendering continues to work. // This matches the `v2` deprecation. Removes the inner `values` property // from every item. if ( isset( $attributes['content'] ) ) { foreach ( $attributes['content'] as &$content_data ) { if ( isset( $content_data['values'] ) ) { $is_assoc_array = is_array( $content_data['values'] ) && ! wp_is_numeric_array( $content_data['values'] ); if ( $is_assoc_array ) { $content_data = $content_data['values']; } } } } // This matches the `v1` deprecation. Rename `overrides` to `content`. if ( isset( $attributes['overrides'] ) && ! isset( $attributes['content'] ) ) { $attributes['content'] = $attributes['overrides']; } // Apply Block Hooks. $content = apply_block_hooks_to_content_from_post_object( $content, $reusable_block ); /** * We attach the blocks from $content as inner blocks to the Synced Pattern block instance. * This ensures that block context available to the Synced Pattern block instance is provided to * those blocks. */ $block_instance->parsed_block['innerBlocks'] = parse_blocks( $content ); $block_instance->parsed_block['innerContent'] = array_fill( 0, count( $block_instance->parsed_block['innerBlocks'] ), null ); if ( method_exists( $block_instance, 'refresh_context_dependents' ) ) { // WP_Block::refresh_context_dependents() was introduced in WordPress 6.8. $block_instance->refresh_context_dependents(); } else { // This branch can be removed once Gutenberg requires WordPress 6.8 or later. if ( ! class_exists( 'WP_Block_Cloner' ) ) { // phpcs:ignore Gutenberg.Commenting.SinceTag.MissingClassSinceTag class WP_Block_Cloner extends WP_Block { /** * Static methods of subclasses have access to protected properties * of instances of the parent class. * In this case, this gives us access to `available_context` and `registry`. */ // phpcs:ignore Gutenberg.Commenting.SinceTag.MissingMethodSinceTag public static function clone_instance( $instance ) { return new WP_Block( $instance->parsed_block, $instance->available_context, $instance->registry ); } } } $block_instance = WP_Block_Cloner::clone_instance( $block_instance ); } $content = $block_instance->render( array( 'dynamic' => false ) ); unset( $seen_refs[ $attributes['ref'] ] ); return $content; } /** * Registers the `core/block` block. * * @since 5.3.0 */ function register_block_core_block() { register_block_type_from_metadata( __DIR__ . '/block', array( 'render_callback' => 'render_block_core_block', ) ); } add_action( 'init', 'register_block_core_block' );
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
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
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
gallery.php
8.9K
V
E
R
D
home-link.php
5.3K
V
E
R
D
icon.php
4K
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-overlay-close.php
1.7K
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-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
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-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