mirror of
https://github.com/WordPress/WordPress.git
synced 2024-11-04 18:01:42 +01:00
0705b9daed
This brings a new version of the Gutenberg code from the [https://github.com/WordPress/gutenberg/tree/wp/6.0 wp/6.0 branch] into core. The following packages were updated: * `@wordpress/block-directory` to `3.4.12` * `@wordpress/block-editor` to `8.5.9` * `@wordpress/block-library` to `7.3.12` * `@wordpress/components` to `19.8.5` * `@wordpress/customize-widgets` to `3.3.12` * `@wordpress/edit-post` to `6.3.12` * `@wordpress/edit-site` to `4.3.12` * `@wordpress/edit-widgets` to `4.3.12` * `@wordpress/editor` to `12.5.9` * `@wordpress/format-library` to `3.4.9` * `@wordpress/icons` to `8.2.3` * `@wordpress/interface` to `4.5.6` * `@wordpress/list-reusable-blocks` to `3.4.5` * `@wordpress/nux` to `5.4.5` * `@wordpress/plugins` to `4.4.3` * `@wordpress/preferences` to `1.2.5` * `@wordpress/reusable-blocks` to `3.4.9` * `@wordpress/server-side-render` to `3.4.6` * `@wordpress/widgets` to `2.4.9` Props zieladam. See #56058. Built from https://develop.svn.wordpress.org/trunk@53644 git-svn-id: http://core.svn.wordpress.org/trunk@53203 1a063a9b-81f0-0310-95a4-ce76da25c4cd
59 lines
1.5 KiB
PHP
59 lines
1.5 KiB
PHP
<?php
|
|
/**
|
|
* Server-side rendering of the `core/comment-date` block.
|
|
*
|
|
* @package WordPress
|
|
*/
|
|
|
|
/**
|
|
* Renders the `core/comment-date` block on the server.
|
|
*
|
|
* @param array $attributes Block attributes.
|
|
* @param string $content Block default content.
|
|
* @param WP_Block $block Block instance.
|
|
* @return string Return the post comment's date.
|
|
*/
|
|
function render_block_core_comment_date( $attributes, $content, $block ) {
|
|
if ( ! isset( $block->context['commentId'] ) ) {
|
|
return '';
|
|
}
|
|
|
|
$comment = get_comment( $block->context['commentId'] );
|
|
if ( empty( $comment ) ) {
|
|
return '';
|
|
}
|
|
|
|
$classes = '';
|
|
|
|
$wrapper_attributes = get_block_wrapper_attributes( array( 'class' => $classes ) );
|
|
$formatted_date = get_comment_date(
|
|
isset( $attributes['format'] ) ? $attributes['format'] : '',
|
|
$comment
|
|
);
|
|
$link = get_comment_link( $comment );
|
|
|
|
if ( ! empty( $attributes['isLink'] ) ) {
|
|
$formatted_date = sprintf( '<a href="%1s">%2s</a>', esc_url( $link ), $formatted_date );
|
|
}
|
|
|
|
return sprintf(
|
|
'<div %1$s><time datetime="%2$s">%3$s</time></div>',
|
|
$wrapper_attributes,
|
|
esc_attr( get_comment_date( 'c', $comment ) ),
|
|
$formatted_date
|
|
);
|
|
}
|
|
|
|
/**
|
|
* Registers the `core/comment-date` block on the server.
|
|
*/
|
|
function register_block_core_comment_date() {
|
|
register_block_type_from_metadata(
|
|
__DIR__ . '/comment-date',
|
|
array(
|
|
'render_callback' => 'render_block_core_comment_date',
|
|
)
|
|
);
|
|
}
|
|
add_action( 'init', 'register_block_core_comment_date' );
|