From 28af9eafb0e168f78966af5a89b13bc10e967b74 Mon Sep 17 00:00:00 2001 From: Sergey Biryukov Date: Mon, 25 Sep 2023 15:36:18 +0000 Subject: [PATCH] Coding Standards: Fix a few newly introduced WPCS issues. Follow-up to [56570], [56573], [56589], [56604], [56612], [56620], [56629], [56631], [56638], [56642], [56644], [56649]. Props jrf. See #59161, #58831. Built from https://develop.svn.wordpress.org/trunk@56680 git-svn-id: http://core.svn.wordpress.org/trunk@56192 1a063a9b-81f0-0310-95a4-ce76da25c4cd --- wp-admin/options-general.php | 2 +- wp-admin/plugins.php | 2 +- wp-admin/user-edit.php | 2 +- wp-includes/block-supports/elements.php | 2 +- wp-includes/blocks.php | 33 +++++++++++++++---------- wp-includes/media.php | 2 +- wp-includes/taxonomy.php | 4 +-- wp-includes/version.php | 2 +- 8 files changed, 28 insertions(+), 21 deletions(-) diff --git a/wp-admin/options-general.php b/wp-admin/options-general.php index 9d0102f5ad..490a138580 100644 --- a/wp-admin/options-general.php +++ b/wp-admin/options-general.php @@ -140,7 +140,7 @@ if ( ! is_multisite() ) { ' . esc_html( $new_admin_email ) . '' diff --git a/wp-admin/plugins.php b/wp-admin/plugins.php index 7ec59ae40b..13a28e127e 100644 --- a/wp-admin/plugins.php +++ b/wp-admin/plugins.php @@ -690,7 +690,7 @@ if ( isset( $_GET['error'] ) ) { ); } elseif ( isset( $_GET['deleted'] ) ) { - $delete_result = get_transient( 'plugins_delete_result_' . $user_ID ); + $delete_result = get_transient( 'plugins_delete_result_' . $user_ID ); // Delete it once we're done. delete_transient( 'plugins_delete_result_' . $user_ID ); diff --git a/wp-admin/user-edit.php b/wp-admin/user-edit.php index d9b630e058..04bf5ac512 100644 --- a/wp-admin/user-edit.php +++ b/wp-admin/user-edit.php @@ -550,7 +550,7 @@ switch ( $action ) { $new_email = get_user_meta( $current_user->ID, '_new_email', true ); if ( $new_email && $new_email['newemail'] !== $current_user->user_email && $profile_user->ID === $current_user->ID ) : - $pending_change_message = sprintf( + $pending_change_message = sprintf( /* translators: %s: New email. */ __( 'There is a pending change of your email to %s.' ), '' . esc_html( $new_email['newemail'] ) . '' diff --git a/wp-includes/block-supports/elements.php b/wp-includes/block-supports/elements.php index a388ad403f..f5469f00b3 100644 --- a/wp-includes/block-supports/elements.php +++ b/wp-includes/block-supports/elements.php @@ -98,7 +98,7 @@ function wp_render_elements_support( $block_content, $block ) { foreach ( $element_config['paths'] as $path ) { if ( null !== _wp_array_get( $block['attrs'], explode( '.', $path ), null ) ) { - $element_colors_set++; + ++$element_colors_set; } } } diff --git a/wp-includes/blocks.php b/wp-includes/blocks.php index 323719efc4..be387b89a9 100644 --- a/wp-includes/blocks.php +++ b/wp-includes/blocks.php @@ -790,20 +790,20 @@ function make_before_block_visitor( $context ) { * Furthermore, prepend the markup for any blocks hooked `before` the given block and as its parent's * `first_child`, respectively, to the serialized markup for the given block. * - * @param array $block The block to inject the theme attribute into, and hooked blocks before. - * @param array $parent The parent block of the given block. - * @param array $prev The previous sibling block of the given block. + * @param array $block The block to inject the theme attribute into, and hooked blocks before. + * @param array $parent_block The parent block of the given block. + * @param array $prev The previous sibling block of the given block. * @return string The serialized markup for the given block, with the markup for any hooked blocks prepended to it. */ - return function( &$block, $parent = null, $prev = null ) use ( $context ) { + return function ( &$block, $parent_block = null, $prev = null ) use ( $context ) { _inject_theme_attribute_in_template_part_block( $block ); $markup = ''; - if ( $parent && ! $prev ) { + if ( $parent_block && ! $prev ) { // Candidate for first-child insertion. $relative_position = 'first_child'; - $anchor_block_type = $parent['blockName']; + $anchor_block_type = $parent_block['blockName']; $hooked_block_types = array_keys( get_hooked_blocks( $anchor_block_type, $relative_position ) ); /** * Filters the list of hooked block types for a given anchor block type and relative position. @@ -856,12 +856,12 @@ function make_after_block_visitor( $context ) { * Append the markup for any blocks hooked `after` the given block and as its parent's * `last_child`, respectively, to the serialized markup for the given block. * - * @param array $block The block to inject the hooked blocks after. - * @param array $parent The parent block of the given block. - * @param array $next The next sibling block of the given block. + * @param array $block The block to inject the hooked blocks after. + * @param array $parent_block The parent block of the given block. + * @param array $next The next sibling block of the given block. * @return string The serialized markup for the given block, with the markup for any hooked blocks appended to it. */ - return function( &$block, $parent = null, $next = null ) use ( $context ) { + return function ( &$block, $parent_block = null, $next = null ) use ( $context ) { $markup = ''; $relative_position = 'after'; @@ -873,10 +873,10 @@ function make_after_block_visitor( $context ) { $markup .= get_comment_delimited_block_content( $hooked_block_type, array(), '' ); } - if ( $parent && ! $next ) { + if ( $parent_block && ! $next ) { // Candidate for last-child insertion. $relative_position = 'last_child'; - $anchor_block_type = $parent['blockName']; + $anchor_block_type = $parent_block['blockName']; $hooked_block_types = array_keys( get_hooked_blocks( $anchor_block_type, $relative_position ) ); /** This filter is documented in wp-includes/blocks.php */ $hooked_block_types = apply_filters( 'hooked_block_types', $hooked_block_types, $relative_position, $anchor_block_type, $context ); @@ -1059,6 +1059,7 @@ function traverse_and_serialize_block( $block, $pre_callback = null, $post_callb $prev = 0 === $block_index ? null : $block['innerBlocks'][ $block_index - 1 ]; + $block_content .= call_user_func_array( $pre_callback, array( &$inner_block, $block, $prev ) @@ -1071,12 +1072,13 @@ function traverse_and_serialize_block( $block, $pre_callback = null, $post_callb $next = count( $block['innerBlocks'] ) - 1 === $block_index ? null : $block['innerBlocks'][ $block_index + 1 ]; + $block_content .= call_user_func_array( $post_callback, array( &$inner_block, $block, $next ) ); } - $block_index++; + ++$block_index; } } @@ -1130,22 +1132,27 @@ function traverse_and_serialize_blocks( $blocks, $pre_callback = null, $post_cal $prev = 0 === $index ? null : $blocks[ $index - 1 ]; + $result .= call_user_func_array( $pre_callback, array( &$block, null, $prev ) // At the top level, there is no parent block to pass to the callback. ); } + $result .= traverse_and_serialize_block( $block, $pre_callback, $post_callback ); + if ( is_callable( $post_callback ) ) { $next = count( $blocks ) - 1 === $index ? null : $blocks[ $index + 1 ]; + $result .= call_user_func_array( $post_callback, array( &$block, null, $next ) // At the top level, there is no parent block to pass to the callback. ); } } + return $result; } diff --git a/wp-includes/media.php b/wp-includes/media.php index 56624bdc6b..7febe0c063 100644 --- a/wp-includes/media.php +++ b/wp-includes/media.php @@ -5730,7 +5730,7 @@ function wp_get_loading_optimization_attributes( $tag_name, $attr, $context ) { if ( null === $maybe_in_viewport ) { $header_enforced_contexts = array( 'template_part_' . WP_TEMPLATE_PART_AREA_HEADER => true, - 'get_header_image_tag' => true, + 'get_header_image_tag' => true, ); /** diff --git a/wp-includes/taxonomy.php b/wp-includes/taxonomy.php index be1faaeba5..f0e3be17d3 100644 --- a/wp-includes/taxonomy.php +++ b/wp-includes/taxonomy.php @@ -231,8 +231,8 @@ function create_initial_taxonomies() { 'publicly_queryable' => false, 'hierarchical' => false, 'labels' => array( - 'name' => _x( 'Pattern Categories', 'taxonomy general name' ), - 'singular_name' => _x( 'Pattern Category', 'taxonomy singular name' ), + 'name' => _x( 'Pattern Categories', 'taxonomy general name' ), + 'singular_name' => _x( 'Pattern Category', 'taxonomy singular name' ), ), 'query_var' => false, 'rewrite' => false, diff --git a/wp-includes/version.php b/wp-includes/version.php index 83ce74b60a..679a6ad3f5 100644 --- a/wp-includes/version.php +++ b/wp-includes/version.php @@ -16,7 +16,7 @@ * * @global string $wp_version */ -$wp_version = '6.4-alpha-56679'; +$wp_version = '6.4-alpha-56680'; /** * Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.