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 |
||
5 | 9 |
if ( is_network_admin() ) { |
10 |
||
11 |
/** |
|
12 |
* Fires before the administration menu loads in the Network Admin. |
|
13 |
* |
|
14 |
* The hook fires before menus and sub-menus are removed based on user privileges. |
|
15 |
* |
|
16 |
* @private |
|
17 |
* @since 3.1.0 |
|
18 |
*/ |
|
19 |
do_action( '_network_admin_menu' ); |
|
20 |
} elseif ( is_user_admin() ) { |
|
21 |
||
22 |
/** |
|
23 |
* Fires before the administration menu loads in the User Admin. |
|
24 |
* |
|
25 |
* The hook fires before menus and sub-menus are removed based on user privileges. |
|
26 |
* |
|
27 |
* @private |
|
28 |
* @since 3.1.0 |
|
29 |
*/ |
|
30 |
do_action( '_user_admin_menu' ); |
|
31 |
} else { |
|
32 |
||
33 |
/** |
|
34 |
* Fires before the administration menu loads in the admin. |
|
35 |
* |
|
36 |
* The hook fires before menus and sub-menus are removed based on user privileges. |
|
37 |
* |
|
38 |
* @private |
|
39 |
* @since 2.2.0 |
|
40 |
*/ |
|
41 |
do_action( '_admin_menu' ); |
|
42 |
} |
|
0 | 43 |
|
44 |
// Create list of page plugin hook names. |
|
9 | 45 |
foreach ( $menu as $menu_page ) { |
16 | 46 |
$pos = strpos( $menu_page[2], '?' ); |
47 |
if ( false !== $pos ) { |
|
0 | 48 |
// Handle post_type=post|page|foo pages. |
9 | 49 |
$hook_name = substr( $menu_page[2], 0, $pos ); |
50 |
$hook_args = substr( $menu_page[2], $pos + 1 ); |
|
51 |
wp_parse_str( $hook_args, $hook_args ); |
|
0 | 52 |
// Set the hook name to be the post type. |
9 | 53 |
if ( isset( $hook_args['post_type'] ) ) { |
0 | 54 |
$hook_name = $hook_args['post_type']; |
9 | 55 |
} else { |
56 |
$hook_name = basename( $hook_name, '.php' ); |
|
57 |
} |
|
58 |
unset( $hook_args ); |
|
0 | 59 |
} else { |
9 | 60 |
$hook_name = basename( $menu_page[2], '.php' ); |
0 | 61 |
} |
9 | 62 |
$hook_name = sanitize_title( $hook_name ); |
0 | 63 |
|
9 | 64 |
if ( isset( $compat[ $hook_name ] ) ) { |
65 |
$hook_name = $compat[ $hook_name ]; |
|
66 |
} elseif ( ! $hook_name ) { |
|
0 | 67 |
continue; |
9 | 68 |
} |
0 | 69 |
|
9 | 70 |
$admin_page_hooks[ $menu_page[2] ] = $hook_name; |
0 | 71 |
} |
9 | 72 |
unset( $menu_page, $compat ); |
0 | 73 |
|
74 |
$_wp_submenu_nopriv = array(); |
|
9 | 75 |
$_wp_menu_nopriv = array(); |
0 | 76 |
// Loop over submenus and remove pages for which the user does not have privs. |
9 | 77 |
foreach ( $submenu as $parent => $sub ) { |
78 |
foreach ( $sub as $index => $data ) { |
|
79 |
if ( ! current_user_can( $data[1] ) ) { |
|
80 |
unset( $submenu[ $parent ][ $index ] ); |
|
81 |
$_wp_submenu_nopriv[ $parent ][ $data[2] ] = true; |
|
0 | 82 |
} |
5 | 83 |
} |
9 | 84 |
unset( $index, $data ); |
0 | 85 |
|
9 | 86 |
if ( empty( $submenu[ $parent ] ) ) { |
87 |
unset( $submenu[ $parent ] ); |
|
88 |
} |
|
0 | 89 |
} |
9 | 90 |
unset( $sub, $parent ); |
0 | 91 |
|
5 | 92 |
/* |
93 |
* Loop over the top-level menu. |
|
94 |
* Menus for which the original parent is not accessible due to lack of privileges |
|
95 |
* will have the next submenu in line be assigned as the new menu parent. |
|
96 |
*/ |
|
0 | 97 |
foreach ( $menu as $id => $data ) { |
9 | 98 |
if ( empty( $submenu[ $data[2] ] ) ) { |
0 | 99 |
continue; |
9 | 100 |
} |
101 |
$subs = $submenu[ $data[2] ]; |
|
102 |
$first_sub = reset( $subs ); |
|
0 | 103 |
$old_parent = $data[2]; |
104 |
$new_parent = $first_sub[2]; |
|
5 | 105 |
/* |
106 |
* If the first submenu is not the same as the assigned parent, |
|
107 |
* make the first submenu the new parent. |
|
108 |
*/ |
|
0 | 109 |
if ( $new_parent != $old_parent ) { |
9 | 110 |
$_wp_real_parent_file[ $old_parent ] = $new_parent; |
111 |
$menu[ $id ][2] = $new_parent; |
|
0 | 112 |
|
9 | 113 |
foreach ( $submenu[ $old_parent ] as $index => $data ) { |
114 |
$submenu[ $new_parent ][ $index ] = $submenu[ $old_parent ][ $index ]; |
|
115 |
unset( $submenu[ $old_parent ][ $index ] ); |
|
0 | 116 |
} |
9 | 117 |
unset( $submenu[ $old_parent ], $index ); |
0 | 118 |
|
9 | 119 |
if ( isset( $_wp_submenu_nopriv[ $old_parent ] ) ) { |
120 |
$_wp_submenu_nopriv[ $new_parent ] = $_wp_submenu_nopriv[ $old_parent ]; |
|
121 |
} |
|
0 | 122 |
} |
123 |
} |
|
9 | 124 |
unset( $id, $data, $subs, $first_sub, $old_parent, $new_parent ); |
0 | 125 |
|
5 | 126 |
if ( is_network_admin() ) { |
127 |
||
128 |
/** |
|
129 |
* Fires before the administration menu loads in the Network Admin. |
|
130 |
* |
|
131 |
* @since 3.1.0 |
|
132 |
* |
|
133 |
* @param string $context Empty context. |
|
134 |
*/ |
|
135 |
do_action( 'network_admin_menu', '' ); |
|
136 |
} elseif ( is_user_admin() ) { |
|
0 | 137 |
|
5 | 138 |
/** |
139 |
* Fires before the administration menu loads in the User Admin. |
|
140 |
* |
|
141 |
* @since 3.1.0 |
|
142 |
* |
|
143 |
* @param string $context Empty context. |
|
144 |
*/ |
|
145 |
do_action( 'user_admin_menu', '' ); |
|
146 |
} else { |
|
147 |
||
148 |
/** |
|
149 |
* Fires before the administration menu loads in the admin. |
|
150 |
* |
|
151 |
* @since 1.5.0 |
|
152 |
* |
|
153 |
* @param string $context Empty context. |
|
154 |
*/ |
|
155 |
do_action( 'admin_menu', '' ); |
|
156 |
} |
|
157 |
||
158 |
/* |
|
159 |
* Remove menus that have no accessible submenus and require privileges |
|
160 |
* that the user does not have. Run re-parent loop again. |
|
161 |
*/ |
|
0 | 162 |
foreach ( $menu as $id => $data ) { |
9 | 163 |
if ( ! current_user_can( $data[1] ) ) { |
164 |
$_wp_menu_nopriv[ $data[2] ] = true; |
|
165 |
} |
|
0 | 166 |
|
5 | 167 |
/* |
168 |
* If there is only one submenu and it is has same destination as the parent, |
|
169 |
* remove the submenu. |
|
170 |
*/ |
|
16 | 171 |
if ( ! empty( $submenu[ $data[2] ] ) && 1 === count( $submenu[ $data[2] ] ) ) { |
9 | 172 |
$subs = $submenu[ $data[2] ]; |
5 | 173 |
$first_sub = reset( $subs ); |
9 | 174 |
if ( $data[2] == $first_sub[2] ) { |
175 |
unset( $submenu[ $data[2] ] ); |
|
176 |
} |
|
0 | 177 |
} |
178 |
||
179 |
// If submenu is empty... |
|
9 | 180 |
if ( empty( $submenu[ $data[2] ] ) ) { |
0 | 181 |
// And user doesn't have privs, remove menu. |
9 | 182 |
if ( isset( $_wp_menu_nopriv[ $data[2] ] ) ) { |
183 |
unset( $menu[ $id ] ); |
|
0 | 184 |
} |
185 |
} |
|
186 |
} |
|
9 | 187 |
unset( $id, $data, $subs, $first_sub ); |
0 | 188 |
|
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
189 |
/** |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
190 |
* @param string $add |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
191 |
* @param string $class |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
192 |
* @return string |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
193 |
*/ |
9 | 194 |
function add_cssclass( $add, $class ) { |
195 |
$class = empty( $class ) ? $add : $class .= ' ' . $add; |
|
0 | 196 |
return $class; |
197 |
} |
|
198 |
||
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
199 |
/** |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
200 |
* @param array $menu |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
201 |
* @return array |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
202 |
*/ |
9 | 203 |
function add_menu_classes( $menu ) { |
16 | 204 |
$first = false; |
205 |
$lastorder = false; |
|
206 |
$i = 0; |
|
207 |
$mc = count( $menu ); |
|
0 | 208 |
foreach ( $menu as $order => $top ) { |
209 |
$i++; |
|
210 |
||
16 | 211 |
if ( 0 == $order ) { // Dashboard is always shown/single. |
9 | 212 |
$menu[0][4] = add_cssclass( 'menu-top-first', $top[4] ); |
213 |
$lastorder = 0; |
|
0 | 214 |
continue; |
215 |
} |
|
216 |
||
16 | 217 |
if ( 0 === strpos( $top[2], 'separator' ) && false !== $lastorder ) { // If separator. |
9 | 218 |
$first = true; |
219 |
$c = $menu[ $lastorder ][4]; |
|
220 |
$menu[ $lastorder ][4] = add_cssclass( 'menu-top-last', $c ); |
|
0 | 221 |
continue; |
222 |
} |
|
223 |
||
224 |
if ( $first ) { |
|
9 | 225 |
$c = $menu[ $order ][4]; |
226 |
$menu[ $order ][4] = add_cssclass( 'menu-top-first', $c ); |
|
227 |
$first = false; |
|
0 | 228 |
} |
229 |
||
16 | 230 |
if ( $mc == $i ) { // Last item. |
9 | 231 |
$c = $menu[ $order ][4]; |
232 |
$menu[ $order ][4] = add_cssclass( 'menu-top-last', $c ); |
|
0 | 233 |
} |
234 |
||
235 |
$lastorder = $order; |
|
236 |
} |
|
237 |
||
5 | 238 |
/** |
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
239 |
* Filters administration menus array with classes added for top-level items. |
5 | 240 |
* |
241 |
* @since 2.7.0 |
|
242 |
* |
|
243 |
* @param array $menu Associative array of administration menu items. |
|
244 |
*/ |
|
0 | 245 |
return apply_filters( 'add_menu_classes', $menu ); |
246 |
} |
|
247 |
||
16 | 248 |
uksort( $menu, 'strnatcasecmp' ); // Make it all pretty. |
0 | 249 |
|
5 | 250 |
/** |
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
251 |
* Filters whether to enable custom ordering of the administration menu. |
5 | 252 |
* |
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
253 |
* See the {@see 'menu_order'} filter for reordering menu items. |
5 | 254 |
* |
255 |
* @since 2.8.0 |
|
256 |
* |
|
257 |
* @param bool $custom Whether custom ordering is enabled. Default false. |
|
258 |
*/ |
|
259 |
if ( apply_filters( 'custom_menu_order', false ) ) { |
|
0 | 260 |
$menu_order = array(); |
261 |
foreach ( $menu as $menu_item ) { |
|
262 |
$menu_order[] = $menu_item[2]; |
|
263 |
} |
|
9 | 264 |
unset( $menu_item ); |
0 | 265 |
$default_menu_order = $menu_order; |
5 | 266 |
|
267 |
/** |
|
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
268 |
* Filters the order of administration menu items. |
5 | 269 |
* |
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
270 |
* A truthy value must first be passed to the {@see 'custom_menu_order'} filter |
5 | 271 |
* for this filter to work. Use the following to enable custom menu ordering: |
272 |
* |
|
273 |
* add_filter( 'custom_menu_order', '__return_true' ); |
|
274 |
* |
|
275 |
* @since 2.8.0 |
|
276 |
* |
|
277 |
* @param array $menu_order An ordered array of menu items. |
|
278 |
*/ |
|
9 | 279 |
$menu_order = apply_filters( 'menu_order', $menu_order ); |
280 |
$menu_order = array_flip( $menu_order ); |
|
281 |
$default_menu_order = array_flip( $default_menu_order ); |
|
0 | 282 |
|
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
283 |
/** |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
284 |
* @global array $menu_order |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
285 |
* @global array $default_menu_order |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
286 |
* |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
287 |
* @param array $a |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
288 |
* @param array $b |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
289 |
* @return int |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
290 |
*/ |
9 | 291 |
function sort_menu( $a, $b ) { |
0 | 292 |
global $menu_order, $default_menu_order; |
293 |
$a = $a[2]; |
|
294 |
$b = $b[2]; |
|
9 | 295 |
if ( isset( $menu_order[ $a ] ) && ! isset( $menu_order[ $b ] ) ) { |
0 | 296 |
return -1; |
9 | 297 |
} elseif ( ! isset( $menu_order[ $a ] ) && isset( $menu_order[ $b ] ) ) { |
0 | 298 |
return 1; |
9 | 299 |
} elseif ( isset( $menu_order[ $a ] ) && isset( $menu_order[ $b ] ) ) { |
300 |
if ( $menu_order[ $a ] == $menu_order[ $b ] ) { |
|
0 | 301 |
return 0; |
9 | 302 |
} |
303 |
return ( $menu_order[ $a ] < $menu_order[ $b ] ) ? -1 : 1; |
|
0 | 304 |
} else { |
9 | 305 |
return ( $default_menu_order[ $a ] <= $default_menu_order[ $b ] ) ? -1 : 1; |
0 | 306 |
} |
307 |
} |
|
308 |
||
9 | 309 |
usort( $menu, 'sort_menu' ); |
310 |
unset( $menu_order, $default_menu_order ); |
|
0 | 311 |
} |
312 |
||
16 | 313 |
// Prevent adjacent separators. |
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
314 |
$prev_menu_was_separator = false; |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
315 |
foreach ( $menu as $id => $data ) { |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
316 |
if ( false === stristr( $data[4], 'wp-menu-separator' ) ) { |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
317 |
|
16 | 318 |
// This item is not a separator, so falsey the toggler and do nothing. |
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
319 |
$prev_menu_was_separator = false; |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
320 |
} else { |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
321 |
|
16 | 322 |
// The previous item was a separator, so unset this one. |
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
323 |
if ( true === $prev_menu_was_separator ) { |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
324 |
unset( $menu[ $id ] ); |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
325 |
} |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
326 |
|
16 | 327 |
// This item is a separator, so truthy the toggler and move on. |
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
328 |
$prev_menu_was_separator = true; |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
329 |
} |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
330 |
} |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
331 |
unset( $id, $data, $prev_menu_was_separator ); |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
332 |
|
0 | 333 |
// Remove the last menu item if it is a separator. |
334 |
$last_menu_key = array_keys( $menu ); |
|
335 |
$last_menu_key = array_pop( $last_menu_key ); |
|
16 | 336 |
if ( ! empty( $menu ) && 'wp-menu-separator' === $menu[ $last_menu_key ][4] ) { |
0 | 337 |
unset( $menu[ $last_menu_key ] ); |
9 | 338 |
} |
0 | 339 |
unset( $last_menu_key ); |
340 |
||
9 | 341 |
if ( ! user_can_access_admin_page() ) { |
5 | 342 |
|
343 |
/** |
|
344 |
* Fires when access to an admin page is denied. |
|
345 |
* |
|
346 |
* @since 2.5.0 |
|
347 |
*/ |
|
348 |
do_action( 'admin_page_access_denied' ); |
|
349 |
||
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
350 |
wp_die( __( 'Sorry, you are not allowed to access this page.' ), 403 ); |
0 | 351 |
} |
352 |
||
9 | 353 |
$menu = add_menu_classes( $menu ); |