PluginProbe
Adminify – White Label, Admin Menu Editor, Login Customizer / 3.1.9
Adminify – White Label, Admin Menu Editor, Login Customizer v3.1.9
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 3.1.9, at Inc/Classes/Notifications/Manager.php

41 lines 827 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 // Register What we Collect Notice .
35 $this->register( new What_We_Collect() );
36
37 // Register Upgrade_Notice Notice for managing all notices .
38 $this->register( new Upgrade_Notice() );
39 }
40 }
41