| 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
/**
* @package Adminimize
* @subpackage Widget Setup
* @author Frank Bültge
* @since 1.8.1 01/10/2013
*/
if ( ! function_exists( 'add_action' ) ) {
echo "Hi there! I'm just a part of plugin, not much I can do when called directly.";
exit;
}
if ( ! is_admin() ) {
return;
}
// If is AJAX Call.
if ( defined('DOING_AJAX') && DOING_AJAX ) {
return;
}
function _mw_adminimize_get_all_widgets() {
global $wp_widget_factory;
if ( is_object( $wp_widget_factory ) ) {
return $wp_widget_factory->widgets;
}
return FALSE;
}
function _mw_adminimize_get_registered_widgets() {
global $wp_registered_widgets;
return $wp_registered_widgets;
}
function _mw_adminimize_get_sidebars_widgets() {
global $sidebars_widgets;
return $sidebars_widgets;
}
function _mw_adminimize_get_registered_sidebars() {
global $wp_registered_sidebars;
return $wp_registered_sidebars;
}
/**
* Doing on load of widgets.php
*
* @return void
*/
add_action( 'after_setup_theme', '_mw_adminimize_on_widgets_init' );
function _mw_adminimize_on_widgets_init() {
if ( is_admin() && 'widgets.php' === $GLOBALS[ 'pagenow' ] ) {
add_action( 'widgets_init', '_mw_adminimize_unregister_widgets' );
add_action( 'widgets_init', '_mw_adminimize_unregister_sidebars', 9999 );
}
}
/**
* Remove widgets, areas for different roles
*
* @return void
*/
function _mw_adminimize_unregister_widgets() {
// Get settings.
$adminimizeoptions = _mw_adminimize_get_option_value();
// Update settings.
_mw_adminimize_update_option( $adminimizeoptions );
// exclude super admin
if ( _mw_adminimize_exclude_super_admin() ) {
return NULL;
}
$user_roles = _mw_adminimize_get_all_user_roles();
foreach ( $user_roles as $role ) {
$disabled_widget_option_[ $role ] = _mw_adminimize_get_option_value(
'mw_adminimize_disabled_widget_option_' . $role . '_items'
);
}
foreach ( $user_roles as $role ) {
if ( ! isset( $disabled_widget_option_[ $role ][ '0' ] ) ) {
$disabled_widget_option_[ $role ][ '0' ] = '';
}
}
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 ) && is_array( $disabled_widget_option_[ $role ] ) ) {
foreach ( $disabled_widget_option_[ $role ] as $widgets ) {
unregister_widget( $widgets );
$GLOBALS[ 'wp_widget_factory' ]->unregister( $widgets );
//wp_unregister_sidebar_widget( 'Monster_Widget' );
}
}
} // end if user roles
}
}
/**
* Remove sidebars for different roles
*
* @return void
*/
function _mw_adminimize_unregister_sidebars() {
// Get settings.
$adminimizeoptions = _mw_adminimize_get_option_value();
// Get settings.
_mw_adminimize_update_option( $adminimizeoptions );
// exclude super admin
if ( _mw_adminimize_exclude_super_admin() ) {
return NULL;
}
$user_roles = _mw_adminimize_get_all_user_roles();
foreach ( $user_roles as $role ) {
$disabled_widget_option_[ $role ] = _mw_adminimize_get_option_value(
'mw_adminimize_disabled_widget_option_' . $role . '_items'
);
}
foreach ( $user_roles as $role ) {
if ( ! isset( $disabled_widget_option_[ $role ][ '0' ] ) ) {
$disabled_widget_option_[ $role ][ '0' ] = '';
}
}
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 ) && is_array( $disabled_widget_option_[ $role ] ) ) {
foreach ( $disabled_widget_option_[ $role ] as $sidebar ) {
unregister_sidebar( $sidebar );
}
}
} // end if user roles
}
}