Automattic\WooCommerce\Blocks

BlockTypesController::register_blocks()publicWC 1.0

Register blocks, hooking up assets and render functions as needed.

Метод класса: BlockTypesController{}

Хуков нет.

Возвращает

null. Ничего (null).

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

$BlockTypesController = new BlockTypesController();
$BlockTypesController->register_blocks();

Код BlockTypesController::register_blocks() WC 9.8.5

public function register_blocks() {
	$this->register_block_metadata();
	$block_types = $this->get_block_types();

	foreach ( $block_types as $block_type ) {
		$block_type_class = __NAMESPACE__ . '\\BlockTypes\\' . $block_type;

		new $block_type_class( $this->asset_api, $this->asset_data_registry, new IntegrationRegistry() );
	}
}