UI upgrade -> update, see #12517
git-svn-id: https://develop.svn.wordpress.org/trunk@13590 602fd350-edb4-49c9-b593-d223f7449a82
This commit is contained in:
parent
59c1431b30
commit
7f8ea354ac
@ -666,7 +666,7 @@ function site_admin_notice() {
|
|||||||
if ( !is_super_admin() )
|
if ( !is_super_admin() )
|
||||||
return false;
|
return false;
|
||||||
if ( get_site_option( 'wpmu_upgrade_site' ) != $wp_db_version )
|
if ( get_site_option( 'wpmu_upgrade_site' ) != $wp_db_version )
|
||||||
echo "<div id='update-nag'>" . __( 'Thank you for Upgrading! Please visit the <a href="ms-upgrade-network.php">Upgrade Network</a> page to update all your sites.' ) . "</div>";
|
echo "<div id='update-nag'>" . __( 'Thank you for Updating! Please visit the <a href="ms-upgrade-network.php">Update Network</a> page to update all your sites.' ) . "</div>";
|
||||||
}
|
}
|
||||||
add_action( 'admin_notices', 'site_admin_notice' );
|
add_action( 'admin_notices', 'site_admin_notice' );
|
||||||
|
|
||||||
|
@ -34,7 +34,7 @@ if ( is_multisite() && is_super_admin() ) {
|
|||||||
$submenu[ 'ms-admin.php' ][10] = array( __('Users'), 'manage_network_users', 'ms-users.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' ][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' ][25] = array( __('Options'), 'manage_network_options', 'ms-options.php' );
|
||||||
$submenu[ 'ms-admin.php' ][30] = array( __('Upgrade'), 'manage_network', 'ms-upgrade-network.php' );
|
$submenu[ 'ms-admin.php' ][30] = array( __('Update'), 'manage_network', 'ms-upgrade-network.php' );
|
||||||
|
|
||||||
$menu[1] = array( '', 'read', 'separator1', '', 'wp-menu-separator' );
|
$menu[1] = array( '', 'read', 'separator1', '', 'wp-menu-separator' );
|
||||||
|
|
||||||
|
@ -6,7 +6,7 @@ if ( !is_multisite() )
|
|||||||
|
|
||||||
require_once( ABSPATH . WPINC . '/http.php' );
|
require_once( ABSPATH . WPINC . '/http.php' );
|
||||||
|
|
||||||
$title = __('Upgrade Network');
|
$title = __('Update Network');
|
||||||
$parent_file = 'ms-admin.php';
|
$parent_file = 'ms-admin.php';
|
||||||
require_once('admin-header.php');
|
require_once('admin-header.php');
|
||||||
|
|
||||||
@ -15,7 +15,7 @@ if ( ! current_user_can( 'manage_network' ) )
|
|||||||
|
|
||||||
echo '<div class="wrap">';
|
echo '<div class="wrap">';
|
||||||
screen_icon();
|
screen_icon();
|
||||||
echo '<h2>'.__('Upgrade Network').'</h2>';
|
echo '<h2>'.__('Update Network').'</h2>';
|
||||||
|
|
||||||
$action = isset($_GET['action']) ? $_GET['action'] : 'show';
|
$action = isset($_GET['action']) ? $_GET['action'] : 'show';
|
||||||
|
|
||||||
@ -37,7 +37,7 @@ switch ( $action ) {
|
|||||||
echo "<li>$siteurl</li>";
|
echo "<li>$siteurl</li>";
|
||||||
$response = wp_remote_get( trailingslashit( $siteurl ) . "wp-admin/upgrade.php?step=1", array( 'timeout' => 120, 'httpversion' => '1.1' ) );
|
$response = wp_remote_get( trailingslashit( $siteurl ) . "wp-admin/upgrade.php?step=1", array( 'timeout' => 120, 'httpversion' => '1.1' ) );
|
||||||
if ( is_wp_error( $response ) )
|
if ( is_wp_error( $response ) )
|
||||||
wp_die( "<strong>Warning!</strong> Problem upgrading {$siteurl}. Your server may not be able to connect to blogs running on it.<br /> Error message: <em>" . $response->get_error_message() ."</em>" );
|
wp_die( "<strong>Warning!</strong> Problem updating {$siteurl}. Your server may not be able to connect to sites running on it.<br /> Error message: <em>" . $response->get_error_message() ."</em>" );
|
||||||
do_action( 'after_mu_upgrade', $response );
|
do_action( 'after_mu_upgrade', $response );
|
||||||
do_action( 'wpmu_upgrade_site', $details[ 'blog_id' ] );
|
do_action( 'wpmu_upgrade_site', $details[ 'blog_id' ] );
|
||||||
}
|
}
|
||||||
@ -58,8 +58,8 @@ switch ( $action ) {
|
|||||||
break;
|
break;
|
||||||
case 'show':
|
case 'show':
|
||||||
default:
|
default:
|
||||||
?><p><?php _e("You can upgrade all the sites on your network through this page. It works by calling the upgrade script of each site automatically. Hit the link below to upgrade."); ?></p>
|
?><p><?php _e("You can update all the sites on your network through this page. It works by calling the update script of each site automatically. Hit the link below to update."); ?></p>
|
||||||
<p><a class="button" href="ms-upgrade-network.php?action=upgrade"><?php _e("Upgrade Network"); ?></a></p><?php
|
<p><a class="button" href="ms-upgrade-network.php?action=upgrade"><?php _e("Update Network"); ?></a></p><?php
|
||||||
do_action( 'wpmu_upgrade_page' );
|
do_action( 'wpmu_upgrade_page' );
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
|
@ -19,30 +19,30 @@ function list_core_update( $update ) {
|
|||||||
$current = false;
|
$current = false;
|
||||||
if ( !isset($update->response) || 'latest' == $update->response )
|
if ( !isset($update->response) || 'latest' == $update->response )
|
||||||
$current = true;
|
$current = true;
|
||||||
$submit = __('Upgrade Automatically');
|
$submit = __('Update Automatically');
|
||||||
$form_action = 'update-core.php?action=do-core-upgrade';
|
$form_action = 'update-core.php?action=do-core-upgrade';
|
||||||
$php_version = phpversion();
|
$php_version = phpversion();
|
||||||
$mysql_version = $wpdb->db_version();
|
$mysql_version = $wpdb->db_version();
|
||||||
$show_buttons = true;
|
$show_buttons = true;
|
||||||
if ( 'development' == $update->response ) {
|
if ( 'development' == $update->response ) {
|
||||||
$message = __('You are using a development version of WordPress. You can upgrade to the latest nightly build automatically or download the nightly build and install it manually:');
|
$message = __('You are using a development version of WordPress. You can update to the latest nightly build automatically or download the nightly build and install it manually:');
|
||||||
$download = __('Download nightly build');
|
$download = __('Download nightly build');
|
||||||
} else {
|
} else {
|
||||||
if ( $current ) {
|
if ( $current ) {
|
||||||
$message = sprintf(__('You have the latest version of WordPress. You do not need to upgrade. However, if you want to re-install version %s, you can do so automatically or download the package and re-install manually:'), $version_string);
|
$message = sprintf(__('You have the latest version of WordPress. You do not need to update. However, if you want to re-install version %s, you can do so automatically or download the package and re-install manually:'), $version_string);
|
||||||
$submit = __('Re-install Automatically');
|
$submit = __('Re-install Automatically');
|
||||||
$form_action = 'update-core.php?action=do-core-reinstall';
|
$form_action = 'update-core.php?action=do-core-reinstall';
|
||||||
} else {
|
} else {
|
||||||
$php_compat = version_compare( $php_version, $update->php_version, '>=' );
|
$php_compat = version_compare( $php_version, $update->php_version, '>=' );
|
||||||
$mysql_compat = version_compare( $mysql_version, $update->mysql_version, '>=' ) || file_exists( WP_CONTENT_DIR . '/db.php' );
|
$mysql_compat = version_compare( $mysql_version, $update->mysql_version, '>=' ) || file_exists( WP_CONTENT_DIR . '/db.php' );
|
||||||
if ( !$mysql_compat && !$php_compat )
|
if ( !$mysql_compat && !$php_compat )
|
||||||
$message = sprintf( __('You cannot upgrade because <a href="http://codex.wordpress.org/Version_%1$s">WordPress %1$s</a> requires PHP version %2$s or higher and MySQL version %3$s or higher. You are running PHP version %4$s and MySQL version %5$s.'), $update->current, $update->php_version, $update->mysql_version, $php_version, $mysql_version );
|
$message = sprintf( __('You cannot update because <a href="http://codex.wordpress.org/Version_%1$s">WordPress %1$s</a> requires PHP version %2$s or higher and MySQL version %3$s or higher. You are running PHP version %4$s and MySQL version %5$s.'), $update->current, $update->php_version, $update->mysql_version, $php_version, $mysql_version );
|
||||||
elseif ( !$php_compat )
|
elseif ( !$php_compat )
|
||||||
$message = sprintf( __('You cannot upgrade because <a href="http://codex.wordpress.org/Version_%1$s">WordPress %1$s</a> requires PHP version %2$s or higher. You are running version %3$s.'), $update->current, $update->php_version, $php_version );
|
$message = sprintf( __('You cannot update because <a href="http://codex.wordpress.org/Version_%1$s">WordPress %1$s</a> requires PHP version %2$s or higher. You are running version %3$s.'), $update->current, $update->php_version, $php_version );
|
||||||
elseif ( !$mysql_compat )
|
elseif ( !$mysql_compat )
|
||||||
$message = sprintf( __('You cannot upgrade because <a href="http://codex.wordpress.org/Version_%1$s">WordPress %1$s</a> requires MySQL version %2$s or higher. You are running version %3$s.'), $update->current, $update->mysql_version, $mysql_version );
|
$message = sprintf( __('You cannot update because <a href="http://codex.wordpress.org/Version_%1$s">WordPress %1$s</a> requires MySQL version %2$s or higher. You are running version %3$s.'), $update->current, $update->mysql_version, $mysql_version );
|
||||||
else
|
else
|
||||||
$message = sprintf(__('You can upgrade to <a href="http://codex.wordpress.org/Version_%1$s">WordPress %1$s</a> automatically or download the package and install it manually:'), $version_string);
|
$message = sprintf(__('You can update to <a href="http://codex.wordpress.org/Version_%1$s">WordPress %1$s</a> automatically or download the package and install it manually:'), $version_string);
|
||||||
if ( !$mysql_compat || !$php_compat )
|
if ( !$mysql_compat || !$php_compat )
|
||||||
$show_buttons = false;
|
$show_buttons = false;
|
||||||
}
|
}
|
||||||
@ -127,15 +127,15 @@ function core_upgrade_preamble() {
|
|||||||
|
|
||||||
if ( !isset($updates[0]->response) || 'latest' == $updates[0]->response ) {
|
if ( !isset($updates[0]->response) || 'latest' == $updates[0]->response ) {
|
||||||
echo '<h3>';
|
echo '<h3>';
|
||||||
_e('You have the latest version of WordPress. You do not need to upgrade');
|
_e('You have the latest version of WordPress. You do not need to update');
|
||||||
echo '</h3>';
|
echo '</h3>';
|
||||||
} else {
|
} else {
|
||||||
echo '<div class="updated"><p>';
|
echo '<div class="updated"><p>';
|
||||||
_e('<strong>Important:</strong> before upgrading, please <a href="http://codex.wordpress.org/WordPress_Backups">backup your database and files</a>.');
|
_e('<strong>Important:</strong> before updating, please <a href="http://codex.wordpress.org/WordPress_Backups">backup your database and files</a>.');
|
||||||
echo '</p></div>';
|
echo '</p></div>';
|
||||||
|
|
||||||
echo '<h3 class="response">';
|
echo '<h3 class="response">';
|
||||||
_e( 'There is a new version of WordPress available for upgrade' );
|
_e( 'There is a new version of WordPress available for update' );
|
||||||
echo '</h3>';
|
echo '</h3>';
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -175,10 +175,10 @@ function list_plugin_updates() {
|
|||||||
$core_update_version = $core_updates[0]->current;
|
$core_update_version = $core_updates[0]->current;
|
||||||
?>
|
?>
|
||||||
<h3><?php _e('Plugins'); ?></h3>
|
<h3><?php _e('Plugins'); ?></h3>
|
||||||
<p><?php _e('The following plugins have new versions available. Check the ones you want to upgrade and then click "Upgrade Plugins".'); ?></p>
|
<p><?php _e('The following plugins have new versions available. Check the ones you want to update and then click "Update Plugins".'); ?></p>
|
||||||
<form method="post" action="<?php echo $form_action; ?>" name="upgrade-plugins" class="upgrade">
|
<form method="post" action="<?php echo $form_action; ?>" name="upgrade-plugins" class="upgrade">
|
||||||
<?php wp_nonce_field('upgrade-core'); ?>
|
<?php wp_nonce_field('upgrade-core'); ?>
|
||||||
<p><input id="upgrade-plugins" class="button" type="submit" value="<?php esc_attr_e('Upgrade Plugins'); ?>" name="upgrade" /></p>
|
<p><input id="upgrade-plugins" class="button" type="submit" value="<?php esc_attr_e('Update Plugins'); ?>" name="upgrade" /></p>
|
||||||
<table class="widefat" cellspacing="0" id="update-plugins-table">
|
<table class="widefat" cellspacing="0" id="update-plugins-table">
|
||||||
<thead>
|
<thead>
|
||||||
<tr>
|
<tr>
|
||||||
@ -224,13 +224,13 @@ function list_plugin_updates() {
|
|||||||
echo "
|
echo "
|
||||||
<tr class='active'>
|
<tr class='active'>
|
||||||
<th scope='row' class='check-column'><input type='checkbox' name='checked[]' value='" . esc_attr($plugin_file) . "' /></th>
|
<th scope='row' class='check-column'><input type='checkbox' name='checked[]' value='" . esc_attr($plugin_file) . "' /></th>
|
||||||
<td class='plugin-title'><strong>{$plugin_data->Name}</strong>" . sprintf(__('You are running version %1$s. Upgrade to %2$s.'), $plugin_data->Version, $plugin_data->update->new_version) . $compat . $upgrade_notice . "</td>
|
<td class='plugin-title'><strong>{$plugin_data->Name}</strong>" . sprintf(__('You are running version %1$s. Update to %2$s.'), $plugin_data->Version, $plugin_data->update->new_version) . $compat . $upgrade_notice . "</td>
|
||||||
</tr>";
|
</tr>";
|
||||||
}
|
}
|
||||||
?>
|
?>
|
||||||
</tbody>
|
</tbody>
|
||||||
</table>
|
</table>
|
||||||
<p><input id="upgrade-plugins-2" class="button" type="submit" value="<?php esc_attr_e('Upgrade Plugins'); ?>" name="upgrade" /></p>
|
<p><input id="upgrade-plugins-2" class="button" type="submit" value="<?php esc_attr_e('Update Plugins'); ?>" name="upgrade" /></p>
|
||||||
</form>
|
</form>
|
||||||
<?php
|
<?php
|
||||||
}
|
}
|
||||||
@ -302,7 +302,7 @@ function do_core_upgrade( $reinstall = false ) {
|
|||||||
?>
|
?>
|
||||||
<div class="wrap">
|
<div class="wrap">
|
||||||
<?php screen_icon(); ?>
|
<?php screen_icon(); ?>
|
||||||
<h2><?php _e('Upgrade WordPress'); ?></h2>
|
<h2><?php _e('Update WordPress'); ?></h2>
|
||||||
<?php
|
<?php
|
||||||
if ( $wp_filesystem->errors->get_error_code() ) {
|
if ( $wp_filesystem->errors->get_error_code() ) {
|
||||||
foreach ( $wp_filesystem->errors->get_error_messages() as $message )
|
foreach ( $wp_filesystem->errors->get_error_messages() as $message )
|
||||||
@ -321,7 +321,7 @@ function do_core_upgrade( $reinstall = false ) {
|
|||||||
if ('up_to_date' != $result->get_error_code() )
|
if ('up_to_date' != $result->get_error_code() )
|
||||||
show_message( __('Installation Failed') );
|
show_message( __('Installation Failed') );
|
||||||
} else {
|
} else {
|
||||||
show_message( __('WordPress upgraded successfully') );
|
show_message( __('WordPress updated successfully') );
|
||||||
show_message( '<strong>' . __('Actions:') . '</strong> <a href="' . esc_url( admin_url() ) . '">' . __('Go to Dashboard') . '</a>' );
|
show_message( '<strong>' . __('Actions:') . '</strong> <a href="' . esc_url( admin_url() ) . '">' . __('Go to Dashboard') . '</a>' );
|
||||||
}
|
}
|
||||||
echo '</div>';
|
echo '</div>';
|
||||||
|
Loading…
Reference in New Issue
Block a user