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