Make WordPress Core

Changeset 54670

Timestamp:
10/24/2022 02:14:25 PM (22 months ago)
Author:
Bernhard Reiter
Message:

Blocks: Allow arrays for deprecated asset types in block registration.

In register_block_type, continue to allow passing arrays as the editor_script, script, view_script, editor_style, and style arguments. Note that those fields were soft-deprecated in favor of their _handles counterparts in [54155], which would allow specifying multiple items. At the same time, the deprecated fields were limited to string or null.

However, this broke existing code that passed an array as one of those arguments. For backwards compatibility, this change thus restores the previous behavior. It is implemented in WP_Block_Type as a pair of __get() and __set() methods that wrap around the corresponding _handles members, which are arrays of strings.

It also affects the REST API endpoint for block types. The latter’s schema has never allowed for anything other than string or null for any of those fields. For this reason, it now returns the first element of the array stored in the corresponding _handles member in WP_Block_Type.

Follow-up [54155].
Props nendeb55, costdev, gziolo, spacedmonkey, mukesh27, sergeybiryukov, audrasjb.
Fixes #56707.

Location:
trunk
Files:
4 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/wp-includes/class-wp-block-type.php

    r54210 r54670  
    296296     * @param string $name Deprecated property name.
    297297     *
    298      * @return string|null|void The value read from the new property if the first item in the array provided,
    299      *                          null when value not found, or void when unknown property name provided.
     298     * @return string|null|void The value read from the new property if the first item in the array provided,
     299     *                          null when value not found, or void when unknown property name provided.
    300300     */
    301301    public function __get( $name ) {
     
    305305
    306306        $new_name = $name . '_handles';
     307
     308
     309
     310
     311
     312
     313
     314
    307315        return isset( $this->{$new_name}[0] ) ? $this->{$new_name}[0] : null;
    308316    }
     
    344352        }
    345353
     354
     355
     356
     357
     358
     359
     360
     361
     362
     363
     364
     365
     366
     367
     368
     369
     370
     371
     372
     373
     374
    346375        if ( ! is_string( $value ) ) {
    347376            return;
    348377        }
    349378
    350         $new_name             = $name . '_handles';
    351         $this->{$new_name}[0] = $value;
     379        $this->{$new_name} = array( $value );
    352380    }
    353381
  • trunk/src/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php

    r54210 r54670  
    296296                if ( isset( $block_type->$extra_field ) ) {
    297297                    $field = $block_type->$extra_field;
     298
     299
     300
     301
    298302                } elseif ( array_key_exists( 'default', $schema['properties'][ $extra_field ] ) ) {
    299303                    $field = $schema['properties'][ $extra_field ]['default'];
  • trunk/tests/phpunit/tests/blocks/register.php

    r54472 r54670  
    554554
    555555    /**
     556
     557
     558
     559
     560
     561
     562
     563
     564
     565
     566
     567
     568
     569
     570
     571
     572
     573
     574
     575
     576
     577
     578
     579
     580
     581
     582
     583
     584
     585
     586
     587
     588
     589
     590
     591
     592
     593
     594
     595
     596
     597
     598
     599
     600
     601
     602
     603
     604
     605
     606
     607
     608
     609
     610
     611
     612
     613
     614
     615
     616
     617
     618
     619
     620
     621
     622
     623
     624
     625
     626
     627
     628
     629
     630
     631
     632
     633
     634
     635
     636
     637
     638
     639
     640
     641
     642
     643
     644
     645
     646
     647
     648
     649
     650
     651
     652
     653
     654
     655
     656
     657
     658
     659
     660
     661
     662
     663
     664
     665
     666
     667
     668
     669
     670
     671
     672
     673
     674
     675
     676
     677
     678
     679
     680
     681
     682
     683
    556684     * @ticket 52301
    557685     */
  • trunk/tests/phpunit/tests/rest-api/rest-block-type-controller.php

    r54155 r54670  
    337337        $this->assertNull( $data['editor_style'] );
    338338        $this->assertNull( $data['style'] );
     339
     340
     341
     342
     343
     344
     345
     346
     347
     348
     349
     350
     351
     352
     353
     354
     355
     356
     357
     358
     359
     360
     361
     362
     363
     364
     365
     366
     367
     368
     369
     370
     371
     372
     373
     374
     375
     376
     377
     378
     379
     380
     381
     382
     383
     384
     385
     386
     387
     388
     389
     390
     391
     392
     393
     394
     395
     396
     397
     398
     399
     400
     401
     402
     403
     404
     405
     406
     407
     408
     409
     410
     411
     412
     413
     414
     415
     416
     417
     418
     419
     420
     421
     422
     423
     424
     425
     426
     427
     428
     429
     430
     431
     432
     433
     434
     435
     436
     437
     438
     439
     440
     441
     442
     443
     444
     445
     446
     447
     448
     449
     450
     451
     452
     453
     454
     455
     456
     457
     458
     459
     460
     461
     462
     463
     464
     465
     466
     467
     468
     469
     470
     471
     472
     473
     474
     475
     476
     477
     478
     479
     480
    339481    }
    340482
Note: See TracChangeset for help on using the changeset viewer.