# elementor/3.26.3/includes/controls/base-ui.php

Elementor Website Builder – more than just a page builder, version 3.26.3. 32 lines.

- Page: https://pluginprobe.com/plugins/elementor/3.26.3/code/includes/controls/base-ui.php
- Raw: https://pluginprobe.com/plugins/elementor/3.26.3/raw/includes/controls/base-ui.php
- Modified: 2023-04-23T11:22:46+00:00

Line numbers below start at 1. Link to a line or a range by appending a fragment to the
page URL, for example `https://pluginprobe.com/plugins/elementor/3.26.3/code/includes/controls/base-ui.php#L10-L20`.

```php
<?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' ];
	}
}

```
