You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

32 lines
496 B

<?php
namespace Elementor;
if ( ! defined( 'ABSPATH' ) ) {
exit; // Exit if accessed directly.
}
/**
* Elementor base UI control.
*
* A base control for creating UI controls.
*
* @abstract
*/
abstract class Base_UI_Control extends Base_Control {
/**
* Retrieve features.
*
* Get 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' ];
}
}