: str_replace(): Passing null to parameter #2 ($replace) of type array|string is deprecated in
class wfAdminNoticeQueue {
protected static function _notices() {
return self::_purgeObsoleteNotices(wfConfig::get_ser('adminNoticeQueue', array()));
private static function _purgeObsoleteNotices($notices) {
foreach ($notices as $id => $notice) {
if ($notice['category'] === 'php8') {
self::_setNotices($notices);
protected static function _setNotices($notices) {
wfConfig::set_ser('adminNoticeQueue', $notices);
* Adds an admin notice to the display queue.
* @param string $severity
* @param string $messageHTML
* @param bool|string $category If not false, notices with the same category will be removed prior to adding this one.
* @param bool|array $users If not false, an array of user IDs the notice should show for.
public static function addAdminNotice($severity, $messageHTML, $category = false, $users = false) {
$notices = self::_notices();
foreach ($notices as $id => $n) {
if (isset($n['users'])) {
$usersMatches = wfUtils::sets_equal($n['users'], $users);
else if ($users === false) {
$categoryMatches = false;
if ($category !== false && isset($n['category']) && $n['category'] == $category) {
if ($usersMatches && $categoryMatches) {
'messageHTML' => $messageHTML,
if ($category !== false) {
$notices[$id]['category'] = $category;
$notices[$id]['users'] = $users;
self::_setNotices($notices);
* Removes an admin notice using one of three possible search methods:
* 1. If $id matches. $category and $users are ignored
* 2. If $category matches. $users must be false for this.
* 3. If $category matches and the notice's user IDs matches $users.
* @param bool|string $category
* @param bool|int[] $users
public static function removeAdminNotice($id = false, $category = false, $users = false) {
if ($id === false && $category === false && $users === false) {
else if ($id !== false) {
$notices = self::_notices();
foreach ($notices as $nid => $n) {
if ($id == $nid) { //ID match
else if ($id !== false) {
if ($category !== false && isset($n['category']) && $category == $n['category']) {
if (isset($n['users']) && wfUtils::sets_equal($users, $n['users'])) {
self::_setNotices($notices);
public static function hasNotice($category = false, $users = false) {
$notices = self::_notices();
foreach ($notices as $nid => $n) {
$categoryMatches = false;
if (($category === false && !isset($n['category'])) || ($category !== false && isset($n['category']) && $category == $n['category'])) {
if (($users === false && !isset($n['users'])) || ($users !== false && isset($n['users']) && wfUtils::sets_equal($users, $n['users']))) {
if ($categoryMatches && $usersMatches) {
public static function enqueueAdminNotices() {
$user = wp_get_current_user();
$networkAdmin = is_multisite() && is_network_admin();
$notices = self::_notices();
foreach ($notices as $nid => $n) {
if (isset($n['users']) && array_search($user->ID, $n['users']) === false) {
$notice = new wfAdminNotice($nid, $n['severity'], $n['messageHTML']);
add_action('network_admin_notices', array($notice, 'displayNotice'));
add_action('admin_notices', array($notice, 'displayNotice'));
const SEVERITY_CRITICAL = 'critical';
const SEVERITY_WARNING = 'warning';
const SEVERITY_INFO = 'info';
public function __construct($id, $severity, $messageHTML) {
$this->_severity = $severity;
$this->_messageHTML = $messageHTML;
public function displayNotice() {
$severityClass = 'notice-info';
if ($this->_severity == self::SEVERITY_CRITICAL) {
$severityClass = 'notice-error';
else if ($this->_severity == self::SEVERITY_WARNING) {
$severityClass = 'notice-warning';
echo '<div class="wf-admin-notice notice ' . $severityClass . '" data-notice-id="' . esc_attr($this->_id) . '"><p>' . $this->_messageHTML . '</p><p><a class="wf-btn wf-btn-default wf-btn-sm wf-dismiss-link" href="#" onclick="wordfenceExt.dismissAdminNotice(\'' . esc_attr($this->_id) . '\'); return false;" role="button">' . esc_html__('Dismiss', 'wordfence') . '</a></p></div>';