Widgets: Make sure changes to media widgets' instance schema via `widget_{$this->id_base}_instance_schema` filter are not overridden by subclasses.

Previously, `WP_Widget_Media_Audio`, `WP_Widget_Media_Image`, and `WP_Widget_Media_Video` used to override the changes due to reversed arguments in `array_merge()` call.

Props Toro_Unit, birgire.
Fixes #45029.
Built from https://develop.svn.wordpress.org/trunk@45100


git-svn-id: http://core.svn.wordpress.org/trunk@44909 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
Sergey Biryukov 2019-04-02 22:13:52 +00:00
parent f7357d3957
commit 2931a2d95e
5 changed files with 49 additions and 54 deletions

View File

@ -13,7 +13,7 @@
* *
* @global string $wp_version * @global string $wp_version
*/ */
$wp_version = '5.2-beta1-45099'; $wp_version = '5.2-beta1-45100';
/** /**
* Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema. * Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.

View File

@ -62,9 +62,7 @@ class WP_Widget_Media_Audio extends WP_Widget_Media {
* @return array Schema for properties. * @return array Schema for properties.
*/ */
public function get_instance_schema() { public function get_instance_schema() {
$schema = array_merge( $schema = array(
parent::get_instance_schema(),
array(
'preload' => array( 'preload' => array(
'type' => 'string', 'type' => 'string',
'enum' => array( 'none', 'auto', 'metadata' ), 'enum' => array( 'none', 'auto', 'metadata' ),
@ -76,7 +74,6 @@ class WP_Widget_Media_Audio extends WP_Widget_Media {
'default' => false, 'default' => false,
'description' => __( 'Loop' ), 'description' => __( 'Loop' ),
), ),
)
); );
foreach ( wp_get_audio_extensions() as $audio_extension ) { foreach ( wp_get_audio_extensions() as $audio_extension ) {
@ -89,7 +86,7 @@ class WP_Widget_Media_Audio extends WP_Widget_Media {
); );
} }
return $schema; return array_merge( $schema, parent::get_instance_schema() );
} }
/** /**

View File

@ -62,7 +62,6 @@ class WP_Widget_Media_Image extends WP_Widget_Media {
*/ */
public function get_instance_schema() { public function get_instance_schema() {
return array_merge( return array_merge(
parent::get_instance_schema(),
array( array(
'size' => array( 'size' => array(
'type' => 'string', 'type' => 'string',
@ -161,7 +160,8 @@ class WP_Widget_Media_Image extends WP_Widget_Media {
* - height (redundant when size is not custom) * - height (redundant when size is not custom)
* - width (redundant when size is not custom) * - width (redundant when size is not custom)
*/ */
) ),
parent::get_instance_schema()
); );
} }

View File

@ -63,9 +63,8 @@ class WP_Widget_Media_Video extends WP_Widget_Media {
* @return array Schema for properties. * @return array Schema for properties.
*/ */
public function get_instance_schema() { public function get_instance_schema() {
$schema = array_merge(
parent::get_instance_schema(), $schema = array(
array(
'preload' => array( 'preload' => array(
'type' => 'string', 'type' => 'string',
'enum' => array( 'none', 'auto', 'metadata' ), 'enum' => array( 'none', 'auto', 'metadata' ),
@ -86,7 +85,6 @@ class WP_Widget_Media_Video extends WP_Widget_Media {
'description' => __( 'Tracks (subtitles, captions, descriptions, chapters, or metadata)' ), 'description' => __( 'Tracks (subtitles, captions, descriptions, chapters, or metadata)' ),
'should_preview_update' => false, 'should_preview_update' => false,
), ),
)
); );
foreach ( wp_get_video_extensions() as $video_extension ) { foreach ( wp_get_video_extensions() as $video_extension ) {
@ -99,7 +97,7 @@ class WP_Widget_Media_Video extends WP_Widget_Media {
); );
} }
return $schema; return array_merge( $schema, parent::get_instance_schema() );
} }
/** /**