| 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 |
|