Make WordPress Core


Ignore:
Timestamp:
08/17/2018 01:50:26 AM (6 years ago)
Author:
pento
Message:

Coding Standards: Upgrade WPCS to 1.0.0

WPCS 1.0.0 includes a bunch of new auto-fixers, which drops the number of coding standards issues across WordPress significantly. Prior to running the auto-fixers, there were 15,312 issues detected. With this commit, we now drop to 4,769 issues.

This change includes three notable additions:

  • Multiline function calls must now put each parameter on a new line.
  • Auto-formatting files is now part of the grunt precommit script.
  • Auto-fixable coding standards issues will now cause Travis failures.

Fixes #44600.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/wp-admin/includes/class-wp-plugin-install-list-table.php

    r43436 r43571  
    144144
    145145        $args = array(
    146             'page'              => $paged,
    147             'per_page'          => $per_page,
     146            'page'     => $paged,
     147            'per_page' => $per_page,
    148148            // Send the locale to the API so it can provide context-sensitive results.
    149             'locale'            => get_user_locale(),
     149            'locale'   => get_user_locale(),
    150150        );
    151151
     
    257257
    258258            wp_localize_script(
    259                 'updates', '_wpUpdatesItemCounts', array(
     259                'updates',
     260                '_wpUpdatesItemCounts',
     261                array(
    260262                    'plugins' => $js_plugins,
    261263                    'totals'  => wp_get_update_data(),
     
    274276        <?php } else { ?>
    275277            <div class="no-plugin-results"><?php _e( 'No plugins found. Try a different search.' ); ?></div>
    276         <?php
     278            <?php
    277279}
    278280    }
     
    309311
    310312        $this->screen->render_screen_reader_content( 'heading_views' );
    311 ?>
     313        ?>
    312314<div class="wp-filter">
    313315    <ul class="filter-links">
     
    322324    </ul>
    323325
    324     <?php install_search_form(); ?>
     326        <?php install_search_form(); ?>
    325327</div>
    326 <?php
     328        <?php
    327329    }
    328330
     
    341343        $this->display_tablenav( 'top' );
    342344
    343 ?>
     345        ?>
    344346<div class="wp-list-table <?php echo implode( ' ', $this->get_table_classes() ); ?>">
    345 <?php
    346     $this->screen->render_screen_reader_content( 'heading_list' );
    347 ?>
     347        <?php
     348        $this->screen->render_screen_reader_content( 'heading_list' );
     349        ?>
    348350    <div id="the-list"<?php echo $data_attr; ?>>
    349351        <?php $this->display_rows_or_placeholder(); ?>
    350352    </div>
    351353</div>
    352 <?php
     354        <?php
    353355        $this->display_tablenav( 'bottom' );
    354356    }
     
    366368        if ( 'top' === $which ) {
    367369            wp_referer_field();
    368         ?>
     370            ?>
    369371            <div class="tablenav top">
    370372                <div class="alignleft actions">
     
    386388                <br class="clear" />
    387389            </div>
    388         <?php
     390            <?php
    389391}
    390392    }
     
    561563                                    'action'   => 'activate',
    562564                                    'plugin'   => $status['file'],
    563                                 ), network_admin_url( 'plugins.php' )
     565                                ),
     566                                network_admin_url( 'plugins.php' )
    564567                            );
    565568
     
    622625
    623626            $last_updated_timestamp = strtotime( $plugin['last_updated'] );
    624         ?>
     627            ?>
    625628        <div class="plugin-card plugin-card-<?php echo sanitize_html_class( $plugin['slug'] ); ?>">
    626629            <?php
     
    652655                        );
    653656                    }
    654                 } elseif ( ! $compatible_php  ) {
     657                } elseif ( ! $compatible_php ) {
    655658                    _e( 'This plugin doesn&#8217;t work with your version of PHP. ' );
    656659                    printf(
     
    704707                    if ( $plugin['active_installs'] >= 1000000 ) {
    705708                        $active_installs_millions = floor( $plugin['active_installs'] / 1000000 );
    706                         $active_installs_text = sprintf(
     709                        $active_installs_text     = sprintf(
    707710                            _nx( '%s+ Million', '%s+ Million', $active_installs_millions, 'Active plugin installations' ),
    708711                            number_format_i18n( $active_installs_millions )
     
    729732            </div>
    730733        </div>
    731         <?php
     734            <?php
    732735        }
    733736
Note: See TracChangeset for help on using the changeset viewer.