Files
drmaterac.pl/modules/creativeelements/includes/interfaces/group-control.php
2025-07-13 11:19:53 +02:00

34 lines
601 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;
/**
* 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
* @access public
* @static
*/
public static function getType();
}