Docs: Correct WP_Styles_Registry
documentation.
This change updates the file’s docblock to correctly indicate `WordPress`/`Blocks` as the `@package`/`@subpackage`, updates the `_doing_it_wrong()` versions to `5.3.0` instead of the Gutenberg plugin versions, and removes some stray `gutenberg` text domains. Props david.binda. Fixes #48181. git-svn-id: https://develop.svn.wordpress.org/trunk@46351 602fd350-edb4-49c9-b593-d223f7449a82
This commit is contained in:
parent
9288beb7b5
commit
14d0316b3c
@ -2,7 +2,8 @@
|
||||
/**
|
||||
* Blocks API: WP_Block_Styles_Registry class
|
||||
*
|
||||
* @package Gutenberg
|
||||
* @package WordPress
|
||||
* @subpackage Blocks
|
||||
* @since 5.3.0
|
||||
*/
|
||||
|
||||
@ -41,14 +42,14 @@ final class WP_Block_Styles_Registry {
|
||||
public function register( $block_name, $style_properties ) {
|
||||
|
||||
if ( ! isset( $block_name ) || ! is_string( $block_name ) ) {
|
||||
$message = __( 'Block name name must be a string.', 'gutenberg' );
|
||||
_doing_it_wrong( __METHOD__, $message, '6.2.0' );
|
||||
$message = __( 'Block name name must be a string.' );
|
||||
_doing_it_wrong( __METHOD__, $message, '5.3.0' );
|
||||
return false;
|
||||
}
|
||||
|
||||
if ( ! isset( $style_properties['name'] ) || ! is_string( $style_properties['name'] ) ) {
|
||||
$message = __( 'Block style name must be a string.', 'gutenberg' );
|
||||
_doing_it_wrong( __METHOD__, $message, '6.2.0' );
|
||||
$message = __( 'Block style name must be a string.' );
|
||||
_doing_it_wrong( __METHOD__, $message, '5.3.0' );
|
||||
return false;
|
||||
}
|
||||
|
||||
@ -73,8 +74,8 @@ final class WP_Block_Styles_Registry {
|
||||
public function unregister( $block_name, $block_style_name ) {
|
||||
if ( ! $this->is_registered( $block_name, $block_style_name ) ) {
|
||||
/* translators: 1: block name, 2: block style name */
|
||||
$message = sprintf( __( 'Block "%1$s" does not contain a style named "%2$s.".', 'gutenberg' ), $block_name, $block_style_name );
|
||||
_doing_it_wrong( __METHOD__, $message, '6.2.0' );
|
||||
$message = sprintf( __( 'Block "%1$s" does not contain a style named "%2$s.".' ), $block_name, $block_style_name );
|
||||
_doing_it_wrong( __METHOD__, $message, '5.3.0' );
|
||||
return false;
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user