| Server IP : 39.106.62.82 / Your IP : 216.73.216.26 Web Server : nginx/1.14.1 System : Linux iz2ze1m0zmp2dk5c3j5ap5z 3.10.0-1127.19.1.el7.x86_64 #1 SMP Tue Aug 25 17:23:54 UTC 2020 x86_64 User : www ( 1000) 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 : /webdata/gohomesh.com/wp-content/plugins/adminimize/inc-setup/ |
Upload File : |
<?php
/**
* Remove the admin notices from global options settings
*
* @since 2015-12-09
*/
if ( ! function_exists( 'add_action' ) ) {
die( "Hi there! I'm just a part of plugin, not much I can do when called directly." );
}
// Need only on admin area
if ( ! is_admin() ) {
return;
}
// If is AJAX Call.
if ( defined('DOING_AJAX') && DOING_AJAX ) {
return;
}
// If is AJAX Call.
if ( defined('DOING_AJAX') && DOING_AJAX ) {
return;
}
add_action( 'admin_init', '_mw_adminimize_init_to_remove_admin_notices' );
/**
* Fire all hooks to remove admin notices.
*/
function _mw_adminimize_init_to_remove_admin_notices() {
if ( _mw_adminimize_check_to_remove_admin_notices() ) {
add_action( 'admin_head', '_mw_adminimize_remove_admin_notices', PHP_INT_MAX + 1 );
}
}
/**
* Remove Admin Notices.
*
* @return boolean
*/
function _mw_adminimize_check_to_remove_admin_notices() {
// Exclude super admin.
if ( _mw_adminimize_exclude_super_admin() ) {
return false;
}
$user_roles = _mw_adminimize_get_all_user_roles();
foreach ( $user_roles as $role ) {
$disabled_global_option_[ $role ] = _mw_adminimize_get_option_value(
'mw_adminimize_disabled_global_option_' . $role . '_items'
);
}
foreach ( $user_roles as $role ) {
if ( ! isset( $disabled_global_option_[ $role ][ '0' ] ) ) {
$disabled_global_option_[ $role ][ '0' ] = '';
}
}
$remove_admin_notices = false;
foreach ( $user_roles as $role ) {
$user = wp_get_current_user();
if ( is_array( $user->roles ) && in_array( $role, $user->roles ) ) {
if ( _mw_adminimize_current_user_has_role( $role )
&& isset( $disabled_global_option_[ $role ] )
&& is_array( $disabled_global_option_[ $role ] )
) {
$remove_admin_notices = _mw_adminimize_recursive_in_array(
'.admin-notices', $disabled_global_option_[ $role ]
);
}
}
}
if ( $remove_admin_notices ) {
return true;
}
return false;
}
/**
* Remove different admin notices.
*/
function _mw_adminimize_remove_admin_notices() {
remove_action( 'admin_notices', 'update_nag', 3 );
remove_action( 'admin_notices', 'maintenance_nag', 10 );
remove_action( 'admin_notices', 'new_user_email_admin_notice' );
remove_action( 'admin_notices', 'site_admin_notice' );
// @ToDo, if we will use this.
// Catch all admin notices.
/*
add_action( 'admin_notices', function () {
ob_start();
}, PHP_INT_MAX + 1 );
$adm_notices = trim( ob_get_clean() );
$adm_notices = preg_replace(
'/(\sclass=["\'][^"\']*?notice)(["\'\s])/',
'$1 inline$2',
$adm_notices
);
*/
}