uawdijnntqw1x1x1
IP : 216.73.216.109
Hostname : premium160.web-hosting.com
Kernel : Linux premium160.web-hosting.com 4.18.0-553.54.1.lve.el8.x86_64 #1 SMP Wed Jun 4 13:01:13 UTC 2025 x86_64
Disable Function : None :)
OS : Linux
PATH:
/
home
/
batcwwjx
/
www
/
wp-content
/
plugins
/
woocommerce
/
.
/
src
/
Admin
/
BlockTemplates
/
ContainerInterface.php
/
/
<?php namespace Automattic\WooCommerce\Admin\BlockTemplates; /** * Interface for block containers. */ interface ContainerInterface { /** * Get the root template that the block belongs to. */ public function &get_root_template(): BlockTemplateInterface; /** * Get the block configuration as a formatted template. */ public function get_formatted_template(): array; /** * Get a block by ID. * * @param string $block_id The block ID. */ public function get_block( string $block_id ): ?BlockInterface; /** * Removes a block from the container. * * @param string $block_id The block ID. * * @throws \UnexpectedValueException If the block container is not an ancestor of the block. */ public function remove_block( string $block_id ); /** * Removes all blocks from the container. */ public function remove_blocks(); }
/home/batcwwjx/www/wp-content/plugins/woocommerce/./src/Admin/BlockTemplates/ContainerInterface.php