mirror of
https://github.com/WordPress/WordPress.git
synced 2024-11-02 16:59:35 +01:00
bfbf1bc053
Package updates for bug and regression fixes: - `@wordpress/block-directory: 3.15.8` - `@wordpress/block-editor: 10.0.7` - `@wordpress/block-library: 7.14.8` - `@wordpress/components: 21.0.6` - `@wordpress/customize-widgets: 3.14.8` - `@wordpress/edit-post: 6.14.8` - `@wordpress/edit-site: 4.14.10` - `@wordpress/edit-widgets: 4.14.8` - `@wordpress/editor: 12.16.7` - `@wordpress/format-library: 3.15.7` - `@wordpress/interface: 4.16.6` - `@wordpress/list-reusable-blocks: 3.15.6` - `@wordpress/nux: 5.15.6` - `@wordpress/preferences: 2.9.6` - `@wordpress/reusable-blocks: 3.15.7` - `@wordpress/server-side-render: 3.15.6` - `@wordpress/widgets: 2.15.7` Original PRs from Gutenberg repository: - [https://github.com/WordPress/gutenberg/pull/45041 #45041 Font Size Picker Hint: Fallback to font size `slug` if `name` is undefined] - [https://github.com/WordPress/gutenberg/pull/45045 #45045 Add: Missing output escaping on some blocks] - [https://github.com/WordPress/gutenberg/pull/44999 #44999 Escape comment author URL] - [https://github.com/WordPress/gutenberg/pull/44972 #44972 Navigator: restore focus only once per location] - [https://github.com/WordPress/gutenberg/pull/44858 #44858 Spacing Sizes Control: Try improving layout spacing] - [https://github.com/WordPress/gutenberg/pull/44878 #44878 Fix: Inspector is usable on the top level block even if it is content locked] - [https://github.com/WordPress/gutenberg/pull/44809 #44809 Fix list outdents on Enter in quote block] - [https://github.com/WordPress/gutenberg/pull/44864 #44864 List v2: fix selection when creating paragraph from empty list item] - [https://github.com/WordPress/gutenberg/pull/44853 #44853 Fix overflowing patterns] - [https://github.com/WordPress/gutenberg/pull/45050 #45050 Fix visibility of nested Group block appender] - [https://github.com/WordPress/gutenberg/pull/44887 #44887 wp-env: Use case insensitive regex when checking WP version string] Follow-up to [54257], [54335], [54383], [54483], [54486], [54490]. Props bernhard-reiter, audrasjb. See #56467. Built from https://develop.svn.wordpress.org/trunk@54632 git-svn-id: http://core.svn.wordpress.org/trunk@54184 1a063a9b-81f0-0310-95a4-ce76da25c4cd
150 lines
3.8 KiB
PHP
150 lines
3.8 KiB
PHP
<?php
|
|
/**
|
|
* Server-side rendering of the `core/legacy-widget` block.
|
|
*
|
|
* @package WordPress
|
|
*/
|
|
|
|
/**
|
|
* Renders the 'core/legacy-widget' block.
|
|
*
|
|
* @param array $attributes The block attributes.
|
|
*
|
|
* @return string Rendered block.
|
|
*/
|
|
function render_block_core_legacy_widget( $attributes ) {
|
|
global $wp_widget_factory;
|
|
|
|
if ( isset( $attributes['id'] ) ) {
|
|
$sidebar_id = wp_find_widgets_sidebar( $attributes['id'] );
|
|
return wp_render_widget( $attributes['id'], $sidebar_id );
|
|
}
|
|
|
|
if ( ! isset( $attributes['idBase'] ) ) {
|
|
return '';
|
|
}
|
|
|
|
$id_base = $attributes['idBase'];
|
|
$widget_key = $wp_widget_factory->get_widget_key( $id_base );
|
|
$widget_object = $wp_widget_factory->get_widget_object( $id_base );
|
|
|
|
if ( ! $widget_key || ! $widget_object ) {
|
|
return '';
|
|
}
|
|
|
|
if ( isset( $attributes['instance']['encoded'], $attributes['instance']['hash'] ) ) {
|
|
$serialized_instance = base64_decode( $attributes['instance']['encoded'] );
|
|
if ( ! hash_equals( wp_hash( $serialized_instance ), (string) $attributes['instance']['hash'] ) ) {
|
|
return '';
|
|
}
|
|
$instance = unserialize( $serialized_instance );
|
|
} else {
|
|
$instance = array();
|
|
}
|
|
|
|
$args = array(
|
|
'widget_id' => $widget_object->id,
|
|
'widget_name' => $widget_object->name,
|
|
);
|
|
|
|
ob_start();
|
|
the_widget( $widget_key, $instance, $args );
|
|
return ob_get_clean();
|
|
}
|
|
|
|
/**
|
|
* Registers the 'core/legacy-widget' block.
|
|
*/
|
|
function register_block_core_legacy_widget() {
|
|
register_block_type_from_metadata(
|
|
__DIR__ . '/legacy-widget',
|
|
array(
|
|
'render_callback' => 'render_block_core_legacy_widget',
|
|
)
|
|
);
|
|
}
|
|
|
|
add_action( 'init', 'register_block_core_legacy_widget' );
|
|
|
|
/**
|
|
* Intercepts any request with legacy-widget-preview in the query param and, if
|
|
* set, renders a page containing a preview of the requested Legacy Widget
|
|
* block.
|
|
*/
|
|
function handle_legacy_widget_preview_iframe() {
|
|
if ( empty( $_GET['legacy-widget-preview'] ) ) {
|
|
return;
|
|
}
|
|
|
|
if ( ! current_user_can( 'edit_theme_options' ) ) {
|
|
return;
|
|
}
|
|
|
|
define( 'IFRAME_REQUEST', true );
|
|
|
|
?>
|
|
<!doctype html>
|
|
<html <?php language_attributes(); ?>>
|
|
<head>
|
|
<meta charset="<?php bloginfo( 'charset' ); ?>" />
|
|
<meta name="viewport" content="width=device-width, initial-scale=1" />
|
|
<link rel="profile" href="https://gmpg.org/xfn/11" />
|
|
<?php wp_head(); ?>
|
|
<style>
|
|
/* Reset theme styles */
|
|
html, body, #page, #content {
|
|
padding: 0 !important;
|
|
margin: 0 !important;
|
|
}
|
|
|
|
/* Hide root level text nodes */
|
|
body {
|
|
font-size: 0 !important;
|
|
}
|
|
|
|
/* Hide non-widget elements */
|
|
body *:not(#page):not(#content):not(.widget):not(.widget *) {
|
|
display: none !important;
|
|
font-size: 0 !important;
|
|
height: 0 !important;
|
|
left: -9999px !important;
|
|
max-height: 0 !important;
|
|
max-width: 0 !important;
|
|
opacity: 0 !important;
|
|
pointer-events: none !important;
|
|
position: absolute !important;
|
|
top: -9999px !important;
|
|
transform: translate(-9999px, -9999px) !important;
|
|
visibility: hidden !important;
|
|
z-index: -999 !important;
|
|
}
|
|
|
|
/* Restore widget font-size */
|
|
.widget {
|
|
font-size: var(--global--font-size-base);
|
|
}
|
|
</style>
|
|
</head>
|
|
<body <?php body_class(); ?>>
|
|
<div id="page" class="site">
|
|
<div id="content" class="site-content">
|
|
<?php
|
|
$registry = WP_Block_Type_Registry::get_instance();
|
|
$block = $registry->get_registered( 'core/legacy-widget' );
|
|
echo $block->render( $_GET['legacy-widget-preview'] );
|
|
?>
|
|
</div><!-- #content -->
|
|
</div><!-- #page -->
|
|
<?php wp_footer(); ?>
|
|
</body>
|
|
</html>
|
|
<?php
|
|
|
|
exit;
|
|
}
|
|
|
|
// Use admin_init instead of init to ensure get_current_screen function is already available.
|
|
// This isn't strictly required, but enables better compatibility with existing plugins.
|
|
// See: https://github.com/WordPress/gutenberg/issues/32624.
|
|
add_action( 'admin_init', 'handle_legacy_widget_preview_iframe', 20 );
|