Docs: Document api_version and variations properties in WP_Block_Type::__construct().

Add `@since` tags for all properties added in WordPress 5.5, 5.6, and 5.8.

Follow-up to [47875], [48117], [49224], [50297], [50419], [50527].

Props mbabker.
Fixes #53518.
Built from https://develop.svn.wordpress.org/trunk@51244


git-svn-id: http://core.svn.wordpress.org/trunk@50853 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
Sergey Biryukov 2021-06-26 11:13:56 +00:00
parent 792955066f
commit bf3ebaf60f
2 changed files with 8 additions and 2 deletions

View File

@ -193,6 +193,11 @@ class WP_Block_Type {
* Will populate object properties from the provided arguments. * Will populate object properties from the provided arguments.
* *
* @since 5.0.0 * @since 5.0.0
* @since 5.5.0 Added the `title`, `category`, `parent`, `icon`, `description`,
* `keywords`, `textdomain`, `styles`, `supports`, `example`,
* `uses_context`, and `provides_context` properties.
* @since 5.6.0 Added the `api_version` property.
* @since 5.8.0 Added the `variations` property.
* *
* @see register_block_type() * @see register_block_type()
* *
@ -201,7 +206,7 @@ class WP_Block_Type {
* Optional. Array or string of arguments for registering a block type. Any arguments may be defined, * Optional. Array or string of arguments for registering a block type. Any arguments may be defined,
* however the ones described below are supported by default. Default empty array. * however the ones described below are supported by default. Default empty array.
* *
* * @type string $api_version Block API version.
* @type string $title Human-readable block type label. * @type string $title Human-readable block type label.
* @type string|null $category Block type category classification, used in * @type string|null $category Block type category classification, used in
* search interfaces to arrange block types by category. * search interfaces to arrange block types by category.
@ -213,6 +218,7 @@ class WP_Block_Type {
* result in search interfaces. * result in search interfaces.
* @type string|null $textdomain The translation textdomain. * @type string|null $textdomain The translation textdomain.
* @type array $styles Alternative block styles. * @type array $styles Alternative block styles.
* @type array $variations Block variations.
* @type array|null $supports Supported features. * @type array|null $supports Supported features.
* @type array|null $example Structured data for the block preview. * @type array|null $example Structured data for the block preview.
* @type callable|null $render_callback Block type render callback. * @type callable|null $render_callback Block type render callback.

View File

@ -13,7 +13,7 @@
* *
* @global string $wp_version * @global string $wp_version
*/ */
$wp_version = '5.8-beta4-51243'; $wp_version = '5.8-beta4-51244';
/** /**
* 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.