| 1 |
<?php |
| 2 |
namespace ElementsKit_Lite\Modules\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 = 'ajaxselect2'; |
| 18 |
const WIDGETAREA = 'widgetarea'; |
| 19 |
} |
| 20 |
|