kollapsminoriteten/wp-includes/blocks/image.php

49 lines
1.3 KiB
PHP
Raw Normal View History

2022-04-02 10:26:41 +02:00
<?php
/**
* Server-side rendering of the `core/image` block.
*
* @package WordPress
*/
/**
* Renders the `core/image` block on the server,
* adding a data-id attribute to the element if core/gallery has added on pre-render.
*
2022-06-16 14:03:35 +02:00
* @param array $attributes The block attributes.
* @param string $content The block content.
2022-04-02 10:26:41 +02:00
* @return string Returns the block content with the data-id attribute added.
*/
function render_block_core_image( $attributes, $content ) {
2023-09-26 10:33:34 +02:00
$processor = new WP_HTML_Tag_Processor( $content );
$processor->next_tag( 'img' );
if ( $processor->get_attribute( 'src' ) === null ) {
return '';
}
2022-04-02 10:26:41 +02:00
if ( isset( $attributes['data-id'] ) ) {
// Add the data-id="$id" attribute to the img element
// to provide backwards compatibility for the Gallery Block,
// which now wraps Image Blocks within innerBlocks.
// The data-id attribute is added in a core/gallery `render_block_data` hook.
2023-09-26 10:33:34 +02:00
$processor->set_attribute( 'data-id', $attributes['data-id'] );
2022-04-02 10:26:41 +02:00
}
2023-09-26 10:33:34 +02:00
return $processor->get_updated_html();
}
2022-04-02 10:26:41 +02:00
/**
* Registers the `core/image` block on server.
*/
function register_block_core_image() {
2023-09-26 10:33:34 +02:00
2022-04-02 10:26:41 +02:00
register_block_type_from_metadata(
__DIR__ . '/image',
array(
'render_callback' => 'render_block_core_image',
)
);
}
add_action( 'init', 'register_block_core_image' );