Automattic\WooCommerce\Internal\Admin\BlockTemplates

BlockTemplate{}WC 1.0

Block template class.

Хуков нет.

Использование

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

Методы

  1. public add_block( array $block_config )
  2. public get_id()

Код BlockTemplate{} WC 9.3.3

class BlockTemplate extends AbstractBlockTemplate {
	/**
	 * Get the template ID.
	 */
	public function get_id(): string {
		return 'woocommerce-block-template';
	}

	/**
	 * Add an inner block to this template.
	 *
	 * @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 );
	}
}