- 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.
47 lines
1002 B
PHP
47 lines
1002 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 settings base model.
|
|
*
|
|
* Elementor settings base model handler class is responsible for registering
|
|
* and managing Elementor settings base models.
|
|
*
|
|
* @since 1.6.0
|
|
* @abstract
|
|
*/
|
|
abstract class CoreXSettingsXBaseXModel extends ControlsStack
|
|
{
|
|
/**
|
|
* Get CSS wrapper selector.
|
|
*
|
|
* Retrieve the wrapper selector for the current panel.
|
|
*
|
|
* @since 1.6.0
|
|
* @access public
|
|
* @abstract
|
|
*/
|
|
abstract public function getCssWrapperSelector();
|
|
|
|
/**
|
|
* Get panel page settings.
|
|
*
|
|
* Retrieve the page setting for the current panel.
|
|
*
|
|
* @since 1.6.0
|
|
* @access public
|
|
* @abstract
|
|
*/
|
|
abstract public function getPanelPageSettings();
|
|
}
|