38 lines
702 B
PHP
38 lines
702 B
PHP
<?php
|
|
/**
|
|
* Creative Elements - live Theme & Page Builder
|
|
*
|
|
* @author WebshopWorks, Elementor
|
|
* @copyright 2019-2023 WebshopWorks.com & Elementor.com
|
|
* @license https://www.gnu.org/licenses/gpl-3.0.html
|
|
*/
|
|
|
|
namespace CE;
|
|
|
|
defined('_PS_VERSION_') or exit;
|
|
|
|
/**
|
|
* Elementor base UI control.
|
|
*
|
|
* An abstract class for creating new UI controls in the panel.
|
|
*
|
|
* @abstract
|
|
*/
|
|
abstract class BaseUiControl extends BaseControl
|
|
{
|
|
/**
|
|
* Get features.
|
|
*
|
|
* Retrieve the list of all the available features.
|
|
*
|
|
* @since 1.5.0
|
|
* @static
|
|
*
|
|
* @return array Features array
|
|
*/
|
|
public static function getFeatures()
|
|
{
|
|
return ['ui'];
|
|
}
|
|
}
|