<?php

add_action('acf/init', function () {
	if(function_exists('acf_register_block_type')){
		acf_register_block_type(array(
			'name'            => 'bw-server-pricing',
			'title'           => __('Server Pricing'),
			'description'     => __(''),
			'render_callback' => 'bw_render_acf_block',
			'category'        => 'layout',
			'icon'            => 'editor-table',
			'mode'            => 'edit'

		));
	}
});

// this block looks super bad for a second if the style is in the footer
add_action('init', function () {
	wp_register_style('bw_server_pricing_style', get_stylesheet_directory_uri() . '/includes/acf-blocks/bw-server-pricing/style.css', array(), '0.0.22');
	wp_enqueue_style('bw_server_pricing_style');
});
