# elementor/3.7.3/modules/promotions/module.php

Elementor Website Builder – more than just a page builder, version 3.7.3. 22 lines.

- Page: https://pluginprobe.com/plugins/elementor/3.7.3/code/modules/promotions/module.php
- Raw: https://pluginprobe.com/plugins/elementor/3.7.3/raw/modules/promotions/module.php
- Modified: 2022-08-21T08:37:34+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.3/code/modules/promotions/module.php#L10-L20`.

```php
<?php

namespace Elementor\Modules\Promotions;

use Elementor\Core\Base\Module as Base_Module;
use Elementor\Utils;

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

class Module extends Base_Module {

	public static function is_active() {
		return ! Utils::has_pro();
	}

	public function get_name() {
		return 'promotions';
	}
}

```
