Make WordPress Core


Ignore:
File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/wp-admin/menu.php

    r17432 r18254  
    2525$menu[2] = array( __('Dashboard'), 'read', 'index.php', '', 'menu-top menu-top-first menu-icon-dashboard', 'menu-dashboard', 'div' );
    2626
    27 $submenu[ 'index.php' ][0] = array( __('Dashboard'), 'read', 'index.php' );
     27$submenu[ 'index.php' ][0] = array( __('Home'), 'read', 'index.php' );
    2828
    2929if ( is_multisite() ) {
     
    3333if ( ! is_multisite() || is_super_admin() ) {
    3434    $plugin_update_count = $theme_update_count = $wordpress_update_count = 0;
    35     $update_plugins = get_site_transient( 'update_plugins' );
    36     if ( !empty($update_plugins->response) )
    37         $plugin_update_count = count( $update_plugins->response );
    38     $update_themes = get_site_transient( 'update_themes' );
    39     if ( !empty($update_themes->response) )
    40         $theme_update_count = count( $update_themes->response );
    41     $update_wordpress = get_core_updates( array('dismissed' => false) );
    42     if ( !empty($update_wordpress) && !in_array( $update_wordpress[0]->response, array('development', 'latest') ) )
    43         $wordpress_update_count = 1;
     35
     36    if ( current_user_can( 'update_plugins' ) ) {
     37        $update_plugins = get_site_transient( 'update_plugins' );
     38        if ( ! empty( $update_plugins->response ) )
     39            $plugin_update_count = count( $update_plugins->response );
     40    }
     41
     42    if ( current_user_can( 'update_themes' ) ) {
     43        $update_themes = get_site_transient( 'update_themes' );
     44        if ( !empty($update_themes->response) )
     45            $theme_update_count = count( $update_themes->response );
     46    }
     47
     48    if ( current_user_can( 'update_core' ) ) {
     49        $update_wordpress = get_core_updates( array('dismissed' => false) );
     50        if ( !empty($update_wordpress) && !in_array( $update_wordpress[0]->response, array('development', 'latest') ) && current_user_can('update_core') )
     51            $wordpress_update_count = 1;
     52    }
    4453
    4554    $total_update_count = $plugin_update_count + $theme_update_count + $wordpress_update_count;
     
    5059        $update_title[] = sprintf(_n('%d Plugin Update', '%d Plugin Updates', $plugin_update_count), $plugin_update_count);
    5160    if ( $theme_update_count )
    52         $update_title[] = sprintf(_n('%d Theme Update', '%d Themes Updates', $theme_update_count), $theme_update_count);
     61        $update_title[] = sprintf(_n('%d Theme Update', '%d Theme Updates', $theme_update_count), $theme_update_count);
    5362
    5463    $update_title = !empty($update_title) ? esc_attr(implode(', ', $update_title)) : '';
     
    5968}
    6069
    61 unset($plugin_update_count, $theme_update_count, $wordpress_update_count, $update_themes, $update_plugins, $update_wordpress);
     70unset($theme_update_count, $wordpress_update_count, $update_themes, $update_plugins, $update_wordpress);
    6271
    6372$menu[4] = array( '', 'read', 'separator1', '', 'wp-menu-separator' );
    6473
    6574$menu[5] = array( __('Posts'), 'edit_posts', 'edit.php', '', 'open-if-no-js menu-top menu-icon-post', 'menu-posts', 'div' );
    66     $submenu['edit.php'][5]  = array( __('Posts'), 'edit_posts', 'edit.php' );
     75    $submenu['edit.php'][5]  = array( __('All Posts'), 'edit_posts', 'edit.php' );
    6776    /* translators: add new post */
    6877    $submenu['edit.php'][10]  = array( _x('Add New', 'post'), 'edit_posts', 'post-new.php' );
     
    8392
    8493$menu[15] = array( __('Links'), 'manage_links', 'link-manager.php', '', 'menu-top menu-icon-links', 'menu-links', 'div' );
    85     $submenu['link-manager.php'][5] = array( __('Links'), 'manage_links', 'link-manager.php' );
     94    $submenu['link-manager.php'][5] = array( __('All Links'), 'manage_links', 'link-manager.php' );
    8695    /* translators: add new links */
    8796    $submenu['link-manager.php'][10] = array( _x('Add New', 'link'), 'manage_links', 'link-add.php' );
     
    8998
    9099$menu[20] = array( __('Pages'), 'edit_pages', 'edit.php?post_type=page', '', 'menu-top menu-icon-page', 'menu-pages', 'div' );
    91     $submenu['edit.php?post_type=page'][5] = array( __('Pages'), 'edit_pages', 'edit.php?post_type=page' );
     100    $submenu['edit.php?post_type=page'][5] = array( __('All Pages'), 'edit_pages', 'edit.php?post_type=page' );
    92101    /* translators: add new page */
    93102    $submenu['edit.php?post_type=page'][10] = array( _x('Add New', 'page'), 'edit_pages', 'post-new.php?post_type=page' );
     
    103112$awaiting_mod = wp_count_comments();
    104113$awaiting_mod = $awaiting_mod->moderated;
    105 $menu[25] = array( sprintf( __('Comments %s'), "<span id='awaiting-mod' class='count-$awaiting_mod'><span class='pending-count'>" . number_format_i18n($awaiting_mod) . "</span></span>" ), 'edit_posts', 'edit-comments.php', '', 'menu-top menu-icon-comments', 'menu-comments', 'div' );
     114$menu[25] = array( sprintf( __('Comments %s'), "<span class='awaiting-mod count-$awaiting_mod'><span class='pending-count'>" . number_format_i18n($awaiting_mod) . "</span></span>" ), 'edit_posts', 'edit-comments.php', '', 'menu-top menu-icon-comments', 'menu-comments', 'div' );
    106115unset($awaiting_mod);
     116
     117$submenu[ 'edit-comments.php' ][0] = array( __('All Comments'), 'edit_posts', 'edit-comments.php' );
    107118
    108119$_wp_last_object_menu = 25; // The index of the last top-level menu in the object menu group
     
    129140
    130141    $menu[$ptype_menu_position] = array( esc_attr( $ptype_obj->labels->menu_name ), $ptype_obj->cap->edit_posts, "edit.php?post_type=$ptype", '', 'menu-top menu-icon-' . $ptype_class, 'menu-posts-' . $ptype_for_id, $menu_icon );
    131     $submenu["edit.php?post_type=$ptype"][5]  = array( $ptype_obj->labels->menu_name, $ptype_obj->cap->edit_posts,  "edit.php?post_type=$ptype");
     142    $submenu["edit.php?post_type=$ptype"][5]  = array( $ptype_obj->labels->all_items, $ptype_obj->cap->edit_posts,  "edit.php?post_type=$ptype");
    132143    $submenu["edit.php?post_type=$ptype"][10]  = array( $ptype_obj->labels->add_new, $ptype_obj->cap->edit_posts, "post-new.php?post_type=$ptype" );
    133144
     
    164175}
    165176
    166 $update_plugins = get_site_transient( 'update_plugins' );
    167 $update_count = 0;
    168 if ( !empty($update_plugins->response) )
    169     $update_count = count( $update_plugins->response );
    170 
    171 $menu_perms = get_site_option('menu_items', array());
     177$menu_perms = get_site_option( 'menu_items', array() );
    172178if ( ! is_multisite() || is_super_admin() || ! empty( $menu_perms['plugins'] ) ) {
    173     $count = "<span class='update-plugins count-$update_count'><span class='plugin-count'>" . number_format_i18n($update_count) . "</span></span>";
    174     if ( is_multisite() )
    175         $count = '';
     179    $count = '';
     180    if ( ! is_multisite() && current_user_can( 'update_plugins' ) )
     181        $count = "<span class='update-plugins count-$plugin_update_count'><span class='plugin-count'>" . number_format_i18n($plugin_update_count) . "</span></span>";
     182
    176183    $menu[65] = array( sprintf( __('Plugins %s'), $count ), 'activate_plugins', 'plugins.php', '', 'menu-top menu-icon-plugins', 'menu-plugins', 'div' );
     184
     185    $submenu['plugins.php'][5]  = array( __('Installed Plugins'), 'activate_plugins', 'plugins.php' );
     186
    177187        if ( ! is_multisite() ) {
    178188            /* translators: add new plugin */
    179             $submenu['plugins.php'][5]  = array( __('Plugins'), 'activate_plugins', 'plugins.php' );
    180189            $submenu['plugins.php'][10] = array( _x('Add New', 'plugin'), 'install_plugins', 'plugin-install.php' );
    181190            $submenu['plugins.php'][15] = array( _x('Editor', 'plugin editor'), 'edit_plugins', 'plugin-editor.php' );
    182191        }
    183192}
    184 unset($menu_perms, $update_plugins, $update_count);
     193unset($menu_perms, $update_plugins, $plugin_update_count);
    185194
    186195if ( current_user_can('list_users') )
     
    191200if ( current_user_can('list_users') ) {
    192201    $_wp_real_parent_file['profile.php'] = 'users.php'; // Back-compat for plugins adding submenus to profile.php.
    193     $submenu['users.php'][5] = array(__('Users'), 'list_users', 'users.php');
     202    $submenu['users.php'][5] = array(__('All Users'), 'list_users', 'users.php');
    194203    if ( current_user_can('create_users') )
    195204        $submenu['users.php'][10] = array(_x('Add New', 'user'), 'create_users', 'user-new.php');
     
    208217
    209218$menu[75] = array( __('Tools'), 'edit_posts', 'tools.php', '', 'menu-top menu-icon-tools', 'menu-tools', 'div' );
    210     $submenu['tools.php'][5] = array( __('Tools'), 'edit_posts', 'tools.php' );
     219    $submenu['tools.php'][5] = array( __('Available Tools'), 'edit_posts', 'tools.php' );
    211220    $submenu['tools.php'][10] = array( __('Import'), 'import', 'import.php' );
    212     $submenu['tools.php'][15] = array( __('Export'), 'import', 'export.php' );
     221    $submenu['tools.php'][15] = array( __('Export'), 'export', 'export.php' );
    213222    if ( is_multisite() && !is_main_site() )
    214223        $submenu['tools.php'][25] = array( __('Delete Site'), 'manage_options', 'ms-delete-site.php' );
    215224    if ( ! is_multisite() && defined('WP_ALLOW_MULTISITE') && WP_ALLOW_MULTISITE )
    216         $submenu['tools.php'][50] = array(__('Network'), 'manage_options', 'network.php');
     225        $submenu['tools.php'][50] = array(__('Network Setup'), 'manage_options', 'network.php');
    217226
    218227$menu[80] = array( __('Settings'), 'manage_options', 'options-general.php', '', 'menu-top menu-icon-settings', 'menu-settings', 'div' );
     
    227236$_wp_last_utility_menu = 80; // The index of the last top-level menu in the utility menu group
    228237
    229 $menu[99] = array( '', 'read', 'separator-last', '', 'wp-menu-separator-last' );
     238$menu[99] = array( '', 'read', 'separator-last', '', 'wp-menu-separator' );
    230239
    231240// Back-compat for old top-levels
Note: See TracChangeset for help on using the changeset viewer.