Automattic\WooCommerce\Admin\Features\ProductBlockEditor\ProductTemplates

ProductFormTemplateInterface{}WC 1.0

Interface for block containers.

No Hooks.

Usage

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

Methods

  1. public add_group( array $block_config )
  2. public get_block_by_id( string $block_id )
  3. public get_group_by_id( string $group_id )
  4. public get_section_by_id( string $section_id )
  5. public get_subsection_by_id( string $subsection_id )

ProductFormTemplateInterface{} code WC 9.8.5

interface ProductFormTemplateInterface extends BlockTemplateInterface {

	/**
	 * Adds a new group block.
	 *
	 * @param array $block_config block config.
	 * @return GroupInterface new group block.
	 */
	public function add_group( array $block_config ): GroupInterface;

	/**
	 * Gets Group block by id.
	 *
	 * @param string $group_id group id.
	 * @return GroupInterface|null
	 */
	public function get_group_by_id( string $group_id ): ?GroupInterface;

	/**
	 * Gets Section block by id.
	 *
	 * @param string $section_id section id.
	 * @return SectionInterface|null
	 */
	public function get_section_by_id( string $section_id ): ?SectionInterface;

	/**
	 * Gets subsection block by id.
	 *
	 * @param string $subsection_id subsection id.
	 * @return SubsectionInterface|null
	 */
	public function get_subsection_by_id( string $subsection_id ): ?SubsectionInterface;

	/**
	 * Gets Block by id.
	 *
	 * @param string $block_id block id.
	 * @return BlockInterface|null
	 */
	public function get_block_by_id( string $block_id ): ?BlockInterface;
}