]> scripts.mit.edu Git - autoinstalls/wordpress.git/blobdiff - wp-admin/update-core.php
Wordpress 3.0.6
[autoinstalls/wordpress.git] / wp-admin / update-core.php
index 69a9e5c0696238070435478008af87b4f064ced0..81472f23c5d2968db8612ec4c678ed277f364514 100644 (file)
@@ -7,30 +7,44 @@
  */
 
 /** WordPress Administration Bootstrap */
-require_once('admin.php');
+require_once('./admin.php');
 
 if ( ! current_user_can('update_plugins') )
-       wp_die(__('You do not have sufficient permissions to update plugins for this blog.'));
+       wp_die(__('You do not have sufficient permissions to update plugins for this site.'));
 
 function list_core_update( $update ) {
-       global $wp_local_package;
+       global $wp_local_package, $wpdb;
        $version_string = ('en_US' == $update->locale && 'en_US' == get_locale() ) ?
                        $update->current : sprintf("%s&ndash;<strong>%s</strong>", $update->current, $update->locale);
        $current = false;
        if ( !isset($update->response) || 'latest' == $update->response )
                $current = true;
-       $submit = __('Upgrade Automatically');
+       $submit = __('Update Automatically');
        $form_action = 'update-core.php?action=do-core-upgrade';
+       $php_version    = phpversion();
+       $mysql_version  = $wpdb->db_version();
+       $show_buttons = true;
        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');
        } else {
                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');
                        $form_action = 'update-core.php?action=do-core-reinstall';
                } else {
-                       $message =      sprintf(__('You can upgrade to version %s automatically or download the package and install it manually:'), $version_string);
+                       $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' );
+                       if ( !$mysql_compat && !$php_compat )
+                               $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 )
+                               $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 )
+                               $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
+                               $message =      sprintf(__('You can update to <a href="http://codex.wordpress.org/Version_%1$s">WordPress %2$s</a> automatically or download the package and install it manually:'), $update->current, $version_string);
+                       if ( !$mysql_compat || !$php_compat )
+                               $show_buttons = false;
                }
                $download = sprintf(__('Download %s'), $version_string);
        }
@@ -41,10 +55,12 @@ function list_core_update( $update ) {
        echo '<form method="post" action="' . $form_action . '" name="upgrade" class="upgrade">';
        wp_nonce_field('upgrade-core');
        echo '<p>';
-       echo '<input id="upgrade" class="button" type="submit" value="' . esc_attr($submit) . '" name="upgrade" />&nbsp;';
        echo '<input name="version" value="'. esc_attr($update->current) .'" type="hidden"/>';
        echo '<input name="locale" value="'. esc_attr($update->locale) .'" type="hidden"/>';
-       echo '<a href="' . esc_url($update->package) . '" class="button">' . $download . '</a>&nbsp;';
+       if ( $show_buttons ) {
+               echo '<input id="upgrade" class="button" type="submit" value="' . esc_attr($submit) . '" name="upgrade" />&nbsp;';
+               echo '<a href="' . esc_url($update->package) . '" class="button">' . $download . '</a>&nbsp;';
+       }
        if ( 'en_US' != $update->locale )
                if ( !isset( $update->dismissed ) || !$update->dismissed )
                        echo '<input id="dismiss" class="button" type="submit" value="' . esc_attr__('Hide this update') . '" name="dismiss" />';
@@ -100,8 +116,8 @@ function core_upgrade_preamble() {
        $updates = get_core_updates();
 ?>
        <div class="wrap">
-       <?php screen_icon(); ?>
-       <h2><?php _e('Upgrade WordPress'); ?></h2>
+       <?php screen_icon('tools'); ?>
+       <h2><?php _e('WordPress Updates'); ?></h2>
 <?php
        if ( $upgrade_error ) {
                echo '<div class="error"><p>';
@@ -111,15 +127,15 @@ function core_upgrade_preamble() {
 
        if ( !isset($updates[0]->response) || 'latest' == $updates[0]->response ) {
                echo '<h3>';
-               _e('You have the latest version of WordPress. You do not need to upgrade');
+               _e('You have the latest version of WordPress.');
                echo '</h3>';
        } else {
-               echo '<div class="updated fade"><p>';
-               _e('<strong>Important:</strong> before upgrading, please <a href="http://codex.wordpress.org/WordPress_Backups">backup your database and files</a>.');
+               echo '<div class="updated"><p>';
+               _e('<strong>Important:</strong> before updating, please <a href="http://codex.wordpress.org/WordPress_Backups">backup your database and files</a>. For help with updates, visit the <a href="http://codex.wordpress.org/Updating_WordPress">Updating WordPress</a> Codex page.');
                echo '</p></div>';
 
                echo '<h3 class="response">';
-               _e( 'There is a new version of WordPress available for upgrade' );
+               _e( 'An updated version of WordPress is available.' );
                echo '</h3>';
        }
 
@@ -133,10 +149,11 @@ function core_upgrade_preamble() {
                echo '</li>';
        }
        echo '</ul>';
+       echo '<p>' . __( 'While your site is being updated, it will be in maintenance mode. As soon as your updates are complete, your site will return to normal.' ) . '</p>';
        dismissed_updates();
 
        list_plugin_updates();
-       //list_theme_updates();
+       list_theme_updates();
        do_action('core_upgrade_preamble');
        echo '</div>';
 }
@@ -148,8 +165,11 @@ function list_plugin_updates() {
 
        require_once(ABSPATH . 'wp-admin/includes/plugin-install.php');
        $plugins = get_plugin_updates();
-       if ( empty($plugins) )
+       if ( empty( $plugins ) ) {
+               echo '<h3>' . __( 'Plugins' ) . '</h3>';
+               echo '<p>' . __( 'Your plugins are all up to date.' ) . '</p>';
                return;
+       }
        $form_action = 'update-core.php?action=do-plugin-upgrade';
 
        $core_updates = get_core_updates();
@@ -158,23 +178,23 @@ function list_plugin_updates() {
        else
                $core_update_version = $core_updates[0]->current;
        ?>
-<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>
+<h3><?php _e( 'Plugins' ); ?></h3>
+<p><?php _e( 'The following plugins have new versions available. Check the ones you want to update and then click &#8220;Update Plugins&#8221;.' ); ?></p>
 <form method="post" action="<?php echo $form_action; ?>" name="upgrade-plugins" class="upgrade">
 <?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">
        <thead>
        <tr>
-               <th scope="col" class="manage-column check-column"><input type="checkbox" /></th>
-               <th scope="col" class="manage-column"><?php _e('Select All'); ?></th>
+               <th scope="col" class="manage-column check-column"><input type="checkbox" id="plugins-select-all" /></th>
+               <th scope="col" class="manage-column"><label for="plugins-select-all"><?php _e('Select All'); ?></label></th>
        </tr>
        </thead>
 
        <tfoot>
        <tr>
-               <th scope="col" class="manage-column check-column"><input type="checkbox" /></th>
-               <th scope="col" class="manage-column"><?php _e('Select All'); ?></th>
+               <th scope="col" class="manage-column check-column"><input type="checkbox" id="plugins-select-all-2" /></th>
+               <th scope="col" class="manage-column"><label for="plugins-select-all-2"><?php _e('Select All'); ?></label></th>
        </tr>
        </tfoot>
        <tbody class="plugins">
@@ -208,49 +228,64 @@ function list_plugin_updates() {
                echo "
        <tr class='active'>
                <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 have version %1$s installed. Update to %2$s.'), $plugin_data->Version, $plugin_data->update->new_version) . $compat . $upgrade_notice . "</td>
        </tr>";
        }
 ?>
        </tbody>
 </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>
 <?php
 }
 
 function list_theme_updates() {
        $themes = get_theme_updates();
-       if ( empty($themes) )
+       if ( empty( $themes ) ) {
+               echo '<h3>' . __( 'Themes' ) . '</h3>';
+               echo '<p>' . __( 'Your themes are all up to date.' ) . '</p>';
                return;
+       }
+
+       $form_action = 'update-core.php?action=do-theme-upgrade';
+
 ?>
-<h3><?php _e('Themes'); ?></h3>
+<h3><?php _e( 'Themes' ); ?></h3>
+<p><?php _e( 'The following themes have new versions available. Check the ones you want to update and then click &#8220;Update Themes&#8221;.' ); ?></p>
+<p><?php printf( __('<strong>Please Note:</strong> Any customizations you have made to the Themes files will be lost. Please consider using <a href="%s">child themes</a> for modifications.'), _x('http://codex.wordpress.org/Child_Themes', 'Link used in suggestion to use child themes in GUU') ); ?></p>
+<form method="post" action="<?php echo $form_action; ?>" name="upgrade-themes" class="upgrade">
+<?php wp_nonce_field('upgrade-core'); ?>
+<p><input id="upgrade-themes" class="button" type="submit" value="<?php esc_attr_e('Update Themes'); ?>" name="upgrade" /></p>
 <table class="widefat" cellspacing="0" id="update-themes-table">
        <thead>
        <tr>
-               <th scope="col" class="manage-column check-column"><input type="checkbox" /></th>
-               <th scope="col" class="manage-column"><?php _e('Name'); ?></th>
+               <th scope="col" class="manage-column check-column"><input type="checkbox" id="themes-select-all" /></th>
+               <th scope="col" class="manage-column"><label for="themes-select-all"><?php _e('Select All'); ?></label></th>
        </tr>
        </thead>
 
        <tfoot>
        <tr>
-               <th scope="col" class="manage-column check-column"><input type="checkbox" /></th>
-               <th scope="col" class="manage-column"><?php _e('Name'); ?></th>
+               <th scope="col" class="manage-column check-column"><input type="checkbox" id="themes-select-all-2" /></th>
+               <th scope="col" class="manage-column"><label for="themes-select-all-2"><?php _e('Select All'); ?></label></th>
        </tr>
        </tfoot>
        <tbody class="plugins">
 <?php
        foreach ( (array) $themes as $stylesheet => $theme_data) {
+               $screenshot = $theme_data->{'Theme Root URI'} . '/' . $stylesheet . '/' . $theme_data->Screenshot;
+
                echo "
        <tr class='active'>
                <th scope='row' class='check-column'><input type='checkbox' name='checked[]' value='" . esc_attr($stylesheet) . "' /></th>
-               <td class='plugin-title'><strong>{$theme_data->Name}</strong></td>
+               <td class='plugin-title'><img src='$screenshot' width='64' height='64' style='float:left; padding: 5px' /><strong>{$theme_data->Name}</strong>" .  sprintf(__('You have version %1$s installed. Update to %2$s.'), $theme_data->Version, $theme_data->update['new_version']) . "</td>
        </tr>";
        }
 ?>
        </tbody>
 </table>
+<p><input id="upgrade-themes-2" class="button" type="submit" value="<?php esc_attr_e('Update Themes'); ?>" name="upgrade" /></p>
+</form>
 <?php
 }
 
@@ -286,7 +321,7 @@ function do_core_upgrade( $reinstall = false ) {
 ?>
        <div class="wrap">
        <?php screen_icon(); ?>
-       <h2><?php _e('Upgrade WordPress'); ?></h2>
+       <h2><?php _e('Update WordPress'); ?></h2>
 <?php
        if ( $wp_filesystem->errors->get_error_code() ) {
                foreach ( $wp_filesystem->errors->get_error_messages() as $message )
@@ -305,7 +340,8 @@ function do_core_upgrade( $reinstall = false ) {
                if ('up_to_date' != $result->get_error_code() )
                        show_message( __('Installation Failed') );
        } 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>' );
        }
        echo '</div>';
 }
@@ -334,24 +370,6 @@ function no_update_actions($actions) {
        return '';
 }
 
-function do_plugin_upgrade() {
-       include_once ABSPATH . 'wp-admin/includes/class-wp-upgrader.php';
-
-       if ( isset($_GET['plugins']) ) {
-               $plugins = explode(',', $_GET['plugins']);
-       } elseif ( isset($_POST['checked']) ) {
-               $plugins = (array) $_POST['checked'];
-       } else {
-               // Nothing to do.
-               return;
-       }
-       $url = 'update-core.php?action=do-plugin-upgrade&amp;plugins=' . urlencode(join(',', $plugins));
-       $title = __('Upgrade Plugins');
-       $nonce = 'upgrade-core';
-       $upgrader = new Plugin_Upgrader( new Plugin_Upgrader_Skin( compact('title', 'nonce', 'url', 'plugin') ) );
-       $upgrader->bulk_upgrade($plugins);
-}
-
 $action = isset($_GET['action']) ? $_GET['action'] : 'upgrade-core';
 
 $upgrade_error = false;
@@ -360,32 +378,87 @@ if ( 'do-plugin-upgrade' == $action && !isset($_GET['plugins']) && !isset($_POST
        $action = 'upgrade-core';
 }
 
-$title = __('Upgrade WordPress');
+$title = __('WordPress Updates');
 $parent_file = 'tools.php';
 
+add_contextual_help($current_screen,
+       '<p>' . __('This screen lets you update to the latest version of WordPress as well as update your themes and plugins from the WordPress.org repository. When updates are available, the number of available updates will appear in a bubble on the left hand menu as a notification. It is very important to keep your WordPress installation up to date for security reasons, so when you see a number appear, make sure you take the time to update, which is an easy process.') . '</p>' .
+       '<p>' . __('Updating your WordPress installation is a simple one-click procedure; just click on the Update button when it says a new version is available.') . '</p>' .
+       '<p>' . __('To upgrade themes or plugins from this screen, use the checkboxes to make your selection and click on the appropriate Update button. Check the box at the top of the Themes or Plugins section to select all and update them all at once.') . '</p>' .
+       '<p><strong>' . __('For more information:') . '</strong></p>' .
+       '<p>' . __('<a href="http://codex.wordpress.org/Dashboard_Updates_SubPanel" target="_blank">Documentation on Updating WordPress</a>') . '</p>' .
+       '<p>' . __('<a href="http://wordpress.org/support/" target="_blank">Support Forums</a>') . '</p>'
+);
+
 if ( 'upgrade-core' == $action ) {
        wp_version_check();
-       require_once('admin-header.php');
+       require_once('./admin-header.php');
        core_upgrade_preamble();
 } elseif ( 'do-core-upgrade' == $action || 'do-core-reinstall' == $action ) {
        check_admin_referer('upgrade-core');
+
        // do the (un)dismiss actions before headers,
        // so that they can redirect
        if ( isset( $_POST['dismiss'] ) )
                do_dismiss_core_update();
        elseif ( isset( $_POST['undismiss'] ) )
-       do_undismiss_core_update();
-       require_once('admin-header.php');
+               do_undismiss_core_update();
+
+       require_once('./admin-header.php');
        if ( 'do-core-reinstall' == $action )
                $reinstall = true;
        else
                $reinstall = false;
+
        if ( isset( $_POST['upgrade'] ) )
                do_core_upgrade($reinstall);
+
 } elseif ( 'do-plugin-upgrade' == $action ) {
        check_admin_referer('upgrade-core');
-       require_once('admin-header.php');
-       do_plugin_upgrade();
+
+       if ( isset( $_GET['plugins'] ) ) {
+               $plugins = explode( ',', $_GET['plugins'] );
+       } elseif ( isset( $_POST['checked'] ) ) {
+               $plugins = (array) $_POST['checked'];
+       } else {
+               wp_redirect('update-core.php');
+               exit;
+       }
+
+       $url = 'update.php?action=update-selected&plugins=' . urlencode(implode(',', $plugins));
+       $url = wp_nonce_url($url, 'bulk-update-plugins');
+
+       $title = __('Update Plugins');
+
+       require_once('./admin-header.php');
+       echo '<div class="wrap">';
+       screen_icon('plugins');
+       echo '<h2>' . esc_html__('Update Plugins') . '</h2>';
+       echo "<iframe src='$url' style='width: 100%; height: 100%; min-height: 750px;' frameborder='0'></iframe>";
+       echo '</div>';
+} elseif ( 'do-theme-upgrade' == $action ) {
+       check_admin_referer('upgrade-core');
+
+       if ( isset( $_GET['themes'] ) ) {
+               $themes = explode( ',', $_GET['themes'] );
+       } elseif ( isset( $_POST['checked'] ) ) {
+               $themes = (array) $_POST['checked'];
+       } else {
+               wp_redirect('update-core.php');
+               exit;
+       }
+
+       $url = 'update.php?action=update-selected-themes&themes=' . urlencode(implode(',', $themes));
+       $url = wp_nonce_url($url, 'bulk-update-themes');
+
+       $title = __('Update Themes');
+
+       require_once('./admin-header.php');
+       echo '<div class="wrap">';
+       screen_icon('themes');
+       echo '<h2>' . esc_html__('Update Themes') . '</h2>';
+       echo "<iframe src='$url' style='width: 100%; height: 100%; min-height: 750px;' frameborder='0'></iframe>";
+       echo '</div>';
 }
 
-include('admin-footer.php');
+include('./admin-footer.php');