Files
masimmo.pl/modules/creativeelements/core/settings/base/model.php
2024-11-20 09:09:44 +01:00

35 lines
744 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 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 panel page settings.
*
* Retrieve the page setting for the current panel.
*
* @since 1.6.0
* @abstract
*/
abstract public function getPanelPageSettings();
}