Automattic\WooCommerce\Blocks\BlockTypes

ProductSummary::get_block_type_supports()protectedWC 1.0

Get block supports. Shared with the frontend. IMPORTANT: If you change anything here, make sure to update the JS file too.

Method of the class: ProductSummary{}

No Hooks.

Return

Array.

Usage

// protected - for code of main (parent) or child class
$result = $this->get_block_type_supports();

ProductSummary::get_block_type_supports() code WC 9.4.2

protected function get_block_type_supports() {
	return array(
		'color'                  =>
		array(
			'link'       => true,
			'background' => false,
			'text'       => true,
		),
		'typography'             =>
		array(
			'fontSize' => true,
		),
		'__experimentalSelector' => '.wc-block-components-product-summary',
	);
}