# elementor/3.35.6/modules/promotions/controls/atomic-promotion-control.php

Elementor Website Builder – more than just a page builder, version 3.35.6. 24 lines.

- Page: https://pluginprobe.com/plugins/elementor/3.35.6/code/modules/promotions/controls/atomic-promotion-control.php
- Raw: https://pluginprobe.com/plugins/elementor/3.35.6/raw/modules/promotions/controls/atomic-promotion-control.php
- Modified: 2026-02-04T20:46:24+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.35.6/code/modules/promotions/controls/atomic-promotion-control.php#L10-L20`.

```php
<?php
namespace Elementor\Modules\Promotions\Controls;

use Elementor\Modules\AtomicWidgets\Controls\Base\Atomic_Control_Base;

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

class Atomic_Promotion_Control extends Atomic_Control_Base {

	public static function make( string $type ): self {
		return new self( $type );
	}

	public function get_type(): string {
		return $this->get_bind();
	}

	public function get_props(): array {
		return [];
	}
}

```
