mirror of
https://github.com/WordPress/WordPress.git
synced 2024-11-02 16:59:35 +01:00
ad48a15387
In the response to the discussion during the Dev Chat, I'm doing a first pass to keep WordPress packages up to date in the WordPress 5.8 release cycle. See https://github.com/WordPress/wordpress-develop/pull/1176 for more details. Props youknowriad, aristath, andraganescu. See #52991. Built from https://develop.svn.wordpress.org/trunk@50761 git-svn-id: http://core.svn.wordpress.org/trunk@50370 1a063a9b-81f0-0310-95a4-ce76da25c4cd
67 lines
1.8 KiB
PHP
67 lines
1.8 KiB
PHP
<?php
|
|
/**
|
|
* Padding block support flag.
|
|
*
|
|
* @package WordPress
|
|
* @since 5.8.0
|
|
*/
|
|
|
|
/**
|
|
* Registers the style block attribute for block types that support it.
|
|
*
|
|
* @since 5.8.0
|
|
* @access private
|
|
*
|
|
* @param WP_Block_Type $block_type Block Type.
|
|
*/
|
|
function wp_register_padding_support( $block_type ) {
|
|
$has_padding_support = block_has_support( $block_type, array( 'spacing', 'padding' ), false );
|
|
|
|
// Setup attributes and styles within that if needed.
|
|
if ( ! $block_type->attributes ) {
|
|
$block_type->attributes = array();
|
|
}
|
|
|
|
if ( $has_padding_support && ! array_key_exists( 'style', $block_type->attributes ) ) {
|
|
$block_type->attributes['style'] = array(
|
|
'type' => 'object',
|
|
);
|
|
}
|
|
}
|
|
|
|
/**
|
|
* Add CSS classes for block padding to the incoming attributes array.
|
|
* This will be applied to the block markup in the front-end.
|
|
*
|
|
* @since 5.8.0
|
|
* @access private
|
|
*
|
|
* @param WP_Block_Type $block_type Block Type.
|
|
* @param array $block_attributes Block attributes.
|
|
*
|
|
* @return array Block padding CSS classes and inline styles.
|
|
*/
|
|
function wp_apply_padding_support( $block_type, $block_attributes ) {
|
|
$has_padding_support = block_has_support( $block_type, array( 'spacing', 'padding' ), false );
|
|
$styles = array();
|
|
if ( $has_padding_support ) {
|
|
$padding_value = _wp_array_get( $block_attributes, array( 'style', 'spacing', 'padding' ), null );
|
|
if ( null !== $padding_value ) {
|
|
foreach ( $padding_value as $key => $value ) {
|
|
$styles[] = sprintf( 'padding-%s: %s;', $key, $value );
|
|
}
|
|
}
|
|
}
|
|
|
|
return empty( $styles ) ? array() : array( 'style' => implode( ' ', $styles ) );
|
|
}
|
|
|
|
// Register the block support.
|
|
WP_Block_Supports::get_instance()->register(
|
|
'padding',
|
|
array(
|
|
'register_attribute' => 'wp_register_padding_support',
|
|
'apply' => 'wp_apply_padding_support',
|
|
)
|
|
);
|