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/upgrade.php

    r43243 r43571  
    148148            if ( $cat_id == null ) {
    149149                $wpdb->insert(
    150                     $wpdb->sitecategories, array(
     150                    $wpdb->sitecategories,
     151                    array(
    151152                        'cat_ID'            => 0,
    152153                        'cat_name'          => $cat_name,
     
    163164
    164165        $wpdb->insert(
    165             $wpdb->terms, array(
     166            $wpdb->terms,
     167            array(
    166168                'term_id'    => $cat_id,
    167169                'name'       => $cat_name,
     
    171173        );
    172174        $wpdb->insert(
    173             $wpdb->term_taxonomy, array(
     175            $wpdb->term_taxonomy,
     176            array(
    174177                'term_id'     => $cat_id,
    175178                'taxonomy'    => 'category',
     
    207210
    208211        $wpdb->insert(
    209             $wpdb->posts, array(
     212            $wpdb->posts,
     213            array(
    210214                'post_author'           => $user_id,
    211215                'post_date'             => $now,
     
    226230        );
    227231        $wpdb->insert(
    228             $wpdb->term_relationships, array(
     232            $wpdb->term_relationships,
     233            array(
    229234                'term_taxonomy_id' => $cat_tt_id,
    230235                'object_id'        => 1,
     
    249254        );
    250255        $wpdb->insert(
    251             $wpdb->comments, array(
     256            $wpdb->comments,
     257            array(
    252258                'comment_post_ID'      => 1,
    253259                'comment_author'       => $first_comment_author,
     
    276282
    277283As a new WordPress user, you should go to <a href=\"%s\">your dashboard</a> to delete this page and create new pages for your content. Have fun!"
    278             ), admin_url()
     284            ),
     285            admin_url()
    279286        );
    280287
    281288        $first_post_guid = get_option( 'home' ) . '/?page_id=2';
    282289        $wpdb->insert(
    283             $wpdb->posts, array(
     290            $wpdb->posts,
     291            array(
    284292                'post_author'           => $user_id,
    285293                'post_date'             => $now,
     
    301309        );
    302310        $wpdb->insert(
    303             $wpdb->postmeta, array(
     311            $wpdb->postmeta,
     312            array(
    304313                'post_id'    => 2,
    305314                'meta_key'   => '_wp_page_template',
     
    324333
    325334            $wpdb->insert(
    326                 $wpdb->posts, array(
     335                $wpdb->posts,
     336                array(
    327337                    'post_author'           => $user_id,
    328338                    'post_date'             => $now,
     
    345355            );
    346356            $wpdb->insert(
    347                 $wpdb->postmeta, array(
     357                $wpdb->postmeta,
     358                array(
    348359                    'post_id'    => 3,
    349360                    'meta_key'   => '_wp_page_template',
     
    356367        // Set up default widgets for default theme.
    357368        update_option(
    358             'widget_search', array(
     369            'widget_search',
     370            array(
    359371                2              => array( 'title' => '' ),
    360372                '_multiwidget' => 1,
     
    362374        );
    363375        update_option(
    364             'widget_recent-posts', array(
     376            'widget_recent-posts',
     377            array(
    365378                2              => array(
    366379                    'title'  => '',
     
    371384        );
    372385        update_option(
    373             'widget_recent-comments', array(
     386            'widget_recent-comments',
     387            array(
    374388                2              => array(
    375389                    'title'  => '',
     
    380394        );
    381395        update_option(
    382             'widget_archives', array(
     396            'widget_archives',
     397            array(
    383398                2              => array(
    384399                    'title'    => '',
     
    390405        );
    391406        update_option(
    392             'widget_categories', array(
     407            'widget_categories',
     408            array(
    393409                2              => array(
    394410                    'title'        => '',
     
    401417        );
    402418        update_option(
    403             'widget_meta', array(
     419            'widget_meta',
     420            array(
    404421                2              => array( 'title' => '' ),
    405422                '_multiwidget' => 1,
     
    407424        );
    408425        update_option(
    409             'sidebars_widgets', array(
     426            'sidebars_widgets',
     427            array(
    410428                'wp_inactive_widgets' => array(),
    411429                'sidebar-1'           => array(
     
    443461            if ( ! is_super_admin( $user_id ) && $user_id != 1 ) {
    444462                $wpdb->delete(
    445                     $wpdb->usermeta, array(
     463                    $wpdb->usermeta,
     464                    array(
    446465                        'user_id'  => $user_id,
    447466                        'meta_key' => $wpdb->base_prefix . '1_capabilities',
     
    565584https://wordpress.org/
    566585'
    567             ), $blog_url, $name, $password, $login_url
     586            ),
     587            $blog_url,
     588            $name,
     589            $password,
     590            $login_url
    568591        );
    569592
     
    833856            if ( ! $cat && 0 != $post->post_category ) { // If there's no result
    834857                $wpdb->insert(
    835                     $wpdb->post2cat, array(
     858                    $wpdb->post2cat,
     859                    array(
    836860                        'post_id'     => $post->ID,
    837861                        'category_id' => $post->post_category,
     
    11171141        foreach ( $objects as $object ) {
    11181142            $wpdb->update(
    1119                 $wpdb->posts, array(
     1143                $wpdb->posts,
     1144                array(
    11201145                    'post_status'    => 'attachment',
    11211146                    'post_mime_type' => $object->post_type,
     
    12351260            $wpdb->prepare(
    12361261                "INSERT INTO $wpdb->terms (term_id, name, slug, term_group) VALUES
    1237         (%d, %s, %s, %d)", $term_id, $name, $slug, $term_group
     1262        (%d, %s, %s, %d)",
     1263                $term_id,
     1264                $name,
     1265                $slug,
     1266                $term_group
    12381267            )
    12391268        );
     
    12891318
    12901319        $wpdb->insert(
    1291             $wpdb->term_relationships, array(
     1320            $wpdb->term_relationships,
     1321            array(
    12921322                'object_id'        => $post_id,
    12931323                'term_taxonomy_id' => $tt_id,
     
    13281358
    13291359            $wpdb->insert(
    1330                 $wpdb->term_taxonomy, array(
     1360                $wpdb->term_taxonomy,
     1361                array(
    13311362                    'term_id'     => $term_id,
    13321363                    'taxonomy'    => 'link_category',
     
    13561387
    13571388                $wpdb->insert(
    1358                     $wpdb->term_relationships, array(
     1389                    $wpdb->term_relationships,
     1390                    array(
    13591391                        'object_id'        => $link->link_id,
    13601392                        'term_taxonomy_id' => $tt_id,
     
    13771409            }
    13781410            $wpdb->insert(
    1379                 $wpdb->term_relationships, array(
     1411                $wpdb->term_relationships,
     1412                array(
    13801413                    'object_id'        => $link_id,
    13811414                    'term_taxonomy_id' => $tt_id,
Note: See TracChangeset for help on using the changeset viewer.