Automattic\WooCommerce\Blocks\BlockTypes
ProductSaleBadge{}
ProductSaleBadge class.
Хуков нет.
Использование
$ProductSaleBadge = new ProductSaleBadge(); // use class methods
Методы
- protected get_block_type_supports()
- protected register_block_type_assets()
Код ProductSaleBadge{} ProductSaleBadge{} WC 6.7.0
class ProductSaleBadge extends AbstractBlock { /** * Block name. * * @var string */ protected $block_name = 'product-sale-badge'; /** * API version name. * * @var string */ protected $api_version = '2'; /** * Get block attributes. * * @return array */ protected function get_block_type_supports() { return array( 'color' => array( 'gradients' => true, 'background' => true, 'link' => true, ), 'typography' => array( 'fontSize' => true, 'lineHeight' => true, ), '__experimentalBorder' => array( 'color' => true, 'radius' => true, 'width' => true, ), 'spacing' => array( 'padding' => true, '__experimentalSkipSerialization' => true, ), '__experimentalSelector' => '.wc-block-components-product-sale-badge', ); } /** * Register script and style assets for the block type before it is registered. * * This registers the scripts; it does not enqueue them. */ protected function register_block_type_assets() { parent::register_block_type_assets(); $this->register_chunk_translations( [ $this->block_name ] ); } }