Automattic\WooCommerce\EmailEditor\Integrations\WooCommerce\Renderer\Blocks

Product_Button::get_wrapper_stylesprivateWC 1.0

Get styles for the wrapper element.

Method of the class: Product_Button{}

No Hooks.

Returns

Array.

Usage

// private - for code of main (parent) class only
$result = $this->get_wrapper_styles( $block_attributes, $rendering_context ): array;
$block_attributes(array) (required)
Block attributes.
$rendering_context(Rendering_Context) (required)
Rendering context.

Product_Button::get_wrapper_styles() code WC 10.5.0

private function get_wrapper_styles( array $block_attributes, Rendering_Context $rendering_context ): array {
	$block_styles = Styles_Helper::get_block_styles( $block_attributes, $rendering_context, array( 'border', 'background-color', 'color', 'typography', 'spacing' ) );

	return Styles_Helper::extend_block_styles(
		$block_styles,
		array(
			'word-break' => 'break-word',
			'display'    => 'block',
		)
	);
}