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 / Manager.php

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

47 lines 960 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;
3
4 use WPAdminify\Inc\Classes\Notifications\Base\Data;
5
6 // No, Direct access Sir !!!
7 if ( ! defined( 'ABSPATH' ) ) {
8 exit;
9 }
10
11 /**
12 * Notice Manager
13 *
14 * Jewel Theme <support@jeweltheme.com>
15 */
16 class Manager extends Data {
17
18 /**
19 * Constructor method
20 *
21 * @author Jewel Theme <support@jeweltheme.com>
22 */
23 public function __construct() {
24
25 // Register Latest_Updates Notice.
26 $this->register( new Latest_Updates() );
27
28 // Register Ask_For_Rating Notice.
29 $this->register( new Ask_For_Rating() );
30
31 // Register Subscribe Notice .
32 $this->register( new Subscribe() );
33
34 // Discount Coupon
35 // $this->register( new Discount() );
36
37 // Register What we Collect Notice .
38 $this->register( new What_We_Collect() );
39
40 // Module_Conflicts
41 // $this->register( new Module_Conflicts() );
42
43 // Register Upgrade_Notice Notice for managing all notices .
44 $this->register( new Upgrade_Notice() );
45 }
46 }
47