Files
2025-07-13 11:19:53 +02:00

39 lines
724 B
PHP

<?php
/**
* Creative Elements - live Theme & Page Builder
*
* @author WebshopWorks, Elementor
* @copyright 2019-2022 WebshopWorks.com & Elementor.com
* @license https://www.gnu.org/licenses/gpl-3.0.html
*/
namespace CE;
defined('_PS_VERSION_') or die;
/**
* 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
* @access public
* @static
*
* @return array Features array.
*/
public static function getFeatures()
{
return ['ui'];
}
}