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

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

- Page: https://pluginprobe.com/plugins/adminify/4.1.3/code/Inc/Classes/Notifications/Notifications.php
- Raw: https://pluginprobe.com/plugins/adminify/4.1.3/raw/Inc/Classes/Notifications/Notifications.php
- Modified: 2026-01-29T11:55:36+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/Notifications.php#L10-L20`.

```php
<?php

namespace WPAdminify\Inc\Classes\Notifications;

use WPAdminify\Inc\Classes\Notifications\Base\Date;
use WPAdminify\Inc\Classes\Helper;
// No, Direct access Sir !!!
if ( !defined( 'ABSPATH' ) ) {
    exit;
}
/**
 * Notification Class
 *
 * Jewel Theme <support@jeweltheme.com>
 */
class Notifications {
    use Date;
    public $manager;

    public $conflict_days = 5;

    public $slug;

    /**
     * Construction method
     */
    public function __construct() {
        $this->manager = new Manager();
        $this->slug = Helper::jltwp_adminify_slug_cleanup();
        add_action( 'admin_print_scripts', array($this, 'init_notifications'), 99999999 );
        add_action(
            'jltwp_adminify_display_notice',
            array($this, 'display_notice'),
            10,
            2
        );
        // add_action('jltwp_adminify_display_popup', array($this, 'display_popup'), 10, 2);
        add_action( 'wp_ajax_jltwp_adminify_notification_action', array($this, 'notification_action') );
    }

    /**
     * Notification Action
     *
     * @author Jewel Theme <support@jeweltheme.com>
     */
    public function notification_action() {
        check_ajax_referer( 'jltwp_adminify_notification_nonce' );
        // Security check - only administrators can manage notifications
        if ( !current_user_can( 'manage_options' ) ) {
            wp_send_json_error( array(
                'message' => __( 'You do not have permission to perform this action.', 'adminify' ),
            ) );
        }
        $action_type = ( !empty( $_REQUEST['action_type'] ) ? sanitize_key( $_REQUEST['action_type'] ) : '' );
        $notification_type = ( !empty( $_REQUEST['notification_type'] ) ? sanitize_key( $_REQUEST['notification_type'] ) : '' );
        $trigger_time = ( !empty( $_REQUEST['trigger_time'] ) ? sanitize_text_field( wp_unslash( $_REQUEST['trigger_time'] ) ) : '' );
        $exec_notifications = $this->manager->get_exec_notifications( $trigger_time, $notification_type );
        // No Executable Notifications found .
        if ( empty( $exec_notifications ) ) {
            die( 0 );
        }
        $count = 0;
        foreach ( $exec_notifications as $index => $notification ) {
            if ( 0 === $index ) {
                if ( 'disable' === $action_type ) {
                    $notification->is_active = false;
                }
                $notification->fire( $trigger_time, $notification_type )->save();
            } else {
                ++$count;
                $notification->maybe_delay( $this->date_increment( $trigger_time, $this->conflict_days * $count ) )->save();
            }
        }
        die( 0 );
    }

    /**
     * Notification Setup
     *
     * @param [type] $type .
     *
     * @author Jewel Theme <support@jeweltheme.com>
     */
    public function setup_notifications_by_type( $type ) {
        // $trigger_time should be today .
        $trigger_time = $this->current_time();
        // Block if necessary .
        $notification_last_fired = get_option( "jltwp_adminify_{$type}_last_interact" );
        if ( $notification_last_fired ) {
            $notification_enable_date = $this->date_increment( $notification_last_fired, $this->conflict_days );
            if ( $this->date_is_prev( $trigger_time, $notification_enable_date ) ) {
                return;
            }
        }
        // Get Executable Notifications .
        $exec_notifications = $this->manager->get_exec_notifications( $trigger_time, $type );
        // No Executable Notifications found .
        if ( empty( $exec_notifications ) ) {
            return;
        }
        $notification = $exec_notifications[0];
        do_action( "jltwp_adminify_display_{$type}", $notification, $trigger_time );
    }

    /**
     * Notification initialization
     *
     * @author Jewel Theme <support@jeweltheme.com>
     */
    public function init_notifications() {
        add_action( 'admin_notices', array($this, 'setup_notifications') );
        add_action( 'network_admin_notices', array($this, 'setup_notifications') );
    }

    /**
     * Notification setup
     *
     * @author Jewel Theme <support@jeweltheme.com>
     */
    public function setup_notifications() {
        $this->setup_notifications_by_type( 'notice' );
        $this->setup_notifications_by_type( 'popup' );
    }

    /**
     * Display notice
     *
     * @param [type] $notice .
     * @param [type] $trigger_time .
     *
     * @return void
     * @author Jewel Theme <support@jeweltheme.com>
     */
    public function display_notice( $notice, $trigger_time ) {
        $notice->notice_header();
        $notice->notice_content();
        $notice->notice_footer();
        $notice->core_script( $trigger_time );
    }

    /**
     * Display Popup
     *
     * @param [type] $popup .
     * @param [type] $trigger_time .
     *
     * @return void
     * @author Jewel Theme <support@jeweltheme.com>
     */
    public function display_popup( $popup, $trigger_time ) {
        if ( 'FALSE' === $this->get_content( 'is_campaign' ) ) {
            return;
        }
        $image_url = $popup->get_content( 'image_url' );
        $notice = ( !empty( $popup->get_content( 'notice' ) ) ? $popup->get_content( 'notice' ) : '' );
        ?>

		<div class="wp-adminify-popup" id="wp-adminify-popup" data-plugin="<?php 
        echo esc_attr( $this->slug );
        ?>" tabindex="1">

			<div class="wp-adminify-popup-overlay"></div>

			<div class="wp-adminify-popup-modal" style="background-image: url('<?php 
        echo esc_url( $image_url );
        ?>'); --wp-adminify-popup-color: <?php 
        echo esc_attr( $popup->get_content( 'btn_color' ) );
        ?>;">

				<!-- close  -->
				<div class="wp-adminify-popup-modal-close popup-dismiss">×</div>

				<!-- content section  -->
				<div class="wp-adminify-popup-modal-footer">

					<!-- countdown  -->
					<div class="wp-adminify-popup-countdown" style="display: none;">

						<?php 
        if ( $notice ) {
            ?>
							<span data-counter="notice" style="color:#F4B740; font-size:14px; padding-bottom:20px; font-style:italic;">
								<?php 
            echo esc_html__( 'Notice:', 'adminify' );
            ?> <?php 
            echo esc_html( $notice );
            ?>
							</span>
						<?php 
        }
        ?>

						<span class="wp-adminify-popup-countdown-text"><?php 
        echo esc_html__( 'Deal Ends In', 'adminify' );
        ?></span>
						<div class="wp-adminify-popup-countdown-time">
							<div>
								<span data-counter="days">00</span>
								<span><?php 
        echo esc_html__( 'Days', 'adminify' );
        ?></span>
							</div>
							<span>:</span>
							<div>
								<span data-counter="hours">00</span>
								<span><?php 
        echo esc_html__( 'Hours', 'adminify' );
        ?></span>
							</div>
							<span>:</span>
							<div>
								<span data-counter="minutes">00</span>
								<span><?php 
        echo esc_html__( 'Minutes', 'adminify' );
        ?></span>
							</div>
							<span>:</span>
							<div>
								<span data-counter="seconds">00</span>
								<span><?php 
        echo esc_html__( 'Seconds', 'adminify' );
        ?></span>
							</div>
						</div>
					</div>

					<!-- button  -->
					<a class="wp-adminify-popup-button" style="color: #fff !important" target="_blank" href="<?php 
        echo esc_url( $popup->get_content( 'button_url' ) );
        ?>">
						<?php 
        if ( jltwp_adminify()->can_use_premium_code() ) {
            echo esc_html__( 'Upgrade Now', 'adminify' );
        } else {
            echo esc_html( $popup->get_content( 'button_text' ) );
        }
        ?>
					</a>
				</div>
			</div>
		</div>

		<script>
			function jltwp_adminify_popup_action(evt, $this, $action_type) {

				evt.preventDefault();

				$this.closest('.wp-adminify-popup').fadeOut(200);

				jQuery.post('<?php 
        echo esc_url( admin_url( 'admin-ajax.php' ) );
        ?>', {
					action: 'jltwp_adminify_notification_action',
					_wpnonce: '<?php 
        echo esc_js( wp_create_nonce( 'jltwp_adminify_notification_nonce' ) );
        ?>',
					action_type: $action_type,
					notification_type: 'popup',
					trigger_time: '<?php 
        echo esc_attr( $trigger_time );
        ?>'
				});
			}

			// Notice Dismiss
			jQuery('body').on('click', '.wp-adminify-popup .popup-dismiss', function(evt) {
				jltwp_adminify_popup_action(evt, jQuery(this), 'dismiss');
			});

			// Notice Disable
			jQuery('body').on('click', '.wp-adminify-popup .popup-disable', function(evt) {
				jltwp_adminify_popup_action(evt, jQuery(this), 'disable');
			});
		</script>

<?php 
    }

}

```
