|
1
|
<?php |
|
2
|
|
|
3
|
|
|
4
|
namespace Jet_Form_Builder\Compatibility\Elementor; |
|
5
|
|
|
6
|
|
|
7
|
class Elementor { |
|
8
|
|
|
9
|
public static function register() { |
|
10
|
if ( ! defined( 'ELEMENTOR_VERSION' ) ) { |
|
11
|
return; |
|
12
|
} |
|
13
|
new static(); |
|
14
|
} |
|
15
|
|
|
16
|
public function __construct() { |
|
17
|
new Widget_Controller(); |
|
18
|
} |
|
19
|
|
|
20
|
}
|