2003-05-28 09:54:49 +02:00
|
|
|
<?php
|
2004-04-25 08:42:45 +02:00
|
|
|
// This array constructs the admin menu bar.
|
|
|
|
//
|
|
|
|
// Menu item name
|
|
|
|
// The minimum level the user needs to access the item: between 0 and 10
|
|
|
|
// The URL of the item's file
|
2006-11-18 08:31:29 +01:00
|
|
|
$menu[0] = array(__('Dashboard'), 'read', 'index.php');
|
2006-07-04 19:19:15 +02:00
|
|
|
|
|
|
|
if ( strstr($_SERVER['REQUEST_URI'], 'edit-pages.php') )
|
2006-11-18 08:31:29 +01:00
|
|
|
$menu[5] = array(__('Write'), 'edit_pages', 'page-new.php');
|
2006-07-04 19:19:15 +02:00
|
|
|
else
|
2006-11-18 08:31:29 +01:00
|
|
|
$menu[5] = array(__('Write'), 'edit_posts', 'post-new.php');
|
2006-07-04 19:19:15 +02:00
|
|
|
if ( strstr($_SERVER['REQUEST_URI'], 'page-new.php') )
|
2006-11-18 08:31:29 +01:00
|
|
|
$menu[10] = array(__('Manage'), 'edit_pages', 'edit-pages.php');
|
2006-07-04 19:19:15 +02:00
|
|
|
else
|
2006-11-18 08:31:29 +01:00
|
|
|
$menu[10] = array(__('Manage'), 'edit_posts', 'edit.php');
|
2007-02-27 16:24:54 +01:00
|
|
|
|
2006-11-18 08:31:29 +01:00
|
|
|
$menu[15] = array(__('Comments'), 'edit_posts', 'edit-comments.php');
|
|
|
|
$menu[20] = array(__('Blogroll'), 'manage_links', 'link-manager.php');
|
|
|
|
$menu[25] = array(__('Presentation'), 'switch_themes', 'themes.php');
|
|
|
|
$menu[30] = array(__('Plugins'), 'activate_plugins', 'plugins.php');
|
2005-08-08 09:38:41 +02:00
|
|
|
if ( current_user_can('edit_users') )
|
2006-11-18 08:31:29 +01:00
|
|
|
$menu[35] = array(__('Users'), 'edit_users', 'users.php');
|
2005-08-08 09:38:41 +02:00
|
|
|
else
|
2006-11-18 08:31:29 +01:00
|
|
|
$menu[35] = array(__('Profile'), 'read', 'profile.php');
|
|
|
|
$menu[40] = array(__('Options'), 'manage_options', 'options-general.php');
|
2006-05-10 22:34:17 +02:00
|
|
|
|
2005-02-05 05:53:19 +01:00
|
|
|
|
2007-01-07 10:02:11 +01:00
|
|
|
$_wp_real_parent_file['post.php'] = 'post-new.php'; // Back-compat
|
2006-02-21 07:11:46 +01:00
|
|
|
$submenu['post-new.php'][5] = array(__('Write Post'), 'edit_posts', 'post-new.php');
|
|
|
|
$submenu['post-new.php'][10] = array(__('Write Page'), 'edit_pages', 'page-new.php');
|
2004-11-16 20:29:51 +01:00
|
|
|
|
2006-11-17 17:22:46 +01:00
|
|
|
$submenu['edit-comments.php'][5] = array(__('Comments'), 'edit_posts', 'edit-comments.php');
|
|
|
|
$awaiting_mod = $wpdb->get_var("SELECT COUNT(*) FROM $wpdb->comments WHERE comment_approved = '0'");
|
|
|
|
$submenu['edit-comments.php'][25] = array(sprintf(__("Awaiting Moderation (%s)"), "<span id='awaitmod'>$awaiting_mod</span>"), 'edit_posts', 'moderation.php');
|
|
|
|
|
|
|
|
|
2005-07-13 18:04:14 +02:00
|
|
|
$submenu['edit.php'][5] = array(__('Posts'), 'edit_posts', 'edit.php');
|
|
|
|
$submenu['edit.php'][10] = array(__('Pages'), 'edit_pages', 'edit-pages.php');
|
2006-10-03 09:15:13 +02:00
|
|
|
$submenu['edit.php'][12] = array(__('Uploads'), 'upload_files', 'upload.php');
|
2005-07-13 18:04:14 +02:00
|
|
|
$submenu['edit.php'][15] = array(__('Categories'), 'manage_categories', 'categories.php');
|
|
|
|
$submenu['edit.php'][30] = array(__('Files'), 'edit_files', 'templates.php');
|
2006-05-10 22:34:17 +02:00
|
|
|
$submenu['edit.php'][35] = array(__('Import'), 'import', 'import.php');
|
|
|
|
$submenu['edit.php'][40] = array(__('Export'), 'import', 'export.php');
|
2004-08-23 01:24:50 +02:00
|
|
|
|
2006-07-06 06:27:45 +02:00
|
|
|
$submenu['link-manager.php'][5] = array(__('Manage Blogroll'), 'manage_links', 'link-manager.php');
|
|
|
|
$submenu['link-manager.php'][10] = array(__('Add Link'), 'manage_links', 'link-add.php');
|
|
|
|
$submenu['link-manager.php'][20] = array(__('Import Links'), 'manage_links', 'link-import.php');
|
2004-08-23 01:24:50 +02:00
|
|
|
|
2006-06-08 20:36:05 +02:00
|
|
|
if ( current_user_can('edit_users') ) {
|
2006-08-15 23:03:11 +02:00
|
|
|
$_wp_real_parent_file['profile.php'] = 'users.php'; // Back-compat for plugins adding submenus to profile.php.
|
2006-06-08 20:36:05 +02:00
|
|
|
$submenu['users.php'][5] = array(__('Authors & Users'), 'edit_users', 'users.php');
|
|
|
|
$submenu['users.php'][10] = array(__('Your Profile'), 'read', 'profile.php');
|
|
|
|
} else {
|
|
|
|
$submenu['profile.php'][5] = array(__('Your Profile'), 'read', 'profile.php');
|
|
|
|
}
|
2004-08-23 01:24:50 +02:00
|
|
|
|
2005-11-17 00:32:38 +01:00
|
|
|
$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');
|
2006-05-22 21:34:28 +02:00
|
|
|
$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');
|
2004-08-23 01:24:50 +02:00
|
|
|
|
2005-07-13 18:04:14 +02:00
|
|
|
$submenu['plugins.php'][5] = array(__('Plugins'), 'activate_plugins', 'plugins.php');
|
|
|
|
$submenu['plugins.php'][10] = array(__('Plugin Editor'), 'edit_plugins', 'plugin-editor.php');
|
2004-11-17 04:15:44 +01:00
|
|
|
|
2005-07-13 18:04:14 +02:00
|
|
|
$submenu['themes.php'][5] = array(__('Themes'), 'switch_themes', 'themes.php');
|
|
|
|
$submenu['themes.php'][10] = array(__('Theme Editor'), 'edit_themes', 'theme-editor.php');
|
2004-09-11 18:12:40 +02:00
|
|
|
|
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.
|
|
|
|
foreach ($submenu as $parent => $sub) {
|
|
|
|
foreach ($sub as $index => $data) {
|
|
|
|
if ( ! current_user_can($data[1]) ) {
|
|
|
|
unset($submenu[$parent][$index]);
|
2006-08-16 00:13:36 +02:00
|
|
|
$_wp_submenu_nopriv[$parent][$data[2]] = true;
|
2006-02-17 01:57:10 +01:00
|
|
|
}
|
|
|
|
}
|
2006-11-19 08:56:05 +01:00
|
|
|
|
2006-02-17 01:57:10 +01:00
|
|
|
if ( empty($submenu[$parent]) )
|
|
|
|
unset($submenu[$parent]);
|
|
|
|
}
|
|
|
|
|
|
|
|
// 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 ) {
|
|
|
|
if ( empty($submenu[$data[2]]) )
|
|
|
|
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()) {
|
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
|
|
|
?>
|