2003-05-28 09:54:49 +02:00
|
|
|
<?php
|
2008-08-14 08:30:38 +02:00
|
|
|
/**
|
|
|
|
* Build Administration Menu.
|
|
|
|
*
|
|
|
|
* @package WordPress
|
|
|
|
* @subpackage Administration
|
|
|
|
*/
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Constructs the admin menu bar.
|
|
|
|
*
|
|
|
|
* The elements in the array are :
|
|
|
|
* 0: Menu item name
|
|
|
|
* 1: Minimum level or capability required.
|
|
|
|
* 2: The URL of the item's file
|
|
|
|
*
|
|
|
|
* @global array $menu
|
|
|
|
* @name $menu
|
|
|
|
* @var array
|
|
|
|
*/
|
2007-02-27 16:24:54 +01:00
|
|
|
|
2008-04-17 01:45:39 +02:00
|
|
|
$awaiting_mod = wp_count_comments();
|
|
|
|
$awaiting_mod = $awaiting_mod->moderated;
|
2004-08-23 01:24:50 +02:00
|
|
|
|
2008-08-20 23:42:31 +02:00
|
|
|
$inbox_num = count( wp_get_inbox_items() );
|
|
|
|
$awaiting_mod = wp_count_comments();
|
|
|
|
$awaiting_mod = $awaiting_mod->moderated;
|
|
|
|
|
|
|
|
$top_menu = $top_submenu = $menu = $submenu = array();
|
|
|
|
|
|
|
|
$top_menu[5] = array( __('My Account'), 'read', 'profile.php' );
|
|
|
|
$top_menu[10] = array( __('My Dashboard'), 'read', 'index.php' );
|
|
|
|
$top_menu[15] = array( __('New Post'), 'edit_posts', 'post-new.php', 'highlighted' );
|
|
|
|
//$top_menu[20] = array( sprintf( __('Inbox (%s)'), "<span id='inbox-num' class='count-$inbox_num'><span class='inbox-count'>" . number_format_i18n($inbox_num) . "</span></span>" ), 'edit_posts', 'inbox.php' );
|
|
|
|
$top_menu[20] = array( sprintf( __('Comments (%s)'), "<span id='awaiting-mod' class='count-$awaiting_mod'><span class='comment-count'>" . number_format_i18n($awaiting_mod) . "</span></span>" ), 'edit_posts', 'edit-comments.php');
|
|
|
|
$top_menu[25] = array( __('Help'), 'read', 'index.php?help' ); // place holder
|
|
|
|
|
|
|
|
$top_submenu['profile.php'][5] = array( __('Profile'), 'read', 'profile.php' );
|
|
|
|
|
|
|
|
$menu[0] = array( __('Dashboard'), 'read', 'index.php' );
|
|
|
|
|
|
|
|
$menu[5] = array( __('Content'), 'edit_posts', 'edit.php', 'wp-menu-open' );
|
|
|
|
$submenu['edit.php'][5] = array( __('Posts'), 'edit_posts', 'edit.php' );
|
|
|
|
$submenu['edit.php'][10] = array( __('Comments'), 'edit_posts', 'edit-comments.php' );
|
|
|
|
$submenu['edit.php'][15] = array( __('Media Library'), 'upload_files', 'upload.php' );
|
|
|
|
$submenu['edit.php'][20] = array( __('Links'), 'manage_links', 'link-manager.php' );
|
|
|
|
$submenu['edit.php'][25] = array( __('Pages'), 'edit_pages', 'edit-pages.php' );
|
|
|
|
|
|
|
|
$menu[10] = array( __('Templates'), 'switch_themes', 'themes.php' );
|
|
|
|
$submenu['themes.php'][5] = array(__('Themes'), 'switch_themes', 'themes.php');
|
|
|
|
$submenu['themes.php'][10] = array(__('Theme Editor'), 'edit_themes', 'theme-editor.php');
|
2004-11-17 04:15:44 +01:00
|
|
|
|
2008-08-20 23:42:31 +02:00
|
|
|
$menu[15] = array( __('Utilities'), 'read', 'users.php' ); // placeholder - should be inbox
|
|
|
|
$submenu['users.php'][5] = array( __('Inbox'), 'read', 'inbox.php' );
|
|
|
|
$submenu['users.php'][10] = array( __('Tags'), 'manage_categories', 'edit-tags.php' );
|
|
|
|
$submenu['users.php'][15] = array( __('Categories'), 'manage_categories', 'categories.php' );
|
|
|
|
$submenu['users.php'][20] = array( __('Link Categories'), 'manage_categories', 'edit-link-categories.php' );
|
|
|
|
$submenu['users.php'][25] = array( __('Users'), 'edit_users', 'users.php' );
|
|
|
|
$submenu['users.php'][30] = array( __('Import'), 'import', 'import.php' );
|
|
|
|
$submenu['users.php'][35] = array( __('Export'), 'import', 'export.php' );
|
|
|
|
|
2008-08-22 01:18:51 +02:00
|
|
|
$menu[20] = array(__('Settings'), 'manage_options', 'options-general.php');
|
|
|
|
$submenu['options-general.php'][10] = array(__('General'), 'manage_options', 'options-general.php');
|
|
|
|
$submenu['options-general.php'][15] = array(__('Writing'), 'manage_options', 'options-writing.php');
|
|
|
|
$submenu['options-general.php'][20] = array(__('Reading'), 'manage_options', 'options-reading.php');
|
|
|
|
$submenu['options-general.php'][25] = array(__('Discussion'), 'manage_options', 'options-discussion.php');
|
|
|
|
$submenu['options-general.php'][30] = array(__('Privacy'), 'manage_options', 'options-privacy.php');
|
|
|
|
$submenu['options-general.php'][35] = array(__('Permalinks'), 'manage_options', 'options-permalink.php');
|
|
|
|
$submenu['options-general.php'][40] = array(__('Miscellaneous'), 'manage_options', 'options-misc.php');
|
|
|
|
|
|
|
|
$menu[25] = array( __('Plugins'), 'activate_plugins', 'plugins.php' );
|
2008-08-20 23:42:31 +02:00
|
|
|
$submenu['plugins.php'][5] = array( __('Plugins'), 'activate_plugins', 'plugins.php' );
|
|
|
|
$submenu['plugins.php'][10] = array( __('Plugin Editor'), 'edit_plugins', 'plugin-editor.php' );
|
2008-08-22 05:48:00 +02:00
|
|
|
$submenu['plugins.php'][15] = array(__('Install Plugins'), 'install_plugins', 'plugin-install.php');
|
2004-09-11 18:12:40 +02:00
|
|
|
|
2008-08-22 06:32:42 +02:00
|
|
|
// Back-compat for old top-levels
|
|
|
|
$_wp_real_parent_file['post.php'] = 'edit.php';
|
|
|
|
$_wp_real_parent_file['post-new.php'] = 'edit.php';
|
|
|
|
$_wp_real_parent_file['edit-comments.php'] = 'edit.php';
|
|
|
|
|
2007-05-06 22:36:11 +02:00
|
|
|
do_action('_admin_menu');
|
|
|
|
|
2006-05-02 21:08:37 +02:00
|
|
|
// Create list of page plugin hook names.
|
2006-11-18 08:31:29 +01:00
|
|
|
foreach ($menu as $menu_page) {
|
2006-05-02 21:08:37 +02:00
|
|
|
$admin_page_hooks[$menu_page[2]] = sanitize_title($menu_page[0]);
|
2006-11-18 08:31:29 +01:00
|
|
|
}
|
2006-05-02 21:08:37 +02:00
|
|
|
|
2006-08-16 00:13:36 +02:00
|
|
|
$_wp_submenu_nopriv = array();
|
|
|
|
$_wp_menu_nopriv = array();
|
2006-02-17 01:57:10 +01:00
|
|
|
// Loop over submenus and remove pages for which the user does not have privs.
|
2008-08-20 23:42:31 +02:00
|
|
|
foreach ( array( 'top_submenu', 'submenu' ) as $sub_loop ) {
|
|
|
|
foreach ($$sub_loop as $parent => $sub) {
|
|
|
|
foreach ($sub as $index => $data) {
|
|
|
|
if ( ! current_user_can($data[1]) ) {
|
|
|
|
unset(${$sub_loop}[$parent][$index]);
|
|
|
|
$_wp_submenu_nopriv[$parent][$data[2]] = true;
|
|
|
|
}
|
2006-02-17 01:57:10 +01:00
|
|
|
}
|
2006-11-19 08:56:05 +01:00
|
|
|
|
2008-08-20 23:42:31 +02:00
|
|
|
if ( empty(${$sub_loop}[$parent]) )
|
|
|
|
unset(${$sub_loop}[$parent]);
|
|
|
|
}
|
2006-02-17 01:57:10 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
// Loop over the top-level menu.
|
|
|
|
// Menus for which the original parent is not acessible due to lack of privs will have the next
|
2006-11-19 08:56:05 +01:00
|
|
|
// submenu in line be assigned as the new menu parent.
|
2006-08-14 23:24:43 +02:00
|
|
|
foreach ( $menu as $id => $data ) {
|
2007-09-04 01:32:58 +02:00
|
|
|
if ( empty($submenu[$data[2]]) )
|
2006-08-14 23:24:43 +02:00
|
|
|
continue;
|
|
|
|
$subs = $submenu[$data[2]];
|
|
|
|
$first_sub = array_shift($subs);
|
|
|
|
$old_parent = $data[2];
|
|
|
|
$new_parent = $first_sub[2];
|
|
|
|
// If the first submenu is not the same as the assigned parent,
|
|
|
|
// make the first submenu the new parent.
|
|
|
|
if ( $new_parent != $old_parent ) {
|
2006-08-15 23:03:11 +02:00
|
|
|
$_wp_real_parent_file[$old_parent] = $new_parent;
|
2006-08-14 23:24:43 +02:00
|
|
|
$menu[$id][2] = $new_parent;
|
2007-02-27 16:24:54 +01:00
|
|
|
|
2006-08-14 23:24:43 +02:00
|
|
|
foreach ($submenu[$old_parent] as $index => $data) {
|
|
|
|
$submenu[$new_parent][$index] = $submenu[$old_parent][$index];
|
|
|
|
unset($submenu[$old_parent][$index]);
|
|
|
|
}
|
2006-08-15 23:03:11 +02:00
|
|
|
unset($submenu[$old_parent]);
|
|
|
|
$_wp_submenu_nopriv[$new_parent] = $_wp_submenu_nopriv[$old_parent];
|
2006-08-14 23:24:43 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
do_action('admin_menu', '');
|
|
|
|
|
|
|
|
// Remove menus that have no accessible submenus and require privs that the user does not have.
|
2006-08-15 23:03:11 +02:00
|
|
|
// Run re-parent loop again.
|
2006-02-17 01:57:10 +01:00
|
|
|
foreach ( $menu as $id => $data ) {
|
|
|
|
// If submenu is empty...
|
|
|
|
if ( empty($submenu[$data[2]]) ) {
|
|
|
|
// And user doesn't have privs, remove menu.
|
|
|
|
if ( ! current_user_can($data[1]) ) {
|
2006-08-15 23:03:11 +02:00
|
|
|
$_wp_menu_nopriv[$data[2]] = true;
|
2006-02-17 01:57:10 +01:00
|
|
|
unset($menu[$id]);
|
|
|
|
}
|
2006-08-15 23:03:11 +02:00
|
|
|
}
|
2006-02-17 01:57:10 +01:00
|
|
|
}
|
|
|
|
|
2006-11-18 08:31:29 +01:00
|
|
|
unset($id);
|
2006-10-03 09:15:13 +02:00
|
|
|
|
2006-11-18 08:31:29 +01:00
|
|
|
uksort($menu, "strnatcasecmp"); // make it all pretty
|
2004-10-18 06:50:08 +02:00
|
|
|
|
2006-11-18 08:31:29 +01:00
|
|
|
if (! user_can_access_admin_page()) {
|
2007-12-05 08:34:57 +01:00
|
|
|
do_action('admin_page_access_denied');
|
2006-07-06 00:00:03 +02:00
|
|
|
wp_die( __('You do not have sufficient permissions to access this page.') );
|
2006-11-18 08:31:29 +01:00
|
|
|
}
|
2004-10-18 06:50:08 +02:00
|
|
|
|
2006-11-18 08:31:29 +01:00
|
|
|
?>
|