mirror of
https://github.com/WordPress/WordPress.git
synced 2024-11-08 03:40:20 +01:00
cbc1c955d8
This patch introduces a new class: `WP_Token_Map`, designed for efficient lookup and translation of static mappings between string keys or tokens, and string replacements (for example, HTML character references). The Token Map imposes certain restrictions on the byte length of the lookup tokens and their replacements, but is a highly-optimized data structure for mappings with a very high number of tokens. Developed in https://github.com/WordPress/wordpress-develop/pull/5373 Discussed in https://core.trac.wordpress.org/ticket/60698 Fixes #60698. Props: dmsnell, gziolo, jonsurrell, jorbin. Built from https://develop.svn.wordpress.org/trunk@58188 git-svn-id: http://core.svn.wordpress.org/trunk@57651 1a063a9b-81f0-0310-95a4-ce76da25c4cd
72 lines
2.2 KiB
PHP
72 lines
2.2 KiB
PHP
<?php
|
|
/**
|
|
* Server-side rendering of the `core/media-text` block.
|
|
*
|
|
* @package WordPress
|
|
*/
|
|
|
|
/**
|
|
* Renders the `core/media-text` block on server.
|
|
*
|
|
* @since 6.6.0
|
|
*
|
|
* @param array $attributes The block attributes.
|
|
* @param string $content The block rendered content.
|
|
*
|
|
* @return string Returns the Media & Text block markup, if useFeaturedImage is true.
|
|
*/
|
|
function render_block_core_media_text( $attributes, $content ) {
|
|
if ( false === $attributes['useFeaturedImage'] ) {
|
|
return $content;
|
|
}
|
|
|
|
if ( in_the_loop() ) {
|
|
update_post_thumbnail_cache();
|
|
}
|
|
|
|
$current_featured_image = get_the_post_thumbnail_url();
|
|
if ( ! $current_featured_image ) {
|
|
return $content;
|
|
}
|
|
|
|
$image_tag = '<figure class="wp-block-media-text__media"><img>';
|
|
$content = preg_replace( '/<figure\s+class="wp-block-media-text__media">/', $image_tag, $content );
|
|
|
|
$processor = new WP_HTML_Tag_Processor( $content );
|
|
if ( isset( $attributes['imageFill'] ) && $attributes['imageFill'] ) {
|
|
$position = '50% 50%';
|
|
if ( isset( $attributes['focalPoint'] ) ) {
|
|
$position = round( $attributes['focalPoint']['x'] * 100 ) . '% ' . round( $attributes['focalPoint']['y'] * 100 ) . '%';
|
|
}
|
|
$processor->next_tag( 'figure' );
|
|
$processor->set_attribute( 'style', 'background-image:url(' . esc_url( $current_featured_image ) . ');background-position:' . $position . ';' );
|
|
}
|
|
$processor->next_tag( 'img' );
|
|
$media_size_slug = 'full';
|
|
if ( isset( $attributes['mediaSizeSlug'] ) ) {
|
|
$media_size_slug = $attributes['mediaSizeSlug'];
|
|
}
|
|
$processor->set_attribute( 'src', esc_url( $current_featured_image ) );
|
|
$processor->set_attribute( 'class', 'wp-image-' . get_post_thumbnail_id() . ' size-' . $media_size_slug );
|
|
$processor->set_attribute( 'alt', trim( strip_tags( get_post_meta( get_post_thumbnail_id(), '_wp_attachment_image_alt', true ) ) ) );
|
|
|
|
$content = $processor->get_updated_html();
|
|
|
|
return $content;
|
|
}
|
|
|
|
/**
|
|
* Registers the `core/media-text` block renderer on server.
|
|
*
|
|
* @since 6.6.0
|
|
*/
|
|
function register_block_core_media_text() {
|
|
register_block_type_from_metadata(
|
|
__DIR__ . '/media-text',
|
|
array(
|
|
'render_callback' => 'render_block_core_media_text',
|
|
)
|
|
);
|
|
}
|
|
add_action( 'init', 'register_block_core_media_text' );
|