HEX
Server: Apache
System: Linux 4801f1b1.ptr.provps.com 6.17.8-1.el9.elrepo.x86_64 #1 SMP PREEMPT_DYNAMIC Thu Nov 13 18:02:25 EST 2025 x86_64
User: nassaugo (1004)
PHP: 8.1.34
Disabled: exec,passthru,shell_exec,system
Upload Files
File: /home/nassaugo/www/wp-content/plugins/wp-all-import-pro/src/WordPress/AdminDismissibleNotice.php
<?php

namespace Wpai\WordPress;


/**
 * Class AdminDismissibleNotice
 * @package Wpai\WordPress
 */
class AdminDismissibleNotice extends AdminNotice {
    /**
     * @var
     */
    private $noticeId;

    /**
     * AdminDismissibleNotice constructor.
     * @param $message
     * @param $noticeId
     */
    public function __construct($message, $noticeId) {
        parent::__construct($message);
        $this->noticeId = $noticeId;
    }

    /**
     *
     */
    public function showNotice() {
        ?>
        <div class="<?php echo $this->getType();?> wpallimport-dismissible" style="position: relative;" rel="wpai_dismiss_warnings_<?php echo $this->noticeId; ?>"><p>
                <?php echo $this->message; ?>
            </p>
            <button class="notice-dismiss wpai-general-notice-dismiss" type="button" data-noticeId="<?php echo $this->noticeId; ?>"><span class="screen-reader-text">Dismiss this notice.</span></button>
        </div>
        <?php
    }

    /**
     *
     */
    public function render() {
        add_action('admin_notices', array($this, 'showNotice'));
    }

    /**
     * @return string
     */
    public function getType() {
        return 'error';
    }

    /**
     * @return false|mixed|void
     */
    public function isDismissed() {
        $optionName = 'wpai_dismiss_warnings_'.$this->noticeId.'_notice_ignore';
        $oldOptionName = 'wpai_dismiss_warnings_'.$this->noticeId;
        return get_option($optionName, false) || get_option($oldOptionName, false);

    }
}