Automattic\WooCommerce\Blocks\BlockTypes
CheckoutOrderSummaryBlock::get_inner_block_content
Get the contents of the given inner block.
Method of the class: CheckoutOrderSummaryBlock{}
No Hooks.
Returns
Array|true|false.
Usage
// private - for code of main (parent) class only $result = $this->get_inner_block_content( $block_name, $content );
- $block_name(string) (required)
- Name of the order summary inner block.
- $content(string) (required)
- The content to search.
CheckoutOrderSummaryBlock::get_inner_block_content() CheckoutOrderSummaryBlock::get inner block content code WC 10.6.2
private function get_inner_block_content( $block_name, $content ) {
if ( preg_match( $this->inner_block_regex( $block_name ), $content, $matches ) ) {
return $matches[0];
}
return false;
}