# master-addons/3.2.3/inc/classes/notifications/model/popup.php

Master Addons for Elementor – Elementor Addons, Widgets, Mega Menu Builder, Popup Builder, Widget Builder &amp; Template Kits, version 3.2.3. 30 lines.

- Page: https://pluginprobe.com/plugins/master-addons/3.2.3/code/inc/classes/notifications/model/popup.php
- Raw: https://pluginprobe.com/plugins/master-addons/3.2.3/raw/inc/classes/notifications/model/popup.php
- Modified: 2026-03-08T11:32:50+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/master-addons/3.2.3/code/inc/classes/notifications/model/popup.php#L10-L20`.

```php
<?php

namespace MasterAddons\Inc\Classes\Notifications\Model;

// No, Direct access Sir !!!
if (!defined('ABSPATH')) {
	exit;
}

/**
 * Abstract class for Popup
 *
 * Jewel Theme <support@jeweltheme.com>
 */
abstract class Popup extends Notification
{

	public $type = 'popup';

	/**
	 * Get Key
	 *
	 * @author Jewel Theme <support@jeweltheme.com>
	 */
	final public function get_key()
	{
		return 'jltma_popup_' . $this->get_id();
	}
}

```
