Automattic\WooCommerce\Blocks\BlockTypes

ProductTitle{}WC 1.0└─ AbstractBlock

ProductTitle class.

Хуков нет.

Использование

$ProductTitle = new ProductTitle();
// use class methods

Методы

  1. protected register_block_type_assets()

Код ProductTitle{} WC 10.0.2

class ProductTitle extends AbstractBlock {

	/**
	 * Block name.
	 *
	 * @var string
	 */
	protected $block_name = 'product-title';

	/**
	 * API version name.
	 *
	 * @var string
	 */
	protected $api_version = '3';

	/**
	 * 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 ] );
	}
}