diff --git a/wp-admin/admin.php b/wp-admin/admin.php
index 998ff1ff1e..f48827a20b 100644
--- a/wp-admin/admin.php
+++ b/wp-admin/admin.php
@@ -14,6 +14,9 @@
if ( !defined('WP_ADMIN') )
define('WP_ADMIN', TRUE);
+if ( !defined('WP_NETWORK_ADMIN') )
+ define('WP_NETWORK_ADMIN', FALSE);
+
if ( isset($_GET['import']) && !defined('WP_LOAD_IMPORTERS') )
define('WP_LOAD_IMPORTERS', true);
@@ -90,7 +93,10 @@ if ( isset($_GET['taxonomy']) )
else
$taxnow = '';
-require(ABSPATH . 'wp-admin/menu.php');
+if ( WP_NETWORK_ADMIN )
+ require(ABSPATH . 'wp-admin/network/menu.php');
+else
+ require(ABSPATH . 'wp-admin/menu.php');
if ( current_user_can( 'manage_options' ) )
@ini_set( 'memory_limit', apply_filters( 'admin_memory_limit', '256M' ) );
diff --git a/wp-admin/includes/menu.php b/wp-admin/includes/menu.php
new file mode 100644
index 0000000000..8222d1ae3e
--- /dev/null
+++ b/wp-admin/includes/menu.php
@@ -0,0 +1,211 @@
+ $sub) {
+ foreach ($sub as $index => $data) {
+ if ( ! current_user_can($data[1]) ) {
+ unset(${$sub_loop}[$parent][$index]);
+ $_wp_submenu_nopriv[$parent][$data[2]] = true;
+ }
+ }
+ unset($index, $data);
+
+ if ( empty(${$sub_loop}[$parent]) )
+ unset(${$sub_loop}[$parent]);
+ }
+ unset($sub, $parent);
+}
+unset($sub_loop);
+
+// Loop over the top-level menu.
+// Menus for which the original parent is not accessible due to lack of privs will have the next
+// submenu in line be assigned as the new menu parent.
+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 ) {
+ $_wp_real_parent_file[$old_parent] = $new_parent;
+ $menu[$id][2] = $new_parent;
+
+ foreach ($submenu[$old_parent] as $index => $data) {
+ $submenu[$new_parent][$index] = $submenu[$old_parent][$index];
+ unset($submenu[$old_parent][$index]);
+ }
+ unset($submenu[$old_parent], $index);
+
+ if ( isset($_wp_submenu_nopriv[$old_parent]) )
+ $_wp_submenu_nopriv[$new_parent] = $_wp_submenu_nopriv[$old_parent];
+ }
+}
+unset($id, $data, $subs, $first_sub, $old_parent, $new_parent);
+
+if ( is_network_admin() )
+ do_action('network_admin_menu', '');
+else
+ do_action('admin_menu', '');
+
+// Remove menus that have no accessible submenus and require privs that the user does not have.
+// Run re-parent loop again.
+foreach ( $menu as $id => $data ) {
+ if ( ! current_user_can($data[1]) )
+ $_wp_menu_nopriv[$data[2]] = true;
+
+ // If submenu is empty...
+ if ( empty($submenu[$data[2]]) ) {
+ // And user doesn't have privs, remove menu.
+ if ( isset( $_wp_menu_nopriv[$data[2]] ) ) {
+ unset($menu[$id]);
+ }
+ }
+}
+unset($id, $data);
+
+// Remove any duplicated seperators
+$seperator_found = false;
+foreach ( $menu as $id => $data ) {
+ if ( 0 == strcmp('wp-menu-separator', $data[4] ) ) {
+ if (false == $seperator_found) {
+ $seperator_found = true;
+ } else {
+ unset($menu[$id]);
+ $seperator_found = false;
+ }
+ } else {
+ $seperator_found = false;
+ }
+}
+unset($id, $data);
+
+function add_cssclass($add, $class) {
+ $class = empty($class) ? $add : $class .= ' ' . $add;
+ return $class;
+}
+
+function add_menu_classes($menu) {
+
+ $first = $lastorder = false;
+ $i = 0;
+ $mc = count($menu);
+ foreach ( $menu as $order => $top ) {
+ $i++;
+
+ if ( 0 == $order ) { // dashboard is always shown/single
+ $menu[0][4] = add_cssclass('menu-top-first', $top[4]);
+ $lastorder = 0;
+ continue;
+ }
+
+ if ( 0 === strpos($top[2], 'separator') ) { // if separator
+ $first = true;
+ $c = $menu[$lastorder][4];
+ $menu[$lastorder][4] = add_cssclass('menu-top-last', $c);
+ continue;
+ }
+
+ if ( $first ) {
+ $c = $menu[$order][4];
+ $menu[$order][4] = add_cssclass('menu-top-first', $c);
+ $first = false;
+ }
+
+ if ( $mc == $i ) { // last item
+ $c = $menu[$order][4];
+ $menu[$order][4] = add_cssclass('menu-top-last', $c);
+ }
+
+ $lastorder = $order;
+ }
+
+ return apply_filters( 'add_menu_classes', $menu );
+}
+
+uksort($menu, "strnatcasecmp"); // make it all pretty
+
+if ( apply_filters('custom_menu_order', false) ) {
+ $menu_order = array();
+ foreach ( $menu as $menu_item ) {
+ $menu_order[] = $menu_item[2];
+ }
+ unset($menu_item);
+ $default_menu_order = $menu_order;
+ $menu_order = apply_filters('menu_order', $menu_order);
+ $menu_order = array_flip($menu_order);
+ $default_menu_order = array_flip($default_menu_order);
+
+ function sort_menu($a, $b) {
+ global $menu_order, $default_menu_order;
+ $a = $a[2];
+ $b = $b[2];
+ if ( isset($menu_order[$a]) && !isset($menu_order[$b]) ) {
+ return -1;
+ } elseif ( !isset($menu_order[$a]) && isset($menu_order[$b]) ) {
+ return 1;
+ } elseif ( isset($menu_order[$a]) && isset($menu_order[$b]) ) {
+ if ( $menu_order[$a] == $menu_order[$b] )
+ return 0;
+ return ($menu_order[$a] < $menu_order[$b]) ? -1 : 1;
+ } else {
+ return ($default_menu_order[$a] <= $default_menu_order[$b]) ? -1 : 1;
+ }
+ }
+
+ usort($menu, 'sort_menu');
+ unset($menu_order, $default_menu_order);
+}
+
+$menu = add_menu_classes($menu);
+
+if ( !user_can_access_admin_page() ) {
+ do_action('admin_page_access_denied');
+ wp_die( __('You do not have sufficient permissions to access this page.') );
+}
+
+?>
\ No newline at end of file
diff --git a/wp-admin/menu.php b/wp-admin/menu.php
index 91e4c03061..f064b08ddf 100644
--- a/wp-admin/menu.php
+++ b/wp-admin/menu.php
@@ -25,23 +25,7 @@
$awaiting_mod = wp_count_comments();
$awaiting_mod = $awaiting_mod->moderated;
-if ( is_multisite() && is_super_admin() ) {
- /* translators: Network menu item */
- $menu[0] = array(__('Super Admin'), 'manage_network', 'ms-admin.php', '', 'menu-top menu-top-first menu-icon-site', 'menu-site', 'div');
- $submenu[ 'ms-admin.php' ][1] = array( __('Admin'), 'manage_network', 'ms-admin.php' );
- /* translators: Sites menu item */
- $submenu[ 'ms-admin.php' ][5] = array( __('Sites'), 'manage_sites', 'ms-sites.php' );
- $submenu[ 'ms-admin.php' ][10] = array( __('Users'), 'manage_network_users', 'ms-users.php' );
- $submenu[ 'ms-admin.php' ][20] = array( __('Themes'), 'manage_network_themes', 'ms-themes.php' );
- $submenu[ 'ms-admin.php' ][25] = array( __('Options'), 'manage_network_options', 'ms-options.php' );
- $submenu[ 'ms-admin.php' ][30] = array( __('Update'), 'manage_network', 'ms-upgrade-network.php' );
-
- $menu[1] = array( '', 'read', 'separator1', '', 'wp-menu-separator' );
-
- $menu[2] = array( __('Dashboard'), 'read', 'index.php', '', 'menu-top menu-icon-dashboard', 'menu-dashboard', 'div' );
-} else {
- $menu[2] = array( __('Dashboard'), 'read', 'index.php', '', 'menu-top menu-top-first menu-icon-dashboard', 'menu-dashboard', 'div' );
-}
+$menu[2] = array( __('Dashboard'), 'read', 'index.php', '', 'menu-top menu-top-first menu-icon-dashboard', 'menu-dashboard', 'div' );
if ( is_multisite() || is_super_admin() ) {
$submenu[ 'index.php' ][0] = array( __('Dashboard'), 'read', 'index.php' );
@@ -234,213 +218,20 @@ $_wp_real_parent_file['edit-pages.php'] = 'edit.php?post_type=page';
$_wp_real_parent_file['page-new.php'] = 'edit.php?post_type=page';
$_wp_real_parent_file['wpmu-admin.php'] = 'ms-admin.php';
-do_action('_admin_menu');
+// ensure we're backwards compatible
+$compat = array(
+ 'index' => 'dashboard',
+ 'edit' => 'posts',
+ 'post' => 'posts',
+ 'upload' => 'media',
+ 'link-manager' => 'links',
+ 'edit-pages' => 'pages',
+ 'page' => 'pages',
+ 'edit-comments' => 'comments',
+ 'options-general' => 'settings',
+ 'themes' => 'appearance',
+ );
-// Create list of page plugin hook names.
-foreach ($menu as $menu_page) {
- if ( false !== $pos = strpos($menu_page[2], '?') ) {
- // Handle post_type=post|page|foo pages.
- $hook_name = substr($menu_page[2], 0, $pos);
- $hook_args = substr($menu_page[2], $pos + 1);
- wp_parse_str($hook_args, $hook_args);
- // Set the hook name to be the post type.
- if ( isset($hook_args['post_type']) )
- $hook_name = $hook_args['post_type'];
- else
- $hook_name = basename($hook_name, '.php');
- unset($hook_args);
- } else {
- $hook_name = basename($menu_page[2], '.php');
- }
- $hook_name = sanitize_title($hook_name);
-
- // ensure we're backwards compatible
- $compat = array(
- 'index' => 'dashboard',
- 'edit' => 'posts',
- 'post' => 'posts',
- 'upload' => 'media',
- 'link-manager' => 'links',
- 'edit-pages' => 'pages',
- 'page' => 'pages',
- 'edit-comments' => 'comments',
- 'options-general' => 'settings',
- 'themes' => 'appearance',
- );
-
- if ( isset($compat[$hook_name]) )
- $hook_name = $compat[$hook_name];
- elseif ( !$hook_name )
- continue;
-
- $admin_page_hooks[$menu_page[2]] = $hook_name;
-}
-unset($menu_page);
-
-$_wp_submenu_nopriv = array();
-$_wp_menu_nopriv = array();
-// Loop over submenus and remove pages for which the user does not have privs.
-foreach ( array( '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;
- }
- }
- unset($index, $data);
-
- if ( empty(${$sub_loop}[$parent]) )
- unset(${$sub_loop}[$parent]);
- }
- unset($sub, $parent);
-}
-unset($sub_loop);
-
-// Loop over the top-level menu.
-// Menus for which the original parent is not accessible due to lack of privs will have the next
-// submenu in line be assigned as the new menu parent.
-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 ) {
- $_wp_real_parent_file[$old_parent] = $new_parent;
- $menu[$id][2] = $new_parent;
-
- foreach ($submenu[$old_parent] as $index => $data) {
- $submenu[$new_parent][$index] = $submenu[$old_parent][$index];
- unset($submenu[$old_parent][$index]);
- }
- unset($submenu[$old_parent], $index);
-
- if ( isset($_wp_submenu_nopriv[$old_parent]) )
- $_wp_submenu_nopriv[$new_parent] = $_wp_submenu_nopriv[$old_parent];
- }
-}
-unset($id, $data, $subs, $first_sub, $old_parent, $new_parent);
-
-do_action('admin_menu', '');
-
-// Remove menus that have no accessible submenus and require privs that the user does not have.
-// Run re-parent loop again.
-foreach ( $menu as $id => $data ) {
- if ( ! current_user_can($data[1]) )
- $_wp_menu_nopriv[$data[2]] = true;
-
- // If submenu is empty...
- if ( empty($submenu[$data[2]]) ) {
- // And user doesn't have privs, remove menu.
- if ( isset( $_wp_menu_nopriv[$data[2]] ) ) {
- unset($menu[$id]);
- }
- }
-}
-unset($id, $data);
-
-// Remove any duplicated seperators
-$seperator_found = false;
-foreach ( $menu as $id => $data ) {
- if ( 0 == strcmp('wp-menu-separator', $data[4] ) ) {
- if (false == $seperator_found) {
- $seperator_found = true;
- } else {
- unset($menu[$id]);
- $seperator_found = false;
- }
- } else {
- $seperator_found = false;
- }
-}
-unset($id, $data);
-
-function add_cssclass($add, $class) {
- $class = empty($class) ? $add : $class .= ' ' . $add;
- return $class;
-}
-
-function add_menu_classes($menu) {
-
- $first = $lastorder = false;
- $i = 0;
- $mc = count($menu);
- foreach ( $menu as $order => $top ) {
- $i++;
-
- if ( 0 == $order ) { // dashboard is always shown/single
- $menu[0][4] = add_cssclass('menu-top-first', $top[4]);
- $lastorder = 0;
- continue;
- }
-
- if ( 0 === strpos($top[2], 'separator') ) { // if separator
- $first = true;
- $c = $menu[$lastorder][4];
- $menu[$lastorder][4] = add_cssclass('menu-top-last', $c);
- continue;
- }
-
- if ( $first ) {
- $c = $menu[$order][4];
- $menu[$order][4] = add_cssclass('menu-top-first', $c);
- $first = false;
- }
-
- if ( $mc == $i ) { // last item
- $c = $menu[$order][4];
- $menu[$order][4] = add_cssclass('menu-top-last', $c);
- }
-
- $lastorder = $order;
- }
-
- return apply_filters( 'add_menu_classes', $menu );
-}
-
-uksort($menu, "strnatcasecmp"); // make it all pretty
-
-if ( apply_filters('custom_menu_order', false) ) {
- $menu_order = array();
- foreach ( $menu as $menu_item ) {
- $menu_order[] = $menu_item[2];
- }
- unset($menu_item);
- $default_menu_order = $menu_order;
- $menu_order = apply_filters('menu_order', $menu_order);
- $menu_order = array_flip($menu_order);
- $default_menu_order = array_flip($default_menu_order);
-
- function sort_menu($a, $b) {
- global $menu_order, $default_menu_order;
- $a = $a[2];
- $b = $b[2];
- if ( isset($menu_order[$a]) && !isset($menu_order[$b]) ) {
- return -1;
- } elseif ( !isset($menu_order[$a]) && isset($menu_order[$b]) ) {
- return 1;
- } elseif ( isset($menu_order[$a]) && isset($menu_order[$b]) ) {
- if ( $menu_order[$a] == $menu_order[$b] )
- return 0;
- return ($menu_order[$a] < $menu_order[$b]) ? -1 : 1;
- } else {
- return ($default_menu_order[$a] <= $default_menu_order[$b]) ? -1 : 1;
- }
- }
-
- usort($menu, 'sort_menu');
- unset($menu_order, $default_menu_order);
-}
-
-$menu = add_menu_classes($menu);
-
-if ( !user_can_access_admin_page() ) {
- do_action('admin_page_access_denied');
- wp_die( __('You do not have sufficient permissions to access this page.') );
-}
+require(ABSPATH . 'wp-admin/includes/menu.php');
?>
diff --git a/wp-admin/ms-admin.php b/wp-admin/ms-admin.php
index 0461c5cb82..b302bbf855 100644
--- a/wp-admin/ms-admin.php
+++ b/wp-admin/ms-admin.php
@@ -9,68 +9,4 @@
require_once( './admin.php' );
-if ( !is_multisite() )
- wp_die( __( 'Multisite support is not enabled.' ) );
-
-if ( ! current_user_can( 'manage_network' ) )
- wp_die( __( 'You do not have permission to access this page.' ) );
-
-$title = __( 'Network Admin' );
-$parent_file = 'ms-admin.php';
-
-add_contextual_help($current_screen,
- '
' . __('Until WordPress 3.0, running multiple sites required using WordPress MU instead of regular WordPress. In version 3.0, these applications have merged. If you are a former MU user, you should be aware of the following changes:') . '
' .
- '
' . __('Site Admin is now Super Admin (we highly encourage you to get yourself a cape!).') . '
' .
- '
' . __('Blogs are now called Sites; Site is now called Network.') . '
' .
- '
' . __('This screen provides the network administrator with links to the screens for Sites and Users to either create a new site or user, or to search existing users and sites. Those screens are also accessible through the left-hand navigation in the Super Admin section.') . '
' . __('This screen sets and changes options for the network as a whole. The first site is the main site in the network and network options are pulled from that original site’s options.') . '
' .
- '
' . __('Operational settings has fields for the network’s name and admin email.') . '
' .
- '
' . __('Dashboard Site is an option to give a site to users who do not have a site on the system. Their default role is Subscriber, but that default can be changed. The Admin Notice Feed can provide a notice on all dashboards of the latest post via RSS or Atom, or provide no such notice if left blank.') . '
' .
- '
' . __('Registration settings can disable/enable public signups. If you let others sign up for a site, install spam plugins. Spaces, not commas, should separate names banned as sites for this network.') . '
' .
- '
' . __('New site settings are defaults applied when a new site is created in the network. These include welcome email for when a new site or user account is registered, and what᾿s put in the first post, page, comment, comment author, and comment URL.') . '
' .
- '
' . __('Upload settings control the size of the uploaded files and the amount of available upload space for each site. You can change the default value for specific sites when you edit a particular site. Allowed file types are also listed (space separated only).') . '
' .
- '
' . __('Checkboxes for media upload buttons set which are shown in the visual editor. If unchecked, a generic upload button is still visible; other media types can still be uploaded if on the allowed file types list.') . '
' .
- '
' . __('Menu setting enables/disables the plugin menus from appearing for non super admins, so that only super admins, not site admins, have access to activate plugins.') . '
' .
- '
' . __('Super admins can no longer be added on the Options screen. You must now go to the list of existing users on Super Admin > Users and click on Username or the Edit action link below that name. This goes to an Edit User page where you can check a box to grant super admin privileges.') . '
-
-
+wp_redirect( network_admin_url('settings.php') );
\ No newline at end of file
diff --git a/wp-admin/ms-sites.php b/wp-admin/ms-sites.php
index 13397d7f20..119b030955 100644
--- a/wp-admin/ms-sites.php
+++ b/wp-admin/ms-sites.php
@@ -9,739 +9,4 @@
require_once( './admin.php' );
-if ( ! is_multisite() )
- wp_die( __( 'Multisite support is not enabled.' ) );
-
-if ( ! current_user_can( 'manage_sites' ) )
- wp_die( __( 'You do not have permission to access this page.' ) );
-
-$title = __( 'Sites' );
-$parent_file = 'ms-admin.php';
-
-if ( isset( $_GET['action'] ) && 'editblog' == $_GET['action'] ) {
- add_contextual_help($current_screen,
- '
' . __('This extensive list of options has five modules: Site Info, Site Options, allowing Site Themes for this given site, changing user roles and passwords for that site, adding a new user, and Miscellaneous Site Actions (upload size limits).') . '
' .
- '
' . __('Note that some fields in Site Options are grayed out and say Serialized Data. These are stored values in the database which you cannot change from here.') . '
' . __('Add New takes you farther down on this same page. You can search for a site by Name, ID number, or IP address. Screen Options allows you to choose how many sites to display on one page.') . '
' .
- '
' . __('This is the main table of all sites on this network. Switch between list and excerpt views by using the icons above the right side of the table.') . '
' .
- '
' . __('Hovering over each site reveals seven options (three for the primary site):') . '
' .
- '
' . __('an Edit link to a separate Edit Site screen.') . '
' .
- '
' . __('Backend means the Dashboard for that site.') . '
' .
- '
' . __('Deactivate, Archive, and Spam which lead to confirmation screens. These actions can be reversed later.') . '
' .
- '
' . __('Delete which is a permanent action after the confirmations screen.') . '
' .
- '
' . __('Visit to go to the frontend site live.') . '
' .
- '
' . __('The site ID is used internally, and is not shown on the front end of the site or to users/viewers.') . '
' .
- '
' . __('Clicking on bold settings can re-sort this table. The upper right icons switch between list and excerpt views.') . '
' .
- '
' . __("Clicking on Add Site, after filling out the address, title, and admin's email address, adds the site instantly to the network and this table. You may want to then click on the action link to edit options for that site.") . '
' .
- '
' . __('If the admin email for the new site does not exist in the database, a new user will also be created.') . '
-
+wp_redirect( network_admin_url('sites.php') );
\ No newline at end of file
diff --git a/wp-admin/ms-themes.php b/wp-admin/ms-themes.php
index e6fd9b57b6..b7ad093bc4 100644
--- a/wp-admin/ms-themes.php
+++ b/wp-admin/ms-themes.php
@@ -9,91 +9,4 @@
require_once( './admin.php' );
-if ( ! current_user_can( 'manage_network_themes' ) )
- wp_die( __( 'You do not have permission to access this page.' ) );
-
-$title = __( 'Network Themes' );
-$parent_file = 'ms-admin.php';
-
-add_contextual_help($current_screen,
- '
' . __('This screen enables and disables the inclusion of themes available to choose in the Appearance menu for each site. It does not activate or deactivate which theme a site is currently using.') . '
' .
- '
' . __('If the network admin disables a theme that is in use, it can still remain selected on that site. If another theme is chosen, the disabled theme will not appear in the site’s Appearance > Themes screen.') . '
' .
- '
' . __('Themes can be enabled on a site by site basis by the network admin on the Edit Site screen you go to via the Edit action link on the Sites screen.') . '
-
-
+wp_redirect( network_admin_url('themes.php') );
\ No newline at end of file
diff --git a/wp-admin/ms-upgrade-network.php b/wp-admin/ms-upgrade-network.php
index 5bcee65067..5e2ef281b4 100644
--- a/wp-admin/ms-upgrade-network.php
+++ b/wp-admin/ms-upgrade-network.php
@@ -9,77 +9,4 @@
require_once('admin.php');
-if ( !is_multisite() )
- wp_die( __( 'Multisite support is not enabled.' ) );
-
-require_once( ABSPATH . WPINC . '/http.php' );
-
-$title = __( 'Update Network' );
-$parent_file = 'ms-admin.php';
-
-add_contextual_help($current_screen,
- '
' . __('Only use this screen once you have updated to a new version of WordPress through Dashboard > Updates. Clicking the Update Network button will step through each site in the network, five at a time, and make sure any database upgrades are applied.') . '
' .
- '
' . __('If a version update to core has not happened, clicking this button won’t affect anything.') . '
' .
- '
' . __('If this process fails for any reason, users logging in to their sites will force the same update.') . '
";
- $response = wp_remote_get( trailingslashit( $siteurl ) . "wp-admin/upgrade.php?step=upgrade_db", array( 'timeout' => 120, 'httpversion' => '1.1' ) );
- if ( is_wp_error( $response ) )
- wp_die( sprintf( __( 'Warning! Problem updating %1$s. Your server may not be able to connect to sites running on it. Error message: %2$s' ), $siteurl, $response->get_error_message() ) );
- do_action( 'after_mu_upgrade', $response );
- do_action( 'wpmu_upgrade_site', $details[ 'blog_id' ] );
- }
- echo "
";
- ?>
-
-
-
-
-
+wp_redirect( network_admin_url('upgrade.php') );
\ No newline at end of file
diff --git a/wp-admin/ms-users.php b/wp-admin/ms-users.php
index 594406acfb..4fe48a552c 100644
--- a/wp-admin/ms-users.php
+++ b/wp-admin/ms-users.php
@@ -9,370 +9,4 @@
require_once( './admin.php' );
-if ( !is_multisite() )
- wp_die( __( 'Multisite support is not enabled.' ) );
-
-if ( ! current_user_can( 'manage_network_users' ) )
- wp_die( __( 'You do not have permission to access this page.' ) );
-
-$title = __( 'Users' );
-$parent_file = 'ms-admin.php';
-
-add_contextual_help($current_screen,
- '
' . __('This table shows all users across the network and the sites to which they are assigned.') . '
' .
- '
' . __('Hover over any user on the list to make the edit links appear. The Edit link on the left will take you to his or her Edit User profile page; the Edit link on the right by any site name goes to an Edit Site screen for that site.') . '
' .
- '
' . __('You can also go to the user’s profile page by clicking on the individual username.') . '
' .
- '
' . __('You can sort the table by clicking on any of the bold headings and switch between list and excerpt views by using the icons in the upper right.') . '
' .
- '
' . __('The bulk action will permanently delete selected users, or mark/unmark those selected as spam. Spam users will have posts removed and will be unable to sign up again with the same email addresses.') . '
' .
- '
' . __('Add User will add that person to this table and send them an email.') . '
' .
- '
' . __('Users who are signed up to the network without a site are added as subscribers to the main or primary dashboard site, giving them profile pages to manage their accounts. These users will only see Dashboard and My Sites in the main navigation until a site is created for them.') . '
' .
- '
' . __('You can make an existing user an additional super admin by going to the Edit User profile page and checking the box to grant that privilege.') . '
';
+ require_once( 'admin-footer.php' );
+ exit();
+ break;
+
+ case 'spam':
+ $user = new WP_User( $val );
+ if ( in_array( $user->user_login, get_super_admins() ) )
+ wp_die( sprintf( __( 'Warning! User cannot be modified. The user %s is a network administrator.' ), esc_html( $user->user_login ) ) );
+
+ $userfunction = 'all_spam';
+ $blogs = get_blogs_of_user( $val, true );
+ foreach ( (array) $blogs as $key => $details ) {
+ if ( $details->userblog_id != $current_site->blog_id ) // main blog not a spam !
+ update_blog_status( $details->userblog_id, 'spam', '1' );
+ }
+ update_user_status( $val, 'spam', '1', 1 );
+ break;
+
+ case 'notspam':
+ $userfunction = 'all_notspam';
+ $blogs = get_blogs_of_user( $val, true );
+ foreach ( (array) $blogs as $key => $details )
+ update_blog_status( $details->userblog_id, 'spam', '0' );
+
+ update_user_status( $val, 'spam', '0', 1 );
+ break;
+ }
+ }
+ }
+
+ wp_redirect( add_query_arg( array( 'updated' => 'true', 'action' => $userfunction ), wp_get_referer() ) );
+ exit();
+ } else {
+ wp_redirect( admin_url( 'ms-users.php' ) );
+ }
+ break;
+
+ case 'dodelete':
+ check_admin_referer( 'ms-users-delete' );
+ if ( ! current_user_can( 'manage_network_users' ) )
+ wp_die( __( 'You do not have permission to access this page.' ) );
+
+ if ( ! empty( $_POST['blog'] ) && is_array( $_POST['blog'] ) ) {
+ foreach ( $_POST['blog'] as $id => $users ) {
+ foreach ( $users as $blogid => $user_id ) {
+ if ( ! empty( $_POST['delete'] ) && 'reassign' == $_POST['delete'][$blogid][$id] )
+ remove_user_from_blog( $id, $blogid, $user_id );
+ else
+ remove_user_from_blog( $id, $blogid );
+ }
+ }
+ }
+ $i = 0;
+ if ( is_array( $_POST['user'] ) && ! empty( $_POST['user'] ) )
+ foreach( $_POST['user'] as $id ) {
+ wpmu_delete_user( $id );
+ $i++;
+ }
+
+ if ( $i == 1 )
+ $deletefunction = 'delete';
+ else
+ $deletefunction = 'all_delete';
+
+ wp_redirect( add_query_arg( array( 'updated' => 'true', 'action' => $deletefunction ), admin_url( 'ms-users.php' ) ) );
+ break;
+
+ case 'adduser':
+ check_admin_referer( 'add-user', '_wpnonce_add-user' );
+ if ( ! current_user_can( 'manage_network_users' ) )
+ wp_die( __( 'You do not have permission to access this page.' ) );
+
+ if ( is_array( $_POST['user'] ) == false )
+ wp_die( __( 'Cannot create an empty user.' ) );
+ $user = $_POST['user'];
+ if ( empty($user['username']) && empty($user['email']) )
+ wp_die( __( 'Missing username and email.' ) );
+ elseif ( empty($user['username']) )
+ wp_die( __( 'Missing username.' ) );
+ elseif ( empty($user['email']) )
+ wp_die( __( 'Missing email.' ) );
+
+ $password = wp_generate_password();
+ $user_id = wpmu_create_user( esc_html( strtolower( $user['username'] ) ), $password, esc_html( $user['email'] ) );
+
+ if ( false == $user_id )
+ wp_die( __( 'Duplicated username or email address.' ) );
+ else
+ wp_new_user_notification( $user_id, $password );
+
+ if ( get_site_option( 'dashboard_blog' ) == false )
+ add_user_to_blog( $current_site->blog_id, $user_id, get_site_option( 'default_user_role', 'subscriber' ) );
+ else
+ add_user_to_blog( get_site_option( 'dashboard_blog' ), $user_id, get_site_option( 'default_user_role', 'subscriber' ) );
+
+ wp_redirect( add_query_arg( array( 'updated' => 'true', 'action' => 'add' ), wp_get_referer() ) );
+ exit();
+ break;
+
+ default:
+ wp_redirect( admin_url( 'ms-admin.php' ) );
+ break;
+}
+?>
diff --git a/wp-admin/network/index.php b/wp-admin/network/index.php
new file mode 100644
index 0000000000..c2ac6231b6
--- /dev/null
+++ b/wp-admin/network/index.php
@@ -0,0 +1,76 @@
+' . __('Until WordPress 3.0, running multiple sites required using WordPress MU instead of regular WordPress. In version 3.0, these applications have merged. If you are a former MU user, you should be aware of the following changes:') . '
' .
+ '
' . __('Site Admin is now Super Admin (we highly encourage you to get yourself a cape!).') . '
' .
+ '
' . __('Blogs are now called Sites; Site is now called Network.') . '
' .
+ '
' . __('This screen provides the network administrator with links to the screens for Sites and Users to either create a new site or user, or to search existing users and sites. Those screens are also accessible through the left-hand navigation in the Super Admin section.') . '
+
+
diff --git a/wp-admin/network/menu.php b/wp-admin/network/menu.php
new file mode 100644
index 0000000000..62d09b05f9
--- /dev/null
+++ b/wp-admin/network/menu.php
@@ -0,0 +1,23 @@
+
\ No newline at end of file
diff --git a/wp-admin/network/plugins.php b/wp-admin/network/plugins.php
new file mode 100644
index 0000000000..7e04e70399
--- /dev/null
+++ b/wp-admin/network/plugins.php
@@ -0,0 +1,5 @@
+' . __('This screen sets and changes options for the network as a whole. The first site is the main site in the network and network options are pulled from that original site’s options.') . '' .
+ '
' . __('Operational settings has fields for the network’s name and admin email.') . '
' .
+ '
' . __('Dashboard Site is an option to give a site to users who do not have a site on the system. Their default role is Subscriber, but that default can be changed. The Admin Notice Feed can provide a notice on all dashboards of the latest post via RSS or Atom, or provide no such notice if left blank.') . '
' .
+ '
' . __('Registration settings can disable/enable public signups. If you let others sign up for a site, install spam plugins. Spaces, not commas, should separate names banned as sites for this network.') . '
' .
+ '
' . __('New site settings are defaults applied when a new site is created in the network. These include welcome email for when a new site or user account is registered, and what᾿s put in the first post, page, comment, comment author, and comment URL.') . '
' .
+ '
' . __('Upload settings control the size of the uploaded files and the amount of available upload space for each site. You can change the default value for specific sites when you edit a particular site. Allowed file types are also listed (space separated only).') . '
' .
+ '
' . __('Checkboxes for media upload buttons set which are shown in the visual editor. If unchecked, a generic upload button is still visible; other media types can still be uploaded if on the allowed file types list.') . '
' .
+ '
' . __('Menu setting enables/disables the plugin menus from appearing for non super admins, so that only super admins, not site admins, have access to activate plugins.') . '
' .
+ '
' . __('Super admins can no longer be added on the Options screen. You must now go to the list of existing users on Super Admin > Users and click on Username or the Edit action link below that name. This goes to an Edit User page where you can check a box to grant super admin privileges.') . '
+
+
diff --git a/wp-admin/network/sites.php b/wp-admin/network/sites.php
new file mode 100644
index 0000000000..837ecd01c2
--- /dev/null
+++ b/wp-admin/network/sites.php
@@ -0,0 +1,747 @@
+' . __('This extensive list of options has five modules: Site Info, Site Options, allowing Site Themes for this given site, changing user roles and passwords for that site, adding a new user, and Miscellaneous Site Actions (upload size limits).') . '' .
+ '
' . __('Note that some fields in Site Options are grayed out and say Serialized Data. These are stored values in the database which you cannot change from here.') . '
' . __('Add New takes you farther down on this same page. You can search for a site by Name, ID number, or IP address. Screen Options allows you to choose how many sites to display on one page.') . '
' .
+ '
' . __('This is the main table of all sites on this network. Switch between list and excerpt views by using the icons above the right side of the table.') . '
' .
+ '
' . __('Hovering over each site reveals seven options (three for the primary site):') . '
' .
+ '
' . __('an Edit link to a separate Edit Site screen.') . '
' .
+ '
' . __('Backend means the Dashboard for that site.') . '
' .
+ '
' . __('Deactivate, Archive, and Spam which lead to confirmation screens. These actions can be reversed later.') . '
' .
+ '
' . __('Delete which is a permanent action after the confirmations screen.') . '
' .
+ '
' . __('Visit to go to the frontend site live.') . '
' .
+ '
' . __('The site ID is used internally, and is not shown on the front end of the site or to users/viewers.') . '
' .
+ '
' . __('Clicking on bold settings can re-sort this table. The upper right icons switch between list and excerpt views.') . '
' .
+ '
' . __("Clicking on Add Site, after filling out the address, title, and admin's email address, adds the site instantly to the network and this table. You may want to then click on the action link to edit options for that site.") . '
' .
+ '
' . __('If the admin email for the new site does not exist in the database, a new user will also be created.') . '
+
diff --git a/wp-admin/network/themes.php b/wp-admin/network/themes.php
new file mode 100644
index 0000000000..c3de39d79b
--- /dev/null
+++ b/wp-admin/network/themes.php
@@ -0,0 +1,99 @@
+' . __('This screen enables and disables the inclusion of themes available to choose in the Appearance menu for each site. It does not activate or deactivate which theme a site is currently using.') . '' .
+ '
' . __('If the network admin disables a theme that is in use, it can still remain selected on that site. If another theme is chosen, the disabled theme will not appear in the site’s Appearance > Themes screen.') . '
' .
+ '
' . __('Themes can be enabled on a site by site basis by the network admin on the Edit Site screen you go to via the Edit action link on the Sites screen.') . '
+
+
diff --git a/wp-admin/network/upgrade.php b/wp-admin/network/upgrade.php
new file mode 100644
index 0000000000..eb61e91a48
--- /dev/null
+++ b/wp-admin/network/upgrade.php
@@ -0,0 +1,85 @@
+' . __('Only use this screen once you have updated to a new version of WordPress through Dashboard > Updates. Clicking the Update Network button will step through each site in the network, five at a time, and make sure any database upgrades are applied.') . '' .
+ '
' . __('If a version update to core has not happened, clicking this button won’t affect anything.') . '
' .
+ '
' . __('If this process fails for any reason, users logging in to their sites will force the same update.') . '
";
+ $response = wp_remote_get( trailingslashit( $siteurl ) . "wp-admin/upgrade.php?step=upgrade_db", array( 'timeout' => 120, 'httpversion' => '1.1' ) );
+ if ( is_wp_error( $response ) )
+ wp_die( sprintf( __( 'Warning! Problem updating %1$s. Your server may not be able to connect to sites running on it. Error message: %2$s' ), $siteurl, $response->get_error_message() ) );
+ do_action( 'after_mu_upgrade', $response );
+ do_action( 'wpmu_upgrade_site', $details[ 'blog_id' ] );
+ }
+ echo "
";
+ ?>
+
+
+
+
+
diff --git a/wp-admin/network/user-edit.php b/wp-admin/network/user-edit.php
new file mode 100644
index 0000000000..927a716c0b
--- /dev/null
+++ b/wp-admin/network/user-edit.php
@@ -0,0 +1,5 @@
+' . __('This table shows all users across the network and the sites to which they are assigned.') . '' .
+ '
' . __('Hover over any user on the list to make the edit links appear. The Edit link on the left will take you to his or her Edit User profile page; the Edit link on the right by any site name goes to an Edit Site screen for that site.') . '
' .
+ '
' . __('You can also go to the user’s profile page by clicking on the individual username.') . '
' .
+ '
' . __('You can sort the table by clicking on any of the bold headings and switch between list and excerpt views by using the icons in the upper right.') . '
' .
+ '
' . __('The bulk action will permanently delete selected users, or mark/unmark those selected as spam. Spam users will have posts removed and will be unable to sign up again with the same email addresses.') . '
' .
+ '
' . __('Add User will add that person to this table and send them an email.') . '
' .
+ '
' . __('Users who are signed up to the network without a site are added as subscribers to the main or primary dashboard site, giving them profile pages to manage their accounts. These users will only see Dashboard and My Sites in the main navigation until a site is created for them.') . '
' .
+ '
' . __('You can make an existing user an additional super admin by going to the Edit User profile page and checking the box to grant that privilege.') . '