| 1 |
<?php |
| 2 |
|
| 3 |
|
| 4 |
namespace Jet_Form_Builder\Classes; |
| 5 |
|
| 6 |
// If this file is called directly, abort. |
| 7 |
if ( ! defined( 'WPINC' ) ) { |
| 8 |
die; |
| 9 |
} |
| 10 |
|
| 11 |
class Compatibility { |
| 12 |
|
| 13 |
public static function has_jet_sm(): bool { |
| 14 |
return ( |
| 15 |
class_exists( 'JET_SM\Gutenberg\Controls_Manager' ) |
| 16 |
&& class_exists( 'JET_SM\Gutenberg\Block_Manager' ) |
| 17 |
); |
| 18 |
} |
| 19 |
|
| 20 |
public static function has_jet_engine(): bool { |
| 21 |
return ( |
| 22 |
function_exists( 'jet_engine' ) |
| 23 |
); |
| 24 |
} |
| 25 |
|
| 26 |
} |
| 27 |
|