*/ class Notifications { use Date; public $manager; public $conflict_days = 5; public $slug; /** * Constructor method */ public function __construct() { $this->manager = new Manager(); $this->slug = Helper::jltma_slug_cleanup(); add_action('admin_print_scripts', array($this, 'init_notifications'), 99999999); add_action('jltma_display_notice', array($this, 'display_notice'), 10, 2); add_action('jltma_display_popup', array($this, 'display_popup'), 10, 2); add_action('wp_ajax_jltma_notification_action', array($this, 'notification_action')); } /** * Notification Action * * @author Jewel Theme */ public function notification_action() { check_ajax_referer('jltma_notification_nonce'); if ( ! current_user_can( 'manage_options' ) ) { wp_send_json_error( [ 'message' => __( 'Insufficient permissions', 'master-addons' ) ] ); } $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 */ 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("jltma_{$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("jltma_display_{$type}", $notification, $trigger_time); } /** * Notification initialization * * @author Jewel Theme */ public function init_notifications() { add_action('admin_notices', array($this, 'setup_notifications')); } /** * Notification setup * * @author Jewel Theme */ 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 */ 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 */ public function display_popup($popup, $trigger_time) { $screen = get_current_screen(); // Screens where the notification popup is allowed to show. $allowed_screens = array( 'dashboard', // index.php 'toplevel_page_master-addons-settings', // admin.php?page=master-addons-settings 'master-addons_page_jltma-template-library', // admin.php?page=jltma-template-library 'master-addons_page_jltma-template-kits', // admin.php?page=jltma-template-kits 'master-addons_page_master-addons-recommended-plugins', // admin.php?page=master-addons-recommended-plugins 'master-addons_page_master-addons-settings-account', // admin.php?page=master-addons-settings-account 'edit-master_template', // edit.php?post_type=master_template 'edit-jltma_popup', // edit.php?post_type=jltma_popup ); if ( ! $screen || ! in_array( $screen->id, $allowed_screens, true ) ) { return; } $image_url = $popup->get_content('image_url'); $notice = !empty($popup->get_content('notice')) ? $popup->get_content('notice') : ''; ?>