author | ymh <ymh.work@gmail.com> |
Wed, 21 Sep 2022 18:19:35 +0200 | |
changeset 18 | be944660c56a |
parent 16 | a86126ab1dd4 |
child 19 | 3d72ae0968f4 |
permissions | -rw-r--r-- |
0 | 1 |
<?php |
2 |
/** |
|
3 |
* Build Administration Menu. |
|
4 |
* |
|
5 |
* @package WordPress |
|
6 |
* @subpackage Administration |
|
7 |
*/ |
|
8 |
||
9 |
/** |
|
10 |
* Constructs the admin menu. |
|
11 |
* |
|
16 | 12 |
* The elements in the array are: |
13 |
* 0: Menu item name. |
|
0 | 14 |
* 1: Minimum level or capability required. |
16 | 15 |
* 2: The URL of the item's file. |
16 |
* 3: Page title. |
|
17 |
* 4: Classes. |
|
18 |
* 5: ID. |
|
19 |
* 6: Icon for top level menu. |
|
0 | 20 |
* |
21 |
* @global array $menu |
|
22 |
*/ |
|
23 |
||
9 | 24 |
$menu[2] = array( __( 'Dashboard' ), 'read', 'index.php', '', 'menu-top menu-top-first menu-icon-dashboard', 'menu-dashboard', 'dashicons-dashboard' ); |
0 | 25 |
|
9 | 26 |
$submenu['index.php'][0] = array( __( 'Home' ), 'read', 'index.php' ); |
0 | 27 |
|
28 |
if ( is_multisite() ) { |
|
9 | 29 |
$submenu['index.php'][5] = array( __( 'My Sites' ), 'read', 'my-sites.php' ); |
0 | 30 |
} |
31 |
||
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
32 |
if ( ! is_multisite() || current_user_can( 'update_core' ) ) { |
0 | 33 |
$update_data = wp_get_update_data(); |
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
34 |
} |
0 | 35 |
|
36 |
if ( ! is_multisite() ) { |
|
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
37 |
if ( current_user_can( 'update_core' ) ) { |
0 | 38 |
$cap = 'update_core'; |
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
39 |
} elseif ( current_user_can( 'update_plugins' ) ) { |
0 | 40 |
$cap = 'update_plugins'; |
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
41 |
} elseif ( current_user_can( 'update_themes' ) ) { |
0 | 42 |
$cap = 'update_themes'; |
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
43 |
} else { |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
44 |
$cap = 'update_languages'; |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
45 |
} |
16 | 46 |
$submenu['index.php'][10] = array( |
47 |
sprintf( |
|
48 |
/* translators: %s: Number of pending updates. */ |
|
49 |
__( 'Updates %s' ), |
|
50 |
sprintf( |
|
51 |
'<span class="update-plugins count-%s"><span class="update-count">%s</span></span>', |
|
52 |
$update_data['counts']['total'], |
|
53 |
number_format_i18n( $update_data['counts']['total'] ) |
|
54 |
) |
|
55 |
), |
|
56 |
$cap, |
|
57 |
'update-core.php', |
|
58 |
); |
|
0 | 59 |
unset( $cap ); |
60 |
} |
|
61 |
||
62 |
$menu[4] = array( '', 'read', 'separator1', '', 'wp-menu-separator' ); |
|
63 |
||
16 | 64 |
// $menu[5] = Posts. |
0 | 65 |
|
9 | 66 |
$menu[10] = array( __( 'Media' ), 'upload_files', 'upload.php', '', 'menu-top menu-icon-media', 'menu-media', 'dashicons-admin-media' ); |
67 |
$submenu['upload.php'][5] = array( __( 'Library' ), 'upload_files', 'upload.php' ); |
|
16 | 68 |
/* translators: Add new file. */ |
9 | 69 |
$submenu['upload.php'][10] = array( _x( 'Add New', 'file' ), 'upload_files', 'media-new.php' ); |
70 |
$i = 15; |
|
71 |
foreach ( get_taxonomies_for_attachments( 'objects' ) as $tax ) { |
|
72 |
if ( ! $tax->show_ui || ! $tax->show_in_menu ) { |
|
73 |
continue; |
|
74 |
} |
|
0 | 75 |
|
9 | 76 |
$submenu['upload.php'][ $i++ ] = array( esc_attr( $tax->labels->menu_name ), $tax->cap->manage_terms, 'edit-tags.php?taxonomy=' . $tax->name . '&post_type=attachment' ); |
77 |
} |
|
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
78 |
unset( $tax, $i ); |
0 | 79 |
|
9 | 80 |
$menu[15] = array( __( 'Links' ), 'manage_links', 'link-manager.php', '', 'menu-top menu-icon-links', 'menu-links', 'dashicons-admin-links' ); |
81 |
$submenu['link-manager.php'][5] = array( _x( 'All Links', 'admin menu' ), 'manage_links', 'link-manager.php' ); |
|
16 | 82 |
/* translators: Add new links. */ |
9 | 83 |
$submenu['link-manager.php'][10] = array( _x( 'Add New', 'link' ), 'manage_links', 'link-add.php' ); |
84 |
$submenu['link-manager.php'][15] = array( __( 'Link Categories' ), 'manage_categories', 'edit-tags.php?taxonomy=link_category' ); |
|
0 | 85 |
|
16 | 86 |
// $menu[20] = Pages. |
0 | 87 |
|
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
88 |
// Avoid the comment count query for users who cannot edit_posts. |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
89 |
if ( current_user_can( 'edit_posts' ) ) { |
9 | 90 |
$awaiting_mod = wp_count_comments(); |
91 |
$awaiting_mod = $awaiting_mod->moderated; |
|
92 |
$awaiting_mod_i18n = number_format_i18n( $awaiting_mod ); |
|
16 | 93 |
/* translators: %s: Number of comments. */ |
9 | 94 |
$awaiting_mod_text = sprintf( _n( '%s Comment in moderation', '%s Comments in moderation', $awaiting_mod ), $awaiting_mod_i18n ); |
95 |
||
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
96 |
$menu[25] = array( |
16 | 97 |
/* translators: %s: Number of comments. */ |
9 | 98 |
sprintf( __( 'Comments %s' ), '<span class="awaiting-mod count-' . absint( $awaiting_mod ) . '"><span class="pending-count" aria-hidden="true">' . $awaiting_mod_i18n . '</span><span class="comments-in-moderation-text screen-reader-text">' . $awaiting_mod_text . '</span></span>' ), |
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
99 |
'edit_posts', |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
100 |
'edit-comments.php', |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
101 |
'', |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
102 |
'menu-top menu-icon-comments', |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
103 |
'menu-comments', |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
104 |
'dashicons-admin-comments', |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
105 |
); |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
106 |
unset( $awaiting_mod ); |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
107 |
} |
0 | 108 |
|
9 | 109 |
$submenu['edit-comments.php'][0] = array( __( 'All Comments' ), 'edit_posts', 'edit-comments.php' ); |
0 | 110 |
|
16 | 111 |
$_wp_last_object_menu = 25; // The index of the last top-level menu in the object menu group. |
0 | 112 |
|
9 | 113 |
$types = (array) get_post_types( |
114 |
array( |
|
115 |
'show_ui' => true, |
|
116 |
'_builtin' => false, |
|
117 |
'show_in_menu' => true, |
|
118 |
) |
|
119 |
); |
|
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
120 |
$builtin = array( 'post', 'page' ); |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
121 |
foreach ( array_merge( $builtin, $types ) as $ptype ) { |
0 | 122 |
$ptype_obj = get_post_type_object( $ptype ); |
123 |
// Check if it should be a submenu. |
|
16 | 124 |
if ( true !== $ptype_obj->show_in_menu ) { |
0 | 125 |
continue; |
9 | 126 |
} |
0 | 127 |
$ptype_menu_position = is_int( $ptype_obj->menu_position ) ? $ptype_obj->menu_position : ++$_wp_last_object_menu; // If we're to use $_wp_last_object_menu, increment it first. |
9 | 128 |
$ptype_for_id = sanitize_html_class( $ptype ); |
5 | 129 |
|
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
130 |
$menu_icon = 'dashicons-admin-post'; |
0 | 131 |
if ( is_string( $ptype_obj->menu_icon ) ) { |
5 | 132 |
// Special handling for data:image/svg+xml and Dashicons. |
133 |
if ( 0 === strpos( $ptype_obj->menu_icon, 'data:image/svg+xml;base64,' ) || 0 === strpos( $ptype_obj->menu_icon, 'dashicons-' ) ) { |
|
134 |
$menu_icon = $ptype_obj->menu_icon; |
|
135 |
} else { |
|
136 |
$menu_icon = esc_url( $ptype_obj->menu_icon ); |
|
137 |
} |
|
16 | 138 |
} elseif ( in_array( $ptype, $builtin, true ) ) { |
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
139 |
$menu_icon = 'dashicons-admin-' . $ptype; |
0 | 140 |
} |
141 |
||
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
142 |
$menu_class = 'menu-top menu-icon-' . $ptype_for_id; |
16 | 143 |
// 'post' special case. |
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
144 |
if ( 'post' === $ptype ) { |
9 | 145 |
$menu_class .= ' open-if-no-js'; |
146 |
$ptype_file = 'edit.php'; |
|
147 |
$post_new_file = 'post-new.php'; |
|
148 |
$edit_tags_file = 'edit-tags.php?taxonomy=%s'; |
|
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
149 |
} else { |
9 | 150 |
$ptype_file = "edit.php?post_type=$ptype"; |
151 |
$post_new_file = "post-new.php?post_type=$ptype"; |
|
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
152 |
$edit_tags_file = "edit-tags.php?taxonomy=%s&post_type=$ptype"; |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
153 |
} |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
154 |
|
16 | 155 |
if ( in_array( $ptype, $builtin, true ) ) { |
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
156 |
$ptype_menu_id = 'menu-' . $ptype_for_id . 's'; |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
157 |
} else { |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
158 |
$ptype_menu_id = 'menu-posts-' . $ptype_for_id; |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
159 |
} |
5 | 160 |
/* |
161 |
* If $ptype_menu_position is already populated or will be populated |
|
162 |
* by a hard-coded value below, increment the position. |
|
163 |
*/ |
|
9 | 164 |
$core_menu_positions = array( 59, 60, 65, 70, 75, 80, 85, 99 ); |
16 | 165 |
while ( isset( $menu[ $ptype_menu_position ] ) || in_array( $ptype_menu_position, $core_menu_positions, true ) ) { |
0 | 166 |
$ptype_menu_position++; |
9 | 167 |
} |
0 | 168 |
|
9 | 169 |
$menu[ $ptype_menu_position ] = array( esc_attr( $ptype_obj->labels->menu_name ), $ptype_obj->cap->edit_posts, $ptype_file, '', $menu_class, $ptype_menu_id, $menu_icon ); |
170 |
$submenu[ $ptype_file ][5] = array( $ptype_obj->labels->all_items, $ptype_obj->cap->edit_posts, $ptype_file ); |
|
171 |
$submenu[ $ptype_file ][10] = array( $ptype_obj->labels->add_new, $ptype_obj->cap->create_posts, $post_new_file ); |
|
0 | 172 |
|
173 |
$i = 15; |
|
174 |
foreach ( get_taxonomies( array(), 'objects' ) as $tax ) { |
|
9 | 175 |
if ( ! $tax->show_ui || ! $tax->show_in_menu || ! in_array( $ptype, (array) $tax->object_type, true ) ) { |
0 | 176 |
continue; |
9 | 177 |
} |
0 | 178 |
|
9 | 179 |
$submenu[ $ptype_file ][ $i++ ] = array( esc_attr( $tax->labels->menu_name ), $tax->cap->manage_terms, sprintf( $edit_tags_file, $tax->name ) ); |
0 | 180 |
} |
181 |
} |
|
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
182 |
unset( $ptype, $ptype_obj, $ptype_for_id, $ptype_menu_position, $menu_icon, $i, $tax, $post_new_file ); |
0 | 183 |
|
184 |
$menu[59] = array( '', 'read', 'separator2', '', 'wp-menu-separator' ); |
|
185 |
||
9 | 186 |
$appearance_cap = current_user_can( 'switch_themes' ) ? 'switch_themes' : 'edit_theme_options'; |
0 | 187 |
|
18 | 188 |
$menu[60] = array( __( 'Appearance' ), $appearance_cap, 'themes.php', '', 'menu-top menu-icon-appearance', 'menu-appearance', 'dashicons-admin-appearance' ); |
189 |
||
190 |
$count = ''; |
|
191 |
if ( ! is_multisite() && current_user_can( 'update_themes' ) ) { |
|
192 |
if ( ! isset( $update_data ) ) { |
|
193 |
$update_data = wp_get_update_data(); |
|
194 |
} |
|
195 |
$count = sprintf( |
|
196 |
'<span class="update-plugins count-%s"><span class="theme-count">%s</span></span>', |
|
197 |
$update_data['counts']['themes'], |
|
198 |
number_format_i18n( $update_data['counts']['themes'] ) |
|
199 |
); |
|
200 |
} |
|
201 |
||
202 |
/* translators: %s: Number of available theme updates. */ |
|
203 |
$submenu['themes.php'][5] = array( sprintf( __( 'Themes %s' ), $count ), $appearance_cap, 'themes.php' ); |
|
5 | 204 |
|
9 | 205 |
$customize_url = add_query_arg( 'return', urlencode( remove_query_arg( wp_removable_query_args(), wp_unslash( $_SERVER['REQUEST_URI'] ) ) ), 'customize.php' ); |
5 | 206 |
$submenu['themes.php'][6] = array( __( 'Customize' ), 'customize', esc_url( $customize_url ), '', 'hide-if-no-customize' ); |
207 |
||
9 | 208 |
if ( current_theme_supports( 'menus' ) || current_theme_supports( 'widgets' ) ) { |
209 |
$submenu['themes.php'][10] = array( __( 'Menus' ), 'edit_theme_options', 'nav-menus.php' ); |
|
210 |
} |
|
5 | 211 |
|
9 | 212 |
if ( current_theme_supports( 'custom-header' ) && current_user_can( 'customize' ) ) { |
213 |
$customize_header_url = add_query_arg( array( 'autofocus' => array( 'control' => 'header_image' ) ), $customize_url ); |
|
214 |
$submenu['themes.php'][15] = array( __( 'Header' ), $appearance_cap, esc_url( $customize_header_url ), '', 'hide-if-no-customize' ); |
|
215 |
} |
|
5 | 216 |
|
9 | 217 |
if ( current_theme_supports( 'custom-background' ) && current_user_can( 'customize' ) ) { |
218 |
$customize_background_url = add_query_arg( array( 'autofocus' => array( 'control' => 'background_image' ) ), $customize_url ); |
|
219 |
$submenu['themes.php'][20] = array( __( 'Background' ), $appearance_cap, esc_url( $customize_background_url ), '', 'hide-if-no-customize' ); |
|
220 |
} |
|
5 | 221 |
|
222 |
unset( $customize_url ); |
|
0 | 223 |
|
224 |
unset( $appearance_cap ); |
|
225 |
||
18 | 226 |
// Add 'Theme Editor' to the bottom of the Appearance menu. |
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
227 |
if ( ! is_multisite() ) { |
9 | 228 |
add_action( 'admin_menu', '_add_themes_utility_last', 101 ); |
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
229 |
} |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
230 |
/** |
18 | 231 |
* Adds the 'Theme Editor' link to the bottom of the Appearance menu. |
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
232 |
* |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
233 |
* @access private |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
234 |
* @since 3.0.0 |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
235 |
*/ |
0 | 236 |
function _add_themes_utility_last() { |
16 | 237 |
// Must use API on the admin_menu hook, direct modification is only possible on/before the _admin_menu hook. |
9 | 238 |
add_submenu_page( 'themes.php', __( 'Theme Editor' ), __( 'Theme Editor' ), 'edit_themes', 'theme-editor.php' ); |
0 | 239 |
} |
240 |
||
241 |
$count = ''; |
|
242 |
if ( ! is_multisite() && current_user_can( 'update_plugins' ) ) { |
|
9 | 243 |
if ( ! isset( $update_data ) ) { |
0 | 244 |
$update_data = wp_get_update_data(); |
9 | 245 |
} |
16 | 246 |
$count = sprintf( |
247 |
'<span class="update-plugins count-%s"><span class="plugin-count">%s</span></span>', |
|
248 |
$update_data['counts']['plugins'], |
|
249 |
number_format_i18n( $update_data['counts']['plugins'] ) |
|
250 |
); |
|
0 | 251 |
} |
252 |
||
18 | 253 |
/* translators: %s: Number of available plugin updates. */ |
9 | 254 |
$menu[65] = array( sprintf( __( 'Plugins %s' ), $count ), 'activate_plugins', 'plugins.php', '', 'menu-top menu-icon-plugins', 'menu-plugins', 'dashicons-admin-plugins' ); |
0 | 255 |
|
9 | 256 |
$submenu['plugins.php'][5] = array( __( 'Installed Plugins' ), 'activate_plugins', 'plugins.php' ); |
0 | 257 |
|
9 | 258 |
if ( ! is_multisite() ) { |
16 | 259 |
/* translators: Add new plugin. */ |
9 | 260 |
$submenu['plugins.php'][10] = array( _x( 'Add New', 'plugin' ), 'install_plugins', 'plugin-install.php' ); |
261 |
$submenu['plugins.php'][15] = array( __( 'Plugin Editor' ), 'edit_plugins', 'plugin-editor.php' ); |
|
262 |
} |
|
0 | 263 |
|
264 |
unset( $update_data ); |
|
265 |
||
9 | 266 |
if ( current_user_can( 'list_users' ) ) { |
267 |
$menu[70] = array( __( 'Users' ), 'list_users', 'users.php', '', 'menu-top menu-icon-users', 'menu-users', 'dashicons-admin-users' ); |
|
268 |
} else { |
|
269 |
$menu[70] = array( __( 'Profile' ), 'read', 'profile.php', '', 'menu-top menu-icon-users', 'menu-users', 'dashicons-admin-users' ); |
|
270 |
} |
|
0 | 271 |
|
9 | 272 |
if ( current_user_can( 'list_users' ) ) { |
0 | 273 |
$_wp_real_parent_file['profile.php'] = 'users.php'; // Back-compat for plugins adding submenus to profile.php. |
9 | 274 |
$submenu['users.php'][5] = array( __( 'All Users' ), 'list_users', 'users.php' ); |
5 | 275 |
if ( current_user_can( 'create_users' ) ) { |
9 | 276 |
$submenu['users.php'][10] = array( _x( 'Add New', 'user' ), 'create_users', 'user-new.php' ); |
5 | 277 |
} elseif ( is_multisite() ) { |
9 | 278 |
$submenu['users.php'][10] = array( _x( 'Add New', 'user' ), 'promote_users', 'user-new.php' ); |
5 | 279 |
} |
0 | 280 |
|
16 | 281 |
$submenu['users.php'][15] = array( __( 'Profile' ), 'read', 'profile.php' ); |
0 | 282 |
} else { |
283 |
$_wp_real_parent_file['users.php'] = 'profile.php'; |
|
16 | 284 |
$submenu['profile.php'][5] = array( __( 'Profile' ), 'read', 'profile.php' ); |
5 | 285 |
if ( current_user_can( 'create_users' ) ) { |
9 | 286 |
$submenu['profile.php'][10] = array( __( 'Add New User' ), 'create_users', 'user-new.php' ); |
5 | 287 |
} elseif ( is_multisite() ) { |
9 | 288 |
$submenu['profile.php'][10] = array( __( 'Add New User' ), 'promote_users', 'user-new.php' ); |
5 | 289 |
} |
0 | 290 |
} |
291 |
||
9 | 292 |
$menu[75] = array( __( 'Tools' ), 'edit_posts', 'tools.php', '', 'menu-top menu-icon-tools', 'menu-tools', 'dashicons-admin-tools' ); |
293 |
$submenu['tools.php'][5] = array( __( 'Available Tools' ), 'edit_posts', 'tools.php' ); |
|
294 |
$submenu['tools.php'][10] = array( __( 'Import' ), 'import', 'import.php' ); |
|
295 |
$submenu['tools.php'][15] = array( __( 'Export' ), 'export', 'export.php' ); |
|
296 |
$submenu['tools.php'][20] = array( __( 'Site Health' ), 'view_site_health_checks', 'site-health.php' ); |
|
16 | 297 |
$submenu['tools.php'][25] = array( __( 'Export Personal Data' ), 'export_others_personal_data', 'export-personal-data.php' ); |
298 |
$submenu['tools.php'][30] = array( __( 'Erase Personal Data' ), 'erase_others_personal_data', 'erase-personal-data.php' ); |
|
9 | 299 |
if ( is_multisite() && ! is_main_site() ) { |
16 | 300 |
$submenu['tools.php'][35] = array( __( 'Delete Site' ), 'delete_site', 'ms-delete-site.php' ); |
9 | 301 |
} |
302 |
if ( ! is_multisite() && defined( 'WP_ALLOW_MULTISITE' ) && WP_ALLOW_MULTISITE ) { |
|
303 |
$submenu['tools.php'][50] = array( __( 'Network Setup' ), 'setup_network', 'network.php' ); |
|
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
304 |
} |
0 | 305 |
|
9 | 306 |
$menu[80] = array( __( 'Settings' ), 'manage_options', 'options-general.php', '', 'menu-top menu-icon-settings', 'menu-settings', 'dashicons-admin-settings' ); |
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
307 |
$submenu['options-general.php'][10] = array( _x( 'General', 'settings screen' ), 'manage_options', 'options-general.php' ); |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
308 |
$submenu['options-general.php'][15] = array( __( 'Writing' ), 'manage_options', 'options-writing.php' ); |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
309 |
$submenu['options-general.php'][20] = array( __( 'Reading' ), 'manage_options', 'options-reading.php' ); |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
310 |
$submenu['options-general.php'][25] = array( __( 'Discussion' ), 'manage_options', 'options-discussion.php' ); |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
311 |
$submenu['options-general.php'][30] = array( __( 'Media' ), 'manage_options', 'options-media.php' ); |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
312 |
$submenu['options-general.php'][40] = array( __( 'Permalinks' ), 'manage_options', 'options-permalink.php' ); |
16 | 313 |
$submenu['options-general.php'][45] = array( __( 'Privacy' ), 'manage_privacy_options', 'options-privacy.php' ); |
0 | 314 |
|
16 | 315 |
$_wp_last_utility_menu = 80; // The index of the last top-level menu in the utility menu group. |
0 | 316 |
|
317 |
$menu[99] = array( '', 'read', 'separator-last', '', 'wp-menu-separator' ); |
|
318 |
||
16 | 319 |
// Back-compat for old top-levels. |
9 | 320 |
$_wp_real_parent_file['post.php'] = 'edit.php'; |
321 |
$_wp_real_parent_file['post-new.php'] = 'edit.php'; |
|
0 | 322 |
$_wp_real_parent_file['edit-pages.php'] = 'edit.php?post_type=page'; |
9 | 323 |
$_wp_real_parent_file['page-new.php'] = 'edit.php?post_type=page'; |
0 | 324 |
$_wp_real_parent_file['wpmu-admin.php'] = 'tools.php'; |
9 | 325 |
$_wp_real_parent_file['ms-admin.php'] = 'tools.php'; |
0 | 326 |
|
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
327 |
// Ensure backward compatibility. |
0 | 328 |
$compat = array( |
9 | 329 |
'index' => 'dashboard', |
330 |
'edit' => 'posts', |
|
331 |
'post' => 'posts', |
|
332 |
'upload' => 'media', |
|
333 |
'link-manager' => 'links', |
|
334 |
'edit-pages' => 'pages', |
|
335 |
'page' => 'pages', |
|
336 |
'edit-comments' => 'comments', |
|
0 | 337 |
'options-general' => 'settings', |
9 | 338 |
'themes' => 'appearance', |
339 |
); |
|
0 | 340 |
|
16 | 341 |
require_once ABSPATH . 'wp-admin/includes/menu.php'; |