
­­­­­­­­­­­­­­­­­­
<!DOCTYPE html>
<html>
<?php


namespace Jet_Form_Builder\Classes;

// If this file is called directly, abort.
if ( ! defined( 'WPINC' ) ) {
	die;
}

class Compatibility {

	public static function has_jet_sm(): bool {
		return (
			class_exists( 'JET_SM\Gutenberg\Controls_Manager' )
			&& class_exists( 'JET_SM\Gutenberg\Block_Manager' )
		);
	}

	public static function has_jet_engine(): bool {
		return (
			function_exists( 'jet_engine' )
		);
	}

}
