1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
|
<?php /** * Add hooks for Checkout Block integration. * * @package WooCommerceKlaviyo/Blocks * @version 3.2.0 */
/** * Registers the block using the metadata loaded from the `block.json` file. * Behind the scenes, it registers also all assets so they can be enqueued * through the block editor in the corresponding context. * * @see https://developer.wordpress.org/reference/functions/register_block_type/ */
require __DIR__ . '/blocks/StoreApi.php';
new WCK\Blocks\StoreApi();
add_action( 'init', function () { register_block_type( __DIR__ . '/blocks/build' ); } );
add_action( 'woocommerce_blocks_checkout_block_registration', function ( $integration_registry ) { require_once __DIR__ . '/blocks/CheckoutIntegration.php'; $integration_registry->register( new WCK\Blocks\CheckoutIntegration() ); }, 10, 1 );
|