Server IP : 14.241.111.210 / Your IP : 18.221.87.167 Web Server : Apache System : Linux localhost.localdomain 3.10.0-1160.66.1.el7.x86_64 #1 SMP Wed May 18 16:02:34 UTC 2022 x86_64 User : www ( 1001) PHP Version : 7.4.33 Disable Function : passthru,exec,system,putenv,chroot,chgrp,chown,shell_exec,popen,proc_open,pcntl_exec,ini_alter,ini_restore,dl,openlog,syslog,readlink,symlink,popepassthru,pcntl_alarm,pcntl_fork,pcntl_waitpid,pcntl_wait,pcntl_wifexited,pcntl_wifstopped,pcntl_wifsignaled,pcntl_wifcontinued,pcntl_wexitstatus,pcntl_wtermsig,pcntl_wstopsig,pcntl_signal,pcntl_signal_dispatch,pcntl_get_last_error,pcntl_strerror,pcntl_sigprocmask,pcntl_sigwaitinfo,pcntl_sigtimedwait,pcntl_exec,pcntl_getpriority,pcntl_setpriority,imap_open,apache_setenv MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : ON | Sudo : ON | Pkexec : ON Directory : /www/wwwroot/ohapaint.vn/wp-content/plugins/nextend-facebook-connect/NSL/ |
Upload File : |
<?php namespace NSL; use NSL\Persistent\Persistent; use WP_Error; 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(); } }