# gutenberg/7.4.0/build/block-library/blocks/block.php

Gutenberg, version 7.4.0. 49 lines.

- Page: https://pluginprobe.com/plugins/gutenberg/7.4.0/code/build/block-library/blocks/block.php
- Raw: https://pluginprobe.com/plugins/gutenberg/7.4.0/raw/build/block-library/blocks/block.php
- Modified: 2019-04-03T01:40:20+00:00

Line numbers below start at 1. Link to a line or a range by appending a fragment to the
page URL, for example `https://pluginprobe.com/plugins/gutenberg/7.4.0/code/build/block-library/blocks/block.php#L10-L20`.

```php
<?php
/**
 * Server-side rendering of the `core/block` block.
 *
 * @package WordPress
 */

/**
 * Renders the `core/block` block on server.
 *
 * @param array $attributes The block attributes.
 *
 * @return string Rendered HTML of the referenced block.
 */
function gutenberg_render_block_core_block( $attributes ) {
	if ( empty( $attributes['ref'] ) ) {
		return '';
	}

	$reusable_block = get_post( $attributes['ref'] );
	if ( ! $reusable_block || 'wp_block' !== $reusable_block->post_type ) {
		return '';
	}

	if ( 'publish' !== $reusable_block->post_status || ! empty( $reusable_block->post_password ) ) {
		return '';
	}

	return do_blocks( $reusable_block->post_content );
}

/**
 * Registers the `core/block` block.
 */
function gutenberg_register_block_core_block() {
	register_block_type(
		'core/block',
		array(
			'attributes'      => array(
				'ref' => array(
					'type' => 'number',
				),
			),
			'render_callback' => 'gutenberg_render_block_core_block',
		)
	);
}
add_action( 'init', 'gutenberg_register_block_core_block', 20 );

```
