Make WordPress Core

Ticket #38176: 38176.3.diff

File 38176.3.diff, 3.5 KB (added by jtsternberg, 8 years ago)

Refreshed patch (now that functions have been moved to different file)

  • src/wp-includes/option.php

     
    5656        if ( defined( 'WP_SETUP_CONFIG' ) )
    5757                return false;
    5858
     59        // Distinguish between `false` as a default, and not passing one.
     60        $passed_default = func_num_args() > 1;
     61
    5962        if ( ! wp_installing() ) {
    6063                // prevent non-existent options from triggering multiple queries
    6164                $notoptions = wp_cache_get( 'notoptions', 'options' );
     
    6770                         *
    6871                         * @since 3.4.0
    6972                         * @since 4.4.0 The `$option` parameter was added.
     73                         * @since 4.7.0 The `$passed_default` parameter was added to distinguish between a `false` value and the default parameter value.
    7074                         *
    7175                         * @param mixed  $default The default value to return if the option does not exist
    7276                         *                        in the database.
    7377                         * @param string $option  Option name.
     78                         * @param bool   $passed_default Was `get_option()` passed a default value?
    7479                         */
    75                         return apply_filters( "default_option_{$option}", $default, $option );
     80                        return apply_filters( "default_option_{$option}", $default, $option, $passed_default );
    7681                }
    7782
    7883                $alloptions = wp_load_alloptions();
     
    97102                                        wp_cache_set( 'notoptions', $notoptions, 'options' );
    98103
    99104                                        /** This filter is documented in wp-includes/option.php */
    100                                         return apply_filters( 'default_option_' . $option, $default, $option );
     105                                        return apply_filters( 'default_option_' . $option, $default, $option, $passed_default );
    101106                                }
    102107                        }
    103108                }
     
    109114                        $value = $row->option_value;
    110115                } else {
    111116                        /** This filter is documented in wp-includes/option.php */
    112                         return apply_filters( 'default_option_' . $option, $default, $option );
     117                        return apply_filters( 'default_option_' . $option, $default, $option, $passed_default );
    113118                }
    114119        }
    115120
     
    18351840 *     @type string   $description       A description of the data attached to this setting.
    18361841 *     @type callable $sanitize_callback A callback function that sanitizes the option's value.
    18371842 *     @type bool     $show_in_rest      Whether data associated with this setting should be included in the REST API.
     1843 *     @type mixed    $default           Default value when calling `get_option()`.
    18381844 * }
    18391845 */
    18401846function register_setting( $option_group, $option_name, $args = array() ) {
     
    18861892        if ( ! empty( $args['sanitize_callback'] ) ) {
    18871893                add_filter( "sanitize_option_{$option_name}", $args['sanitize_callback'] );
    18881894        }
     1895        if ( array_key_exists( 'default', $args ) ) {
     1896                add_filter( "default_option_{$option_name}", 'filter_default_option', 10, 3 );
     1897        }
    18891898
    18901899        $wp_registered_settings[ $option_name ] = $args;
    18911900}
     
    19501959
    19511960        return $wp_registered_settings;
    19521961}
     1962
     1963/**
     1964 * Filter the default value for the option.
     1965 *
     1966 * For settings which register a default setting in `register_setting()`, this
     1967 * function is added as a filter to `default_option_{$option}`.
     1968 *
     1969 * @since 4.7.0
     1970 *
     1971 * @param mixed $default Existing default value to return.
     1972 * @param string $option Option name.
     1973 * @param bool $passed_default Was `get_option()` passed a default value?
     1974 * @return mixed Filtered default value.
     1975 */
     1976function filter_default_option( $default, $option, $passed_default ) {
     1977        if ( $passed_default ) {
     1978                return $default;
     1979        }
     1980
     1981        $registered = get_registered_settings();
     1982        if ( empty( $registered[ $option ] ) ) {
     1983                return $default;
     1984        }
     1985
     1986        return $registered[ $option ]['default'];
     1987}