# adminify/4.1.3/Inc/Classes/Notifications/Model/Popup.php

Adminify – White Label, Admin Menu Editor, Login Customizer, version 4.1.3. 26 lines.

- Page: https://pluginprobe.com/plugins/adminify/4.1.3/code/Inc/Classes/Notifications/Model/Popup.php
- Raw: https://pluginprobe.com/plugins/adminify/4.1.3/raw/Inc/Classes/Notifications/Model/Popup.php
- Modified: 2023-11-01T08:36:22+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/adminify/4.1.3/code/Inc/Classes/Notifications/Model/Popup.php#L10-L20`.

```php
<?php
namespace WPAdminify\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 'jltwp_adminify_popup_' . $this->get_id();
	}
}
```
