mirror of
https://github.com/lubuntu-team/lubuntu.me.git
synced 2025-02-23 08:11:08 +00:00
32 lines
496 B
PHP
32 lines
496 B
PHP
<?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' ];
|
|
}
|
|
}
|