# adminify/4.1.3/Inc/Classes/Notifications/Manager.php

Adminify – White Label, Admin Menu Editor, Login Customizer, version 4.1.3. 47 lines.

- Page: https://pluginprobe.com/plugins/adminify/4.1.3/code/Inc/Classes/Notifications/Manager.php
- Raw: https://pluginprobe.com/plugins/adminify/4.1.3/raw/Inc/Classes/Notifications/Manager.php
- Modified: 2026-02-08T11:03:22+00:00

Line numbers below start at 1. Link to a line or a range by appending a fragment to the
page URL, for example `https://pluginprobe.com/plugins/adminify/4.1.3/code/Inc/Classes/Notifications/Manager.php#L10-L20`.

```php
<?php
namespace WPAdminify\Inc\Classes\Notifications;

use WPAdminify\Inc\Classes\Notifications\Base\Data;

// No, Direct access Sir !!!
if ( ! defined( 'ABSPATH' ) ) {
	exit;
}

/**
 * Notice Manager
 *
 * Jewel Theme <support@jeweltheme.com>
 */
class Manager extends Data {

	/**
	 * Constructor method
	 *
	 * @author Jewel Theme <support@jeweltheme.com>
	 */
	public function __construct() {

		// Register Latest_Updates Notice.
		$this->register( new Latest_Updates() );

		// Register Ask_For_Rating Notice.
		$this->register( new Ask_For_Rating() );

		// Register Subscribe Notice .
		$this->register( new Subscribe() );

		// Discount Coupon
		// $this->register( new Discount() );

		// Register What we Collect Notice .
		$this->register( new What_We_Collect() );

		// Module_Conflicts
		// $this->register( new Module_Conflicts() );

		// Register Upgrade_Notice Notice for managing all notices .
		$this->register( new Upgrade_Notice() );
	}
}

```
