X-Git-Url: https://scripts.mit.edu/gitweb/autoinstalls/wordpress.git/blobdiff_plain/af50974463450c98503e763a7836a50e260461a9..7f1521bf193b382565eb753043c161f4cb3fcda7:/wp-includes/class-wp-customize-setting.php?ds=sidebyside diff --git a/wp-includes/class-wp-customize-setting.php b/wp-includes/class-wp-customize-setting.php index 0207b709..f8f9ce08 100644 --- a/wp-includes/class-wp-customize-setting.php +++ b/wp-includes/class-wp-customize-setting.php @@ -1,13 +1,21 @@ sanitize_js_callback ) add_filter( "customize_sanitize_js_{$this->id}", $this->sanitize_js_callback, 10, 2 ); + } + + /** + * The ID for the current blog when the preview() method was called. + * + * @since 4.2.0 + * @access protected + * @var int + */ + protected $_previewed_blog_id; - return $this; + /** + * Return true if the current blog is not the same as the previewed blog. + * + * @since 4.2.0 + * @access public + * + * @return bool|null Returns null if preview() has not been called yet. + */ + public function is_current_blog_previewed() { + if ( ! isset( $this->_previewed_blog_id ) ) { + return null; + } + return ( get_current_blog_id() === $this->_previewed_blog_id ); } + /** + * Original non-previewed value stored by the preview method. + * + * @see WP_Customize_Setting::preview() + * @since 4.1.1 + * @var mixed + */ + protected $_original_value; + /** * Handle previewing the setting. * * @since 3.4.0 */ public function preview() { + if ( ! isset( $this->_original_value ) ) { + $this->_original_value = $this->value(); + } + if ( ! isset( $this->_previewed_blog_id ) ) { + $this->_previewed_blog_id = get_current_blog_id(); + } + switch( $this->type ) { case 'theme_mod' : add_filter( 'theme_mod_' . $this->id_data[ 'base' ], array( $this, '_preview_filter' ) ); @@ -152,6 +203,10 @@ class WP_Customize_Setting { /** * Callback function to filter the theme mods and options. * + * If switch_to_blog() was called after the preview() method, and the current + * blog is now not the same blog, then this method does a no-op and returns + * the original value. + * * @since 3.4.0 * @uses WP_Customize_Setting::multidimensional_replace() * @@ -159,7 +214,19 @@ class WP_Customize_Setting { * @return mixed New or old value. */ public function _preview_filter( $original ) { - return $this->multidimensional_replace( $original, $this->id_data[ 'keys' ], $this->post_value() ); + if ( ! $this->is_current_blog_previewed() ) { + return $original; + } + + $undefined = new stdClass(); // symbol hack + $post_value = $this->post_value( $undefined ); + if ( $undefined === $post_value ) { + $value = $this->_original_value; + } else { + $value = $post_value; + } + + return $this->multidimensional_replace( $original, $this->id_data['keys'], $value ); } /** @@ -170,7 +237,7 @@ class WP_Customize_Setting { * * @return false|null False if cap check fails or value isn't set. */ - public final function save() { + final public function save() { $value = $this->post_value(); if ( ! $this->check_capabilities() || ! isset( $value ) ) @@ -199,18 +266,8 @@ class WP_Customize_Setting { * @param mixed $default A default value which is used as a fallback. Default is null. * @return mixed The default value on failure, otherwise the sanitized value. */ - public final function post_value( $default = null ) { - // Check for a cached value - if ( isset( $this->_post_value ) ) - return $this->_post_value; - - // Call the manager for the post value - $result = $this->manager->post_value( $this ); - - if ( isset( $result ) ) - return $this->_post_value = $result; - else - return $default; + final public function post_value( $default = null ) { + return $this->manager->post_value( $this, $default ); } /** @@ -385,7 +442,7 @@ class WP_Customize_Setting { * * @return bool False if theme doesn't support the setting or user can't change setting, otherwise true. */ - public final function check_capabilities() { + final public function check_capabilities() { if ( $this->capability && ! call_user_func_array( 'current_user_can', (array) $this->capability ) ) return false; @@ -425,8 +482,15 @@ class WP_Customize_Setting { $node = &$node[ $key ]; } - if ( $create && ! isset( $node[ $last ] ) ) - $node[ $last ] = array(); + if ( $create ) { + if ( ! is_array( $node ) ) { + // account for an array overriding a string or object value + $node = array(); + } + if ( ! isset( $node[ $last ] ) ) { + $node[ $last ] = array(); + } + } if ( ! isset( $node[ $last ] ) ) return; @@ -500,9 +564,9 @@ class WP_Customize_Setting { * * Results should be properly handled using another setting or callback. * - * @package WordPress - * @subpackage Customize * @since 3.4.0 + * + * @see WP_Customize_Setting */ class WP_Customize_Filter_Setting extends WP_Customize_Setting { @@ -517,9 +581,9 @@ class WP_Customize_Filter_Setting extends WP_Customize_Setting { * * Results should be properly handled using another setting or callback. * - * @package WordPress - * @subpackage Customize * @since 3.4.0 + * + * @see WP_Customize_Setting */ final class WP_Customize_Header_Image_Setting extends WP_Customize_Setting { public $id = 'header_image_data'; @@ -545,11 +609,11 @@ final class WP_Customize_Header_Image_Setting extends WP_Customize_Setting { } /** - * Class WP_Customize_Background_Image_Setting + * Customizer Background Image Setting class. * - * @package WordPress - * @subpackage Customize * @since 3.4.0 + * + * @see WP_Customize_Setting */ final class WP_Customize_Background_Image_Setting extends WP_Customize_Setting { public $id = 'background_image_thumb';