PluginProbe
ElementsKit Elementor Addons – Advanced Widgets & Templates Addons for Elementor / 4.0.3
ElementsKit Elementor Addons – Advanced Widgets & Templates Addons for Elementor v4.0.3
4.0.4 4.0.3 4.0.2 4.0.1 4.0.0 3.10.02 3.10.01 3.9.10 3.9.9 3.9.8 3.9.7 3.9.5 3.9.6 3.9.3 2.1.0 2.1.1 2.1.2 2.1.3 2.1.4 2.1.5 2.1.6 2.1.7 2.2.0 2.2.1 2.2.2 All 183 releases
elementskit-lite / modules / controls / control-manager.php
control-manager.php
20 lines 486 B
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
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