Files
masimmo.pl/modules/creativeelements/includes/interfaces/group-control.php
2024-11-20 09:09:44 +01:00

33 lines
580 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;
/**
* Group control interface.
*
* An interface for Elementor group control.
*
* @since 1.0.0
*/
interface GroupControlInterface
{
/**
* Get group control type.
*
* Retrieve the group control type.
*
* @since 1.0.0
* @static
*/
public static function getType();
}