assets
2 years ago
ajax-select2.php
2 years ago
control-manager.php
2 years ago
image-choose.php
4 years ago
init.php
3 years ago
control-manager.php
18 lines
| 1 | <?php |
| 2 | namespace ShopEngine\Core\Elementor_Controls; |
| 3 | |
| 4 | defined( 'ABSPATH' ) || exit; |
| 5 | |
| 6 | /** |
| 7 | * Elementor controls manager. |
| 8 | * |
| 9 | * Elementor controls manager handler class is responsible for registering and |
| 10 | * initializing all the supported controls, both regular controls and the group |
| 11 | * controls. |
| 12 | * |
| 13 | * @since 1.0.0 |
| 14 | */ |
| 15 | class Controls_Manager extends \Elementor\Controls_Manager { |
| 16 | const IMAGECHOOSE = 'imagechoose'; |
| 17 | const AJAXSELECT2 = 'shopengine_ajaxselect2'; |
| 18 | } |