PluginProbe
Adminify – White Label, Admin Menu Editor, Login Customizer / 4.1.3
Adminify – White Label, Admin Menu Editor, Login Customizer v4.1.3
4.3.1 4.3.0 4.2.26 4.2.25 4.2.24 4.2.23 4.2.22 4.2.21 4.2.20 4.2.19 4.2.18 4.2.17 4.2.16 4.2.15 4.2.14 4.2.13 4.2.12 4.2.11 4.2.10 4.2.9 4.2.8 4.2.7 4.2.6 4.2.5 4.1.17 All 164 releases
adminify / Inc / Classes / Notifications / Model / Popup.php

Popup.php in Adminify – White Label, Admin Menu Editor, Login Customizer 4.1.3, at Inc/Classes/Notifications/Model/Popup.php

26 lines 448 B
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
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 }