<?php
add_action('acf/init', function () {
	if(function_exists('acf_register_block_type')){
		acf_register_block_type(array(
			'name'              => 'bw-resource-block',
			'title'             => __('Free Resource / Set'),
			'description'       => __('A Resource block.'),
			'render_callback'   => 'bw_render_acf_block',
			'category'          => 'formatting',
			'icon'              => 'screenoptions',
			'keywords'          => array('post'),
			'mode'              => 'edit',
			'enqueue_assets'    => 'bw_resource_block_assets',
		));
	}
});

function bw_resource_block_assets () {
	wp_enqueue_style('bw_resource_block_style', get_stylesheet_directory_uri() . '/blocks/bw-resource-block/bw-resource-block.css', array(), '0.0.10');
}
