| 1 |
<?php |
| 2 |
namespace WPAdminify\Inc\Classes\Notifications\Model; |
| 3 |
|
| 4 |
// No, Direct access Sir !!! |
| 5 |
if ( ! defined( 'ABSPATH' ) ) { |
| 6 |
exit; |
| 7 |
} |
| 8 |
|
| 9 |
/** |
| 10 |
* Abstract class for Popup |
| 11 |
* |
| 12 |
* Jewel Theme <support@jeweltheme.com> |
| 13 |
*/ |
| 14 |
abstract class Popup extends Notification { |
| 15 |
|
| 16 |
public $type = 'popup'; |
| 17 |
|
| 18 |
/** |
| 19 |
* Get Key |
| 20 |
* |
| 21 |
* @author Jewel Theme <support@jeweltheme.com> |
| 22 |
*/ |
| 23 |
final public function get_key() { |
| 24 |
return 'jltwp_adminify_popup_' . $this->get_id(); |
| 25 |
} |
| 26 |
} |