https://t.me/AnonymousX5
Server : Apache/2
System : Linux vps.sdns.vn 3.10.0-1160.15.2.el7.x86_64 #1 SMP Wed Feb 3 15:06:38 UTC 2021 x86_64
User : phatdatpq ( 1022)
PHP Version : 7.2.34
Disable Function : exec,system,passthru,shell_exec,proc_close,proc_open,dl,popen,show_source,posix_kill,posix_mkfifo,posix_getpwuid,posix_setpgid,posix_setsid,posix_setuid,posix_setgid,posix_seteuid,posix_setegid,posix_uname
Directory :  /home/phatdatpq/public_html/wp-content/plugins/nextend-facebook-connect/NSL/

Upload File :
current_dir [ Writeable ] document_root [ Writeable ]

 

Current File : /home/phatdatpq/public_html/wp-content/plugins/nextend-facebook-connect/NSL/Notices.php
<?php

namespace NSL;

use NSL\Persistent\Persistent;

class Notices {

    private static $notices;

    private static $instance;

    public static function init() {
        if (self::$instance === null) {
            self::$instance = new self;
        }
    }

    private function __construct() {

        add_action('init', array(
            $this,
            'load'
        ), 11);

        if (basename($_SERVER['PHP_SELF']) !== 'options-general.php' || empty($_GET['page']) || $_GET['page'] !== 'nextend-social-login') {
            add_action('admin_notices', array(
                $this,
                'admin_notices'
            ));
        }

        add_action('admin_print_footer_scripts', array(
            $this,
            'notices_fallback'
        ));
        add_action('wp_print_footer_scripts', array(
            $this,
            'notices_fallback'
        ));
    }

    public function load() {
        self::$notices = maybe_unserialize(self::get());
        if (!is_array(self::$notices)) {
            self::$notices = array();
        }
    }

    private static function add($type, $message) {
        if (!isset(self::$notices[$type])) {
            self::$notices[$type] = array();
        }

        if (!in_array($message, self::$notices[$type])) {
            self::$notices[$type][] = $message;
        }

        self::set();
    }

    /**
     * @param $message string|\WP_Error
     */
    public static function addError($message) {
        if (is_wp_error($message)) {
            foreach ($message->get_error_messages() as $m) {
                self::add('error', $m);
            }
        } else {
            self::add('error', $message);
        }
    }

    public static function getErrors() {
        if (isset(self::$notices['error'])) {

            $errors = self::$notices['error'];

            unset(self::$notices['error']);
            self::set();

            return $errors;
        }

        return false;
    }

    public static function addSuccess($message) {
        self::add('success', $message);
    }

    public static function displayNotices() {

        $html = self::getHTML();

        if (!empty($html)) {
            echo '<div class="nsl-admin-notices">' . $html . '</div>';
        }
    }

    public function admin_notices() {
        echo self::getHTML();
    }

    /**
     * Displays the non-displayed notices in lightbox as a fallback
     */
    public function notices_fallback() {

        $html = self::getHTML();

        if (!empty($html)) {
            ?>
            <div id="nsl-notices-fallback" onclick="this.parentNode.removeChild(this);">
                <?php echo $html; ?>
                <style>
                    #nsl-notices-fallback {
                        position: fixed;
                        right: 10px;
                        top: 10px;
                        z-index: 10000;
                    }

                    .admin-bar #nsl-notices-fallback {
                        top: 42px;
                    }

                    #nsl-notices-fallback > div {
                        position: relative;
                        background: #fff;
                        border-left: 4px solid #fff;
                        box-shadow: 0 1px 1px 0 rgba(0, 0, 0, .1);
                        margin: 5px 15px 2px;
                        padding: 1px 20px;
                    }

                    #nsl-notices-fallback > div.error {
                        display: block;
                        border-left-color: #dc3232;
                    }

                    #nsl-notices-fallback > div.updated {
                        display: block;
                        border-left-color: #46b450;
                    }

                    #nsl-notices-fallback p {
                        margin: .5em 0;
                        padding: 2px;
                    }

                    #nsl-notices-fallback > div:after {
                        position: absolute;
                        right: 5px;
                        top: 5px;
                        content: '\00d7';
                        display: block;
                        height: 16px;
                        width: 16px;
                        line-height: 16px;
                        text-align: center;
                        font-size: 20px;
                        cursor: pointer;
                    }
                </style>
            </div>
            <?php
        }
    }

    private static function getHTML() {
        $html = '';
        if (isset(self::$notices['success'])) {
            foreach (self::$notices['success'] AS $message) {
                $html .= '<div class="updated"><p>' . $message . '</p></div>';
            }
        }

        if (isset(self::$notices['error'])) {
            foreach (self::$notices['error'] AS $message) {
                $html .= '<div class="error"><p>' . $message . '</p></div>';
            }
        }

        self::clear();

        return $html;
    }

    private static function get() {
        return Persistent::get('notices');
    }

    private static function set() {
        Persistent::set('notices', self::$notices);
    }

    public static function clear() {

        Persistent::delete('notices');
        self::$notices = array();
    }
}

https://t.me/AnonymousX5 - 2025