Coding Standards: Correct equals sign alignment in various files.

This resolves a few WPCS warnings:
{{{
Equals sign not aligned with surrounding statements
}}}
so that the output of `composer format` is clean.

Follow-up to [55971], [56033], [56056], [56143], [56214].

Props jrf.
See #58831.
Built from https://develop.svn.wordpress.org/trunk@56273


git-svn-id: http://core.svn.wordpress.org/trunk@55785 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
Sergey Biryukov 2023-07-20 00:06:21 +00:00
parent e992dabb1a
commit 3a065bfb2c
7 changed files with 16 additions and 9 deletions

View File

@ -846,11 +846,12 @@ class WP_Debug_Data {
// Server time. // Server time.
$date = new DateTime( 'now', new DateTimeZone( 'UTC' ) ); $date = new DateTime( 'now', new DateTimeZone( 'UTC' ) );
$info['wp-server']['fields']['current'] = array(
$info['wp-server']['fields']['current'] = array(
'label' => __( 'Current time' ), 'label' => __( 'Current time' ),
'value' => $date->format( DateTime::ATOM ), 'value' => $date->format( DateTime::ATOM ),
); );
$info['wp-server']['fields']['utc-time'] = array( $info['wp-server']['fields']['utc-time'] = array(
'label' => __( 'Current UTC time' ), 'label' => __( 'Current UTC time' ),
'value' => $date->format( DateTime::RFC850 ), 'value' => $date->format( DateTime::RFC850 ),
); );

View File

@ -391,15 +391,15 @@ class WP_MS_Sites_List_Table extends WP_List_Table {
protected function get_sortable_columns() { protected function get_sortable_columns() {
if ( is_subdomain_install() ) { if ( is_subdomain_install() ) {
$abbr = __( 'Domain' ); $blogname_abbr = __( 'Domain' );
$blogname_orderby_text = __( 'Table ordered by Site Domain Name.' ); $blogname_orderby_text = __( 'Table ordered by Site Domain Name.' );
} else { } else {
$abbr = __( 'Path' ); $blogname_abbr = __( 'Path' );
$blogname_orderby_text = __( 'Table ordered by Site Path.' ); $blogname_orderby_text = __( 'Table ordered by Site Path.' );
} }
return array( return array(
'blogname' => array( 'blogname', false, $abbr, $blogname_orderby_text ), 'blogname' => array( 'blogname', false, $blogname_abbr, $blogname_orderby_text ),
'lastupdated' => array( 'lastupdated', true, __( 'Last Updated' ), __( 'Table ordered by Last Updated.' ) ), 'lastupdated' => array( 'lastupdated', true, __( 'Last Updated' ), __( 'Table ordered by Last Updated.' ) ),
'registered' => array( 'blog_id', true, _x( 'Registered', 'site' ), __( 'Table ordered by Site Registered Date.' ), 'desc' ), 'registered' => array( 'blog_id', true, _x( 'Registered', 'site' ), __( 'Table ordered by Site Registered Date.' ), 'desc' ),
); );

View File

@ -764,7 +764,12 @@ class WP_Posts_List_Table extends WP_List_Table {
$post_type = $this->screen->post_type; $post_type = $this->screen->post_type;
if ( 'page' === $post_type ) { if ( 'page' === $post_type ) {
$title_orderby_text = isset( $_GET['orderby'] ) ? __( 'Table ordered by Title.' ) : __( 'Table ordered by Hierarchical Menu Order and Title.' ); if ( isset( $_GET['orderby'] ) ) {
$title_orderby_text = __( 'Table ordered by Title.' );
} else {
$title_orderby_text = __( 'Table ordered by Hierarchical Menu Order and Title.' );
}
$sortables = array( $sortables = array(
'title' => array( 'title', false, __( 'Title' ), $title_orderby_text, 'asc' ), 'title' => array( 'title', false, __( 'Title' ), $title_orderby_text, 'asc' ),
'parent' => array( 'parent', false ), 'parent' => array( 'parent', false ),

View File

@ -964,7 +964,7 @@ JS;
return $eligible; return $eligible;
} }
$is_alias = (bool) ! $this->registered[ $handle ]->src; $is_alias = (bool) ! $this->registered[ $handle ]->src;
$intended_strategy = $this->get_data( $handle, 'strategy' ); $intended_strategy = $this->get_data( $handle, 'strategy' );
// For non-alias handles, an empty intended strategy filters all strategies. // For non-alias handles, an empty intended strategy filters all strategies.

View File

@ -5620,6 +5620,7 @@ function wp_get_loading_optimization_attributes( $tag_name, $attr, $context ) {
} }
return $loading_attributes; return $loading_attributes;
}; };
// Closure to increase media count for images with certain minimum threshold, mostly used for header images. // Closure to increase media count for images with certain minimum threshold, mostly used for header images.
$maybe_increase_content_media_count = static function() use ( $attr ) { $maybe_increase_content_media_count = static function() use ( $attr ) {
/** This filter is documented in wp-admin/includes/media.php */ /** This filter is documented in wp-admin/includes/media.php */

View File

@ -222,7 +222,7 @@ function do_shortcode( $content, $ignore_html = false ) {
} }
// Ensure this context is only added once if shortcodes are nested. // Ensure this context is only added once if shortcodes are nested.
$has_filter = has_filter( 'wp_get_attachment_image_context', '_filter_do_shortcode_context' ); $has_filter = has_filter( 'wp_get_attachment_image_context', '_filter_do_shortcode_context' );
$filter_added = false; $filter_added = false;
if ( ! $has_filter ) { if ( ! $has_filter ) {

View File

@ -16,7 +16,7 @@
* *
* @global string $wp_version * @global string $wp_version
*/ */
$wp_version = '6.4-alpha-56272'; $wp_version = '6.4-alpha-56273';
/** /**
* Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema. * Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.