Changeset 54874
- Timestamp:
- 11/24/2022 10:50:16 PM (2 years ago)
- Location:
- trunk/src/wp-includes/block-supports
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-includes/block-supports/elements.php
r54873 r54874 14 14 * 15 15 * @param array $block Block object. 16 * @return string 16 * @return string The unique class name. 17 17 */ 18 18 function wp_get_elements_class_name( $block ) { … … 93 93 * @access private 94 94 * 95 * @param string|null $pre_render The pre-rendered content. Default null. 96 * @param array $block The block being rendered. 97 * 95 * @param string|null $pre_render The pre-rendered content. Default null. 96 * @param array $block The block being rendered. 98 97 * @return null 99 98 */ -
trunk/src/wp-includes/block-supports/generated-classname.php
r54873 r54874 14 14 * @access private 15 15 * 16 * @param 16 * @param string $block_name Block Name. 17 17 * @return string Generated classname. 18 18 */ … … 31 31 * @since 5.6.0 32 32 * 33 * @param string 34 * @param string 33 * @param string $class_name The current applied classname. 34 * @param string $block_name The block name. 35 35 */ 36 36 $classname = apply_filters( 'block_default_classname', $classname, $block_name ); … … 46 46 * @access private 47 47 * 48 * @param WP_Block_Type $block_type Block Type. 49 * 48 * @param WP_Block_Type $block_type Block Type. 50 49 * @return array Block CSS classes and inline styles. 51 50 */ -
trunk/src/wp-includes/block-supports/spacing.php
r54873 r54874 2 2 /** 3 3 * Spacing block support flag. 4 4 * 5 5 * For backwards compatibility, this remains separate to the dimensions.php 6 6 * block support despite both belonging under a single panel in the editor.
Note: See TracChangeset
for help on using the changeset viewer.