<?php
add_action('acf/init', function () {
	if(function_exists('acf_register_block_type')){
		acf_register_block_type(array(
			'name'            => 'bw-gcbc-gallery',
			'title'           => __('Custom Gallery'),
			'description'     => __(''),
			'render_callback' => 'bw_render_acf_block',
			'category'        => 'layout',
			'icon'            => 'images-alt',
			'mode'            => 'edit',
			'enqueue_assets'  => 'bw_gcbc_gallery_assets',
			'supports' => array(
				'jsx' => true
			)
		));
	}
});

function bw_gcbc_gallery_assets () {
	wp_enqueue_style('bw_gcbc_gallery_style', get_stylesheet_directory_uri() . '/acf-blocks/bw-gcbc-gallery/gallery.css', array(), '0.0.9');
	wp_enqueue_script('bw_gcbc_gallery_script', get_stylesheet_directory_uri() . '/acf-blocks/bw-gcbc-gallery/gallery.js', array( 'jquery' ), '0.0.9');
}
