Automattic\WooCommerce\Admin\Features\ProductBlockEditor\ProductTemplates
ProductFormTemplateInterface{}
Interface for block containers.
No Hooks.
Usage
$ProductFormTemplateInterface = new ProductFormTemplateInterface(); // use class methods
Methods
- public add_group( array $block_config )
- public get_block_by_id( string $block_id )
- public get_group_by_id( string $group_id )
- public get_section_by_id( string $section_id )
- public get_subsection_by_id( string $subsection_id )
ProductFormTemplateInterface{} 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; }