Network Admin Menu:
* Don't display update count for Themes when the user doesn't have the 'update_themes' cap * Don't display update count for Plugins when there aren't any/count is `0` Props peterchester. Fixes #29651. Built from https://develop.svn.wordpress.org/trunk@29817 git-svn-id: http://core.svn.wordpress.org/trunk@29583 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
parent
fd4e3023d6
commit
71bca51151
|
@ -23,7 +23,7 @@ $submenu['users.php'][10] = array( _x('Add New', 'user'), 'create_users', 'user
|
|||
|
||||
$update_data = wp_get_update_data();
|
||||
|
||||
if ( $update_data['counts']['themes'] ) {
|
||||
if ( current_user_can( 'update_themes' ) && $update_data['counts']['themes'] ) {
|
||||
$menu[15] = array(sprintf( __( 'Themes %s' ), "<span class='update-plugins count-{$update_data['counts']['themes']}'><span class='theme-count'>" . number_format_i18n( $update_data['counts']['themes'] ) . "</span></span>" ), 'manage_network_themes', 'themes.php', '', 'menu-top menu-icon-appearance', 'menu-appearance', 'dashicons-admin-appearance' );
|
||||
} else {
|
||||
$menu[15] = array( __( 'Themes' ), 'manage_network_themes', 'themes.php', '', 'menu-top menu-icon-appearance', 'menu-appearance', 'dashicons-admin-appearance' );
|
||||
|
@ -32,7 +32,7 @@ $submenu['themes.php'][5] = array( __('Installed Themes'), 'manage_network_them
|
|||
$submenu['themes.php'][10] = array( _x('Add New', 'theme'), 'install_themes', 'theme-install.php' );
|
||||
$submenu['themes.php'][15] = array( _x('Editor', 'theme editor'), 'edit_themes', 'theme-editor.php' );
|
||||
|
||||
if ( current_user_can( 'update_plugins' ) ) {
|
||||
if ( current_user_can( 'update_plugins' ) && $update_data['counts']['plugins'] ) {
|
||||
$menu[20] = array( sprintf( __( 'Plugins %s' ), "<span class='update-plugins count-{$update_data['counts']['plugins']}'><span class='plugin-count'>" . number_format_i18n( $update_data['counts']['plugins'] ) . "</span></span>" ), 'manage_network_plugins', 'plugins.php', '', 'menu-top menu-icon-plugins', 'menu-plugins', 'dashicons-admin-plugins');
|
||||
} else {
|
||||
$menu[20] = array( __('Plugins'), 'manage_network_plugins', 'plugins.php', '', 'menu-top menu-icon-plugins', 'menu-plugins', 'dashicons-admin-plugins' );
|
||||
|
|
Loading…
Reference in New Issue