if ( !
empty( $block['innerBlocks'
] ) ) { $child_context =
$this->available_context;
if ( !
empty( $this->block_type->provides_context
) ) { foreach ( $this->block_type->provides_context
as $context_name =>
$attribute_name ) { if ( array_key_exists( $attribute_name,
$this->attributes
) ) { $child_context[ $context_name ] =
$this->attributes
[ $attribute_name ];
} } } $this->inner_blocks =
new WP_Block_List( $block['innerBlocks'
],
$child_context,
$registry );
} if ( !
empty( $block['innerHTML'
] ) ) { $this->inner_html =
$block['innerHTML'
];
} if ( !
empty( $block['innerContent'
] ) ) { $this->inner_content =
$block['innerContent'
];
} }