- Introduced new templates for catalog, checkout, contact, and error pages. - Implemented caching headers and redirection in index.php files across various directories. - Enhanced product and layout templates for better integration with Creative Elements. - Added backoffice header styles and scripts for improved UI/UX in the admin panel.
39 lines
724 B
PHP
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'];
|
|
}
|
|
}
|