Automattic\WooCommerce\Internal\Admin\BlockTemplates

Block{}WC 1.0

Generic block with container properties to be used in BlockTemplate.

No Hooks.

Usage

$Block = new Block();
// use class methods

Methods

  1. public add_block( array $block_config )

Block{} code WC 9.3.3

class Block extends AbstractBlock implements BlockContainerInterface {
	use BlockContainerTrait;

	/**
	 * Add an inner block to this block.
	 *
	 * @param array $block_config The block data.
	 */
	public function &add_block( array $block_config ): BlockInterface {
		$block = new Block( $block_config, $this->get_root_template(), $this );
		return $this->add_inner_block( $block );
	}
}