Files
wordpress/wp-includes/block-bindings/post-data.php
cbravobernal 72c6f79c79 Block Bindings: Add postType to context for Post Data source
Adds a required `postType` context, which is used in the editor client side.

Props bernhard-reiter, cbravobernal.
Fixes #63994.

Built from https://develop.svn.wordpress.org/trunk@60778


git-svn-id: http://core.svn.wordpress.org/trunk@60114 1a063a9b-81f0-0310-95a4-ce76da25c4cd
2025-09-17 15:00:26 +00:00

69 lines
1.9 KiB
PHP

<?php
/**
* Post Data source for Block Bindings.
*
* @since 6.9.0
* @package WordPress
* @subpackage Block Bindings
*/
/**
* Gets value for Post Data source.
*
* @since 6.9.0
* @access private
*
* @param array $source_args Array containing arguments used to look up the source value.
* Example: array( "key" => "foo" ).
* @param WP_Block $block_instance The block instance.
* @return mixed The value computed for the source.
*/
function _block_bindings_post_data_get_value( array $source_args, $block_instance ) {
if ( empty( $source_args['key'] ) ) {
return null;
}
if ( empty( $block_instance->context['postId'] ) ) {
return null;
}
$post_id = $block_instance->context['postId'];
// If a post isn't public, we need to prevent unauthorized users from accessing the post data.
$post = get_post( $post_id );
if ( ( ! is_post_publicly_viewable( $post ) && ! current_user_can( 'read_post', $post_id ) ) || post_password_required( $post ) ) {
return null;
}
if ( 'date' === $source_args['key'] ) {
return esc_attr( get_the_date( 'c', $post_id ) );
}
if ( 'modified' === $source_args['key'] ) {
// Only return the modified date if it is later than the publishing date.
if ( get_the_modified_date( 'U', $post_id ) > get_the_date( 'U', $post_id ) ) {
return esc_attr( get_the_modified_date( 'c', $post_id ) );
} else {
return '';
}
}
}
/**
* Registers Post Data source in the block bindings registry.
*
* @since 6.9.0
* @access private
*/
function _register_block_bindings_post_data_source() {
register_block_bindings_source(
'core/post-data',
array(
'label' => _x( 'Post Data', 'block bindings source' ),
'get_value_callback' => '_block_bindings_post_data_get_value',
'uses_context' => array( 'postId', 'postType' ), // Both are needed on the client side.
)
);
}
add_action( 'init', '_register_block_bindings_post_data_source' );