PluginProbe
Gutenberg / 7.4.0
Gutenberg v7.4.0
23.9.1 23.9.0 23.8.0 23.7.2 23.7.1 23.7.0 23.6.1 23.6.2 23.6.0 23.5.3 23.5.2 23.5.1 23.5.0 23.4.0 23.3.2 23.3.1 23.3.0 23.2.0 23.2.1 23.2.2 23.1.1 23.1.0 23.0.1 12.6.0 7.4.0 All 402 releases
gutenberg / build / block-library / blocks / block.php

block.php in Gutenberg 7.4.0, at build/block-library/blocks/block.php

49 lines 1.0 KB
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 <?php
2 /**
3 * Server-side rendering of the `core/block` block.
4 *
5 * @package WordPress
6 */
7
8 /**
9 * Renders the `core/block` block on server.
10 *
11 * @param array $attributes The block attributes.
12 *
13 * @return string Rendered HTML of the referenced block.
14 */
15 function gutenberg_render_block_core_block( $attributes ) {
16 if ( empty( $attributes['ref'] ) ) {
17 return '';
18 }
19
20 $reusable_block = get_post( $attributes['ref'] );
21 if ( ! $reusable_block || 'wp_block' !== $reusable_block->post_type ) {
22 return '';
23 }
24
25 if ( 'publish' !== $reusable_block->post_status || ! empty( $reusable_block->post_password ) ) {
26 return '';
27 }
28
29 return do_blocks( $reusable_block->post_content );
30 }
31
32 /**
33 * Registers the `core/block` block.
34 */
35 function gutenberg_register_block_core_block() {
36 register_block_type(
37 'core/block',
38 array(
39 'attributes' => array(
40 'ref' => array(
41 'type' => 'number',
42 ),
43 ),
44 'render_callback' => 'gutenberg_render_block_core_block',
45 )
46 );
47 }
48 add_action( 'init', 'gutenberg_register_block_core_block', 20 );
49