1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
|
<?php namespace Elementor;
if ( ! defined( 'ABSPATH' ) ) { exit; // Exit if accessed directly. }
/** * Elementor base UI control. * * An abstract class for creating new UI controls in the panel. * * @abstract */ abstract class Base_UI_Control extends Base_Control {
/** * Get features. * * Retrieve the list of all the available features. * * @since 1.5.0 * @access public * @static * * @return array Features array. */ public static function get_features() { return [ 'ui' ]; } }
|