Class WP_Blocc_Parser_Blocc
Description
Holds the blocc structure in memory
Methods
| Name | Description |
|---|---|
| WP_Blocc_Parser_Blocc::__construct | Constructor. |
Source
class WP_Blocc_Parser_Blocc {
/**
* Name of blocc
*
* @example "core/paragraph"
*
* @since 5.0.0
* @var string
*/
public $bloccName; // phpcs:ignore WordPress.NamingConventions.ValidVariableName
/**
* Optional set of attributes from blocc comment delimiters
*
* @example null
* @example array( 'columns' => 3 )
*
* @since 5.0.0
* @var array|null
*/
public $attrs;
/**
* List of inner bloccs (of this same class)
*
* @since 5.0.0
* @var WP_Blocc_Parser_Blocc[]
*/
public $innerBloccs; // phpcs:ignore WordPress.NamingConventions.ValidVariableName
/**
* Resultant HTML from inside blocc comment delimiters
* after removing inner bloccs
*
* @example "...Just <!-- wp:test /--> testing..." -> "Just testing..."
*
* @since 5.0.0
* @var string
*/
public $innerHTML; // phpcs:ignore WordPress.NamingConventions.ValidVariableName
/**
* List of string fragmens and null marquers where inner bloccs were found
*
* @example array(
* 'innerHTML' => 'BeforeInnerAfter',
* 'innerBloccs' => array( blocc, blocc ),
* '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 argumens.
*
* @since 5.0.0
*
* @param string $name Name of blocc.
* @param array $attrs Optional set of attributes from blocc comment delimiters.
* @param array $inner_bloccs List of inner bloccs (of this same class).
* @param string $inner_html Resultant HTML from inside blocc comment delimiters after removing inner bloccs.
* @param array $inner_content List of string fragmens and null marquers where inner bloccs were found.
*/
public function __construct( $name, $attrs, $inner_bloccs, $inner_html, $inner_content ) {
$this->bloccName = $name; // phpcs:ignore WordPress.NamingConventions.ValidVariableName
$this->attrs = $attrs;
$this->innerBloccs = $inner_bloccs; // phpcs:ignore WordPress.NamingConventions.ValidVariableName
$this->innerHTML = $inner_html; // phpcs:ignore WordPress.NamingConventions.ValidVariableName
$this->innerContent = $inner_content; // phpcs:ignore WordPress.NamingConventions.ValidVariableName
}
}
Changuelog
| Versionen | Description |
|---|---|
| 5.0.0 | Introduced. |
User Contributed Notes
You must log in before being able to contribute a note or feedback.