# elementor/3.7.4/includes/interfaces/group-control.php

Elementor Website Builder – more than just a page builder, version 3.7.4. 28 lines.

- Page: https://pluginprobe.com/plugins/elementor/3.7.4/code/includes/interfaces/group-control.php
- Raw: https://pluginprobe.com/plugins/elementor/3.7.4/raw/includes/interfaces/group-control.php
- Modified: 2018-01-04T15:08:48+00:00

Line numbers below start at 1. Link to a line or a range by appending a fragment to the
page URL, for example `https://pluginprobe.com/plugins/elementor/3.7.4/code/includes/interfaces/group-control.php#L10-L20`.

```php
<?php
namespace Elementor;

if ( ! defined( 'ABSPATH' ) ) {
	exit; // Exit if accessed directly.
}

/**
 * Group control interface.
 *
 * An interface for Elementor group control.
 *
 * @since 1.0.0
 */
interface Group_Control_Interface {

	/**
	 * Get group control type.
	 *
	 * Retrieve the group control type.
	 *
	 * @since 1.0.0
	 * @access public
	 * @static
	 */
	public static function get_type();
}

```
