mirror of
https://github.com/WordPress/WordPress.git
synced 2024-11-03 09:21:03 +01:00
9f7555f5d5
Update the `@wordpress/block-serialization-default-parser` to 4.35.1 for WordPress 6.3 Beta 1. These changes split the following classes in to their own files in order to match the WordPress PHP coding standards: * `WP_Block_Parser_Block` * `WP_Block_Parser_Frame` * `WP_Block_Parser` These classes were previously all included in the `src/wp-includes/class-wp-block-parser.php` file. In order to maintain backward compatibly for developers requiring the file directly, the relocated classes are replaced with `require_once` calls in the original file. In order to retain the commit history of the new files, they have been created using the `svn copy` command. Props aristath, rajanpanchal2028, jrf, SergeyBiryukov, costdev, manfcarlo, spacedmonkey, mukesh27, isabel_brison, dd32. Fixes #57832. See #58623. Built from https://develop.svn.wordpress.org/trunk@56048 git-svn-id: http://core.svn.wordpress.org/trunk@55560 1a063a9b-81f0-0310-95a4-ce76da25c4cd
91 lines
2.5 KiB
PHP
91 lines
2.5 KiB
PHP
<?php
|
|
/**
|
|
* Block Serialization Parser
|
|
*
|
|
* @package WordPress
|
|
*/
|
|
|
|
/**
|
|
* Class WP_Block_Parser_Block
|
|
*
|
|
* Holds the block structure in memory
|
|
*
|
|
* @since 5.0.0
|
|
*/
|
|
class WP_Block_Parser_Block {
|
|
/**
|
|
* Name of block
|
|
*
|
|
* @example "core/paragraph"
|
|
*
|
|
* @since 5.0.0
|
|
* @var string
|
|
*/
|
|
public $blockName; // phpcs:ignore WordPress.NamingConventions.ValidVariableName
|
|
|
|
/**
|
|
* Optional set of attributes from block comment delimiters
|
|
*
|
|
* @example null
|
|
* @example array( 'columns' => 3 )
|
|
*
|
|
* @since 5.0.0
|
|
* @var array|null
|
|
*/
|
|
public $attrs;
|
|
|
|
/**
|
|
* List of inner blocks (of this same class)
|
|
*
|
|
* @since 5.0.0
|
|
* @var WP_Block_Parser_Block[]
|
|
*/
|
|
public $innerBlocks; // phpcs:ignore WordPress.NamingConventions.ValidVariableName
|
|
|
|
/**
|
|
* Resultant HTML from inside block comment delimiters
|
|
* after removing inner blocks
|
|
*
|
|
* @example "...Just <!-- wp:test /--> testing..." -> "Just testing..."
|
|
*
|
|
* @since 5.0.0
|
|
* @var string
|
|
*/
|
|
public $innerHTML; // phpcs:ignore WordPress.NamingConventions.ValidVariableName
|
|
|
|
/**
|
|
* List of string fragments and null markers where inner blocks were found
|
|
*
|
|
* @example array(
|
|
* 'innerHTML' => 'BeforeInnerAfter',
|
|
* 'innerBlocks' => array( block, block ),
|
|
* 'innerContent' => array( 'Before', null, 'Inner', null, 'After' ),
|
|
* )
|
|
*
|
|
* @since 4.2.0
|
|
* @var array
|
|
*/
|
|
public $innerContent; // phpcs:ignore WordPress.NamingConventions.ValidVariableName
|
|
|
|
/**
|
|
* Constructor.
|
|
*
|
|
* Will populate object properties from the provided arguments.
|
|
*
|
|
* @since 5.0.0
|
|
*
|
|
* @param string $name Name of block.
|
|
* @param array $attrs Optional set of attributes from block comment delimiters.
|
|
* @param array $inner_blocks List of inner blocks (of this same class).
|
|
* @param string $inner_html Resultant HTML from inside block comment delimiters after removing inner blocks.
|
|
* @param array $inner_content List of string fragments and null markers where inner blocks were found.
|
|
*/
|
|
public function __construct( $name, $attrs, $inner_blocks, $inner_html, $inner_content ) {
|
|
$this->blockName = $name; // phpcs:ignore WordPress.NamingConventions.ValidVariableName
|
|
$this->attrs = $attrs;
|
|
$this->innerBlocks = $inner_blocks; // phpcs:ignore WordPress.NamingConventions.ValidVariableName
|
|
$this->innerHTML = $inner_html; // phpcs:ignore WordPress.NamingConventions.ValidVariableName
|
|
$this->innerContent = $inner_content; // phpcs:ignore WordPress.NamingConventions.ValidVariableName
|
|
}
|
|
}
|