Automattic\WooCommerce\Blocks\BlockTypes
ProductStockIndicator::get_block_type_supports()
Get block supports. Shared with the frontend. IMPORTANT: If you change anything here, make sure to update the JS file too.
Метод класса: ProductStockIndicator{}
Хуков нет.
Возвращает
Массив
.
Использование
// protected - в коде основоного (родительского) или дочернего класса $result = $this->get_block_type_supports();
Код ProductStockIndicator::get_block_type_supports() ProductStockIndicator::get block type supports WC 7.5.1
protected function get_block_type_supports() { return array( 'color' => array( 'link' => false, 'background' => false, 'text' => true, ), 'typography' => array( 'fontSize' => true, ), '__experimentalSelector' => '.wc-block-components-product-stock-indicator', ); }