Automattic\WooCommerce\Blocks\BlockTypes

Checkout::enqueue_assets()protectedWC 1.0

Enqueue frontend assets for this block, just in time for rendering.

Method of the class: Checkout{}

Return

null. Nothing (null).

Usage

// protected - for code of main (parent) or child class
$result = $this->enqueue_assets( $attributes, $content, $block );
$attributes(array) (required)
Any attributes that currently are available from the block.
$content(string) (required)
The block content.
$block(WP_Block) (required)
The block object.

Checkout::enqueue_assets() code WC 8.7.0

protected function enqueue_assets( array $attributes, $content, $block ) {
	/**
	 * Fires before checkout block scripts are enqueued.
	 *
	 * @since 4.6.0
	 */
	do_action( 'woocommerce_blocks_enqueue_checkout_block_scripts_before' );
	parent::enqueue_assets( $attributes, $content, $block );
	/**
	 * Fires after checkout block scripts are enqueued.
	 *
	 * @since 4.6.0
	 */
	do_action( 'woocommerce_blocks_enqueue_checkout_block_scripts_after' );
}