BlockContainerInterface.php
2 years ago
BlockInterface.php
2 years ago
BlockTemplateInterface.php
2 years ago
ContainerInterface.php
2 years ago
ContainerInterface.php
19 lines
| 1 | <?php |
| 2 | |
| 3 | namespace Automattic\WooCommerce\Admin\BlockTemplates; |
| 4 | |
| 5 | /** |
| 6 | * Interface for block containers. |
| 7 | */ |
| 8 | interface ContainerInterface { |
| 9 | /** |
| 10 | * Get the root template that the block belongs to. |
| 11 | */ |
| 12 | public function &get_root_template(): BlockTemplateInterface; |
| 13 | |
| 14 | /** |
| 15 | * Get the block configuration as a formatted template. |
| 16 | */ |
| 17 | public function get_formatted_template(): array; |
| 18 | } |
| 19 |