Ticket #17378: menus.diff
File menus.diff, 6.8 KB (added by , 13 years ago) |
---|
-
wp-admin/menu.php
24 24 25 25 $menu[2] = array( __('Dashboard'), 'read', 'index.php', '', 'menu-top menu-top-first menu-icon-dashboard', 'menu-dashboard', 'div' ); 26 26 27 $submenu[ 'index.php' ][0] = array( __(' Dashboard'), 'read', 'index.php' );27 $submenu[ 'index.php' ][0] = array( __('Home'), 'read', 'index.php' ); 28 28 29 29 if ( is_multisite() ) { 30 30 $submenu[ 'index.php' ][5] = array( __('My Sites'), 'read', 'my-sites.php' ); … … unset($theme_update_count, $wordpress_update_count, $update_themes, $update_plug 72 72 $menu[4] = array( '', 'read', 'separator1', '', 'wp-menu-separator' ); 73 73 74 74 $menu[5] = array( __('Posts'), 'edit_posts', 'edit.php', '', 'open-if-no-js menu-top menu-icon-post', 'menu-posts', 'div' ); 75 $submenu['edit.php'][5] = array( __(' Posts'), 'edit_posts', 'edit.php' );75 $submenu['edit.php'][5] = array( __('All Posts'), 'edit_posts', 'edit.php' ); 76 76 /* translators: add new post */ 77 77 $submenu['edit.php'][10] = array( _x('Add New', 'post'), 'edit_posts', 'post-new.php' ); 78 78 … … $menu[10] = array( __('Media'), 'upload_files', 'upload.php', '', 'menu-top menu 91 91 $submenu['upload.php'][10] = array( _x('Add New', 'file'), 'upload_files', 'media-new.php'); 92 92 93 93 $menu[15] = array( __('Links'), 'manage_links', 'link-manager.php', '', 'menu-top menu-icon-links', 'menu-links', 'div' ); 94 $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' ); 95 95 /* translators: add new links */ 96 96 $submenu['link-manager.php'][10] = array( _x('Add New', 'link'), 'manage_links', 'link-add.php' ); 97 97 $submenu['link-manager.php'][15] = array( __('Link Categories'), 'manage_categories', 'edit-tags.php?taxonomy=link_category' ); 98 98 99 99 $menu[20] = array( __('Pages'), 'edit_pages', 'edit.php?post_type=page', '', 'menu-top menu-icon-page', 'menu-pages', 'div' ); 100 $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' ); 101 101 /* translators: add new page */ 102 102 $submenu['edit.php?post_type=page'][10] = array( _x('Add New', 'page'), 'edit_pages', 'post-new.php?post_type=page' ); 103 103 $i = 15; … … $awaiting_mod = $awaiting_mod->moderated; 114 114 $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' ); 115 115 unset($awaiting_mod); 116 116 117 $submenu[ 'edit-comments.php' ][0] = array( __('All Comments'), 'edit_posts', 'edit-comments.php' ); 118 117 119 $_wp_last_object_menu = 25; // The index of the last top-level menu in the object menu group 118 120 119 121 foreach ( (array) get_post_types( array('show_ui' => true, '_builtin' => false, 'show_in_menu' => true ) ) as $ptype ) { … … foreach ( (array) get_post_types( array('show_ui' => true, '_builtin' => false, 137 139 $ptype_menu_position++; 138 140 139 141 $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 ); 140 $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"); 141 143 $submenu["edit.php?post_type=$ptype"][10] = array( $ptype_obj->labels->add_new, $ptype_obj->cap->edit_posts, "post-new.php?post_type=$ptype" ); 142 144 143 145 $i = 15; … … if ( ! is_multisite() || is_super_admin() || ! empty( $menu_perms['plugins'] ) ) 180 182 $menu[65] = array( sprintf( __('Plugins %s'), $count ), 'activate_plugins', 'plugins.php', '', 'menu-top menu-icon-plugins', 'menu-plugins', 'div' ); 181 183 if ( ! is_multisite() ) { 182 184 /* translators: add new plugin */ 183 $submenu['plugins.php'][5] = array( __(' Plugins'), 'activate_plugins', 'plugins.php' );185 $submenu['plugins.php'][5] = array( __('Installed Plugins'), 'activate_plugins', 'plugins.php' ); 184 186 $submenu['plugins.php'][10] = array( _x('Add New', 'plugin'), 'install_plugins', 'plugin-install.php' ); 185 187 $submenu['plugins.php'][15] = array( _x('Editor', 'plugin editor'), 'edit_plugins', 'plugin-editor.php' ); 186 188 } … … else 194 196 195 197 if ( current_user_can('list_users') ) { 196 198 $_wp_real_parent_file['profile.php'] = 'users.php'; // Back-compat for plugins adding submenus to profile.php. 197 $submenu['users.php'][5] = array(__(' Users'), 'list_users', 'users.php');199 $submenu['users.php'][5] = array(__('All Users'), 'list_users', 'users.php'); 198 200 if ( current_user_can('create_users') ) 199 201 $submenu['users.php'][10] = array(_x('Add New', 'user'), 'create_users', 'user-new.php'); 200 202 else -
wp-includes/post.php
function get_post_type_labels( $post_type_object ) { 1166 1166 'not_found' => array( __('No posts found.'), __('No pages found.') ), 1167 1167 'not_found_in_trash' => array( __('No posts found in Trash.'), __('No pages found in Trash.') ), 1168 1168 'parent_item_colon' => array( null, __('Parent Page:') ), 1169 'all_items' => array( __( 'All Posts' ), __( 'All Pages' ) ) 1169 1170 ); 1170 1171 $nohier_vs_hier_defaults['menu_name'] = $nohier_vs_hier_defaults['name']; 1171 1172 return _get_custom_object_labels( $post_type_object, $nohier_vs_hier_defaults ); … … function _get_custom_object_labels( $object, $nohier_vs_hier_defaults ) { 1188 1189 if ( !isset( $object->labels['menu_name'] ) && isset( $object->labels['name'] ) ) 1189 1190 $object->labels['menu_name'] = $object->labels['name']; 1190 1191 1192 if ( !isset( $object->labels['all_items'] ) && isset( $object->labels['menu_name'] ) ) 1193 $object->labels['all_items'] = $object->labels['menu_name']; 1194 1191 1195 foreach ( $nohier_vs_hier_defaults as $key => $value ) 1192 1196 $defaults[$key] = $object->hierarchical ? $value[1] : $value[0]; 1193 1197 … … function _add_post_type_submenus() { 1207 1211 // Submenus only. 1208 1212 if ( ! $ptype_obj->show_in_menu || $ptype_obj->show_in_menu === true ) 1209 1213 continue; 1210 add_submenu_page( $ptype_obj->show_in_menu, $ptype_obj->labels->name, $ptype_obj->labels-> menu_name, $ptype_obj->cap->edit_posts, "edit.php?post_type=$ptype" );1214 add_submenu_page( $ptype_obj->show_in_menu, $ptype_obj->labels->name, $ptype_obj->labels->all_items, $ptype_obj->cap->edit_posts, "edit.php?post_type=$ptype" ); 1211 1215 } 1212 1216 } 1213 1217 add_action( 'admin_menu', '_add_post_type_submenus' );