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-includes/option.php

    r42833 r43571  
    13851385        $serialized_value = maybe_serialize( $value );
    13861386        $result           = $wpdb->insert(
    1387             $wpdb->sitemeta, array(
     1387            $wpdb->sitemeta,
     1388            array(
    13881389                'site_id'    => $network_id,
    13891390                'meta_key'   => $option,
     
    14931494
    14941495        $result = $wpdb->delete(
    1495             $wpdb->sitemeta, array(
     1496            $wpdb->sitemeta,
     1497            array(
    14961498                'meta_key' => $option,
    14971499                'site_id'  => $network_id,
     
    16041606        $serialized_value = maybe_serialize( $value );
    16051607        $result           = $wpdb->update(
    1606             $wpdb->sitemeta, array( 'meta_value' => $serialized_value ), array(
     1608            $wpdb->sitemeta,
     1609            array( 'meta_value' => $serialized_value ),
     1610            array(
    16071611                'site_id'  => $network_id,
    16081612                'meta_key' => $option,
     
    18741878function register_initial_settings() {
    18751879    register_setting(
    1876         'general', 'blogname', array(
     1880        'general',
     1881        'blogname',
     1882        array(
    18771883            'show_in_rest' => array(
    18781884                'name' => 'title',
     
    18841890
    18851891    register_setting(
    1886         'general', 'blogdescription', array(
     1892        'general',
     1893        'blogdescription',
     1894        array(
    18871895            'show_in_rest' => array(
    18881896                'name' => 'description',
     
    18951903    if ( ! is_multisite() ) {
    18961904        register_setting(
    1897             'general', 'siteurl', array(
     1905            'general',
     1906            'siteurl',
     1907            array(
    18981908                'show_in_rest' => array(
    18991909                    'name'   => 'url',
     
    19101920    if ( ! is_multisite() ) {
    19111921        register_setting(
    1912             'general', 'admin_email', array(
     1922            'general',
     1923            'admin_email',
     1924            array(
    19131925                'show_in_rest' => array(
    19141926                    'name'   => 'email',
     
    19241936
    19251937    register_setting(
    1926         'general', 'timezone_string', array(
     1938        'general',
     1939        'timezone_string',
     1940        array(
    19271941            'show_in_rest' => array(
    19281942                'name' => 'timezone',
     
    19341948
    19351949    register_setting(
    1936         'general', 'date_format', array(
     1950        'general',
     1951        'date_format',
     1952        array(
    19371953            'show_in_rest' => true,
    19381954            'type'         => 'string',
     
    19421958
    19431959    register_setting(
    1944         'general', 'time_format', array(
     1960        'general',
     1961        'time_format',
     1962        array(
    19451963            'show_in_rest' => true,
    19461964            'type'         => 'string',
     
    19501968
    19511969    register_setting(
    1952         'general', 'start_of_week', array(
     1970        'general',
     1971        'start_of_week',
     1972        array(
    19531973            'show_in_rest' => true,
    19541974            'type'         => 'integer',
     
    19581978
    19591979    register_setting(
    1960         'general', 'WPLANG', array(
     1980        'general',
     1981        'WPLANG',
     1982        array(
    19611983            'show_in_rest' => array(
    19621984                'name' => 'language',
     
    19691991
    19701992    register_setting(
    1971         'writing', 'use_smilies', array(
     1993        'writing',
     1994        'use_smilies',
     1995        array(
    19721996            'show_in_rest' => true,
    19731997            'type'         => 'boolean',
     
    19782002
    19792003    register_setting(
    1980         'writing', 'default_category', array(
     2004        'writing',
     2005        'default_category',
     2006        array(
    19812007            'show_in_rest' => true,
    19822008            'type'         => 'integer',
     
    19862012
    19872013    register_setting(
    1988         'writing', 'default_post_format', array(
     2014        'writing',
     2015        'default_post_format',
     2016        array(
    19892017            'show_in_rest' => true,
    19902018            'type'         => 'string',
     
    19942022
    19952023    register_setting(
    1996         'reading', 'posts_per_page', array(
     2024        'reading',
     2025        'posts_per_page',
     2026        array(
    19972027            'show_in_rest' => true,
    19982028            'type'         => 'integer',
     
    20032033
    20042034    register_setting(
    2005         'discussion', 'default_ping_status', array(
     2035        'discussion',
     2036        'default_ping_status',
     2037        array(
    20062038            'show_in_rest' => array(
    20072039                'schema' => array(
     
    20152047
    20162048    register_setting(
    2017         'discussion', 'default_comment_status', array(
     2049        'discussion',
     2050        'default_comment_status',
     2051        array(
    20182052            'show_in_rest' => array(
    20192053                'schema' => array(
     
    20262060    );
    20272061
    2028     register_setting( 'permalink', 'permalink_structure', array(
    2029         'show_in_rest' => true,
    2030         'type'         => 'string',
    2031         'description'  => __( 'Custom URL structure for permalinks and archives.' ),
    2032     ) );
     2062    register_setting(
     2063        'permalink',
     2064        'permalink_structure',
     2065        array(
     2066            'show_in_rest' => true,
     2067            'type'         => 'string',
     2068            'description'  => __( 'Custom URL structure for permalinks and archives.' ),
     2069        )
     2070    );
    20332071}
    20342072
     
    20932131    if ( 'misc' == $option_group ) {
    20942132        _deprecated_argument(
    2095             __FUNCTION__, '3.0.0',
     2133            __FUNCTION__,
     2134            '3.0.0',
    20962135            /* translators: %s: misc */
    20972136            sprintf(
     
    21052144    if ( 'privacy' == $option_group ) {
    21062145        _deprecated_argument(
    2107             __FUNCTION__, '3.5.0',
     2146            __FUNCTION__,
     2147            '3.5.0',
    21082148            /* translators: %s: privacy */
    21092149            sprintf(
     
    21432183    if ( 'misc' == $option_group ) {
    21442184        _deprecated_argument(
    2145             __FUNCTION__, '3.0.0',
     2185            __FUNCTION__,
     2186            '3.0.0',
    21462187            /* translators: %s: misc */
    21472188            sprintf(
     
    21552196    if ( 'privacy' == $option_group ) {
    21562197        _deprecated_argument(
    2157             __FUNCTION__, '3.5.0',
     2198            __FUNCTION__,
     2199            '3.5.0',
    21582200            /* translators: %s: privacy */
    21592201            sprintf(
     
    21712213    if ( '' !== $deprecated ) {
    21722214        _deprecated_argument(
    2173             __FUNCTION__, '4.7.0',
     2215            __FUNCTION__,
     2216            '4.7.0',
    21742217            /* translators: 1: $sanitize_callback, 2: register_setting() */
    21752218            sprintf(
Note: See TracChangeset for help on using the changeset viewer.