]> scripts.mit.edu Git - autoinstalls/wordpress.git/blob - wp-admin/update-core.php
WordPress 3.9.1
[autoinstalls/wordpress.git] / wp-admin / update-core.php
1 <?php
2 /**
3  * Update Core administration panel.
4  *
5  * @package WordPress
6  * @subpackage Administration
7  */
8
9 /** WordPress Administration Bootstrap */
10 require_once( dirname( __FILE__ ) . '/admin.php' );
11
12 wp_enqueue_style( 'plugin-install' );
13 wp_enqueue_script( 'plugin-install' );
14 wp_enqueue_script( 'updates' );
15 add_thickbox();
16
17 if ( is_multisite() && ! is_network_admin() ) {
18         wp_redirect( network_admin_url( 'update-core.php' ) );
19         exit();
20 }
21
22 if ( ! current_user_can( 'update_core' ) && ! current_user_can( 'update_themes' ) && ! current_user_can( 'update_plugins' ) )
23         wp_die( __( 'You do not have sufficient permissions to update this site.' ) );
24
25 function list_core_update( $update ) {
26         global $wp_local_package, $wpdb, $wp_version;
27         static $first_pass = true;
28
29         if ( 'en_US' == $update->locale && 'en_US' == get_locale() )
30                 $version_string = $update->current;
31         // If the only available update is a partial builds, it doesn't need a language-specific version string.
32         elseif ( 'en_US' == $update->locale && $update->packages->partial && $wp_version == $update->partial_version && ( $updates = get_core_updates() ) && 1 == count( $updates ) )
33                 $version_string = $update->current;
34         else
35                 $version_string = sprintf( "%s&ndash;<strong>%s</strong>", $update->current, $update->locale );
36
37         $current = false;
38         if ( !isset($update->response) || 'latest' == $update->response )
39                 $current = true;
40         $submit = __('Update Now');
41         $form_action = 'update-core.php?action=do-core-upgrade';
42         $php_version    = phpversion();
43         $mysql_version  = $wpdb->db_version();
44         $show_buttons = true;
45         if ( 'development' == $update->response ) {
46                 $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:');
47                 $download = __('Download nightly build');
48         } else {
49                 if ( $current ) {
50                         $message = sprintf( __( 'If you need to re-install version %s, you can do so here or download the package and re-install manually:' ), $version_string );
51                         $submit = __('Re-install Now');
52                         $form_action = 'update-core.php?action=do-core-reinstall';
53                 } else {
54                         $php_compat     = version_compare( $php_version, $update->php_version, '>=' );
55                         if ( file_exists( WP_CONTENT_DIR . '/db.php' ) && empty( $wpdb->is_mysql ) )
56                                 $mysql_compat = true;
57                         else
58                                 $mysql_compat = version_compare( $mysql_version, $update->mysql_version, '>=' );
59
60                         if ( !$mysql_compat && !$php_compat )
61                                 $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 );
62                         elseif ( !$php_compat )
63                                 $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 );
64                         elseif ( !$mysql_compat )
65                                 $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 );
66                         else
67                                 $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);
68                         if ( !$mysql_compat || !$php_compat )
69                                 $show_buttons = false;
70                 }
71                 $download = sprintf(__('Download %s'), $version_string);
72         }
73
74         echo '<p>';
75         echo $message;
76         echo '</p>';
77         echo '<form method="post" action="' . $form_action . '" name="upgrade" class="upgrade">';
78         wp_nonce_field('upgrade-core');
79         echo '<p>';
80         echo '<input name="version" value="'. esc_attr($update->current) .'" type="hidden"/>';
81         echo '<input name="locale" value="'. esc_attr($update->locale) .'" type="hidden"/>';
82         if ( $show_buttons ) {
83                 if ( $first_pass ) {
84                         submit_button( $submit, $current ? 'button' : 'primary regular', 'upgrade', false );
85                         $first_pass = false;
86                 } else {
87                         submit_button( $submit, 'button', 'upgrade', false );
88                 }
89                 echo '&nbsp;<a href="' . esc_url( $update->download ) . '" class="button">' . $download . '</a>&nbsp;';
90         }
91         if ( 'en_US' != $update->locale )
92                 if ( !isset( $update->dismissed ) || !$update->dismissed )
93                         submit_button( __('Hide this update'), 'button', 'dismiss', false );
94                 else
95                         submit_button( __('Bring back this update'), 'button', 'undismiss', false );
96         echo '</p>';
97         if ( 'en_US' != $update->locale && ( !isset($wp_local_package) || $wp_local_package != $update->locale ) )
98             echo '<p class="hint">'.__('This localized version contains both the translation and various other localization fixes. You can skip upgrading if you want to keep your current translation.').'</p>';
99         // Partial builds don't need language-specific warnings.
100         elseif ( 'en_US' == $update->locale && get_locale() != 'en_US' && ( ! $update->packages->partial && $wp_version == $update->partial_version ) ) {
101             echo '<p class="hint">'.sprintf( __('You are about to install WordPress %s <strong>in English (US).</strong> There is a chance this update will break your translation. You may prefer to wait for the localized version to be released.'), $update->response != 'development' ? $update->current : '' ).'</p>';
102         }
103         echo '</form>';
104
105 }
106
107 function dismissed_updates() {
108         $dismissed = get_core_updates( array( 'dismissed' => true, 'available' => false ) );
109         if ( $dismissed ) {
110
111                 $show_text = esc_js(__('Show hidden updates'));
112                 $hide_text = esc_js(__('Hide hidden updates'));
113         ?>
114         <script type="text/javascript">
115
116                 jQuery(function($) {
117                         $('dismissed-updates').show();
118                         $('#show-dismissed').toggle(function(){$(this).text('<?php echo $hide_text; ?>');}, function() {$(this).text('<?php echo $show_text; ?>')});
119                         $('#show-dismissed').click(function() { $('#dismissed-updates').toggle('slow');});
120                 });
121         </script>
122         <?php
123                 echo '<p class="hide-if-no-js"><a id="show-dismissed" href="#">'.__('Show hidden updates').'</a></p>';
124                 echo '<ul id="dismissed-updates" class="core-updates dismissed">';
125                 foreach( (array) $dismissed as $update) {
126                         echo '<li>';
127                         list_core_update( $update );
128                         echo '</li>';
129                 }
130                 echo '</ul>';
131         }
132 }
133
134 /**
135  * Display upgrade WordPress for downloading latest or upgrading automatically form.
136  *
137  * @since 2.7.0
138  *
139  * @return null
140  */
141 function core_upgrade_preamble() {
142         global $wp_version, $required_php_version, $required_mysql_version;
143
144         $updates = get_core_updates();
145
146         if ( !isset($updates[0]->response) || 'latest' == $updates[0]->response ) {
147                 echo '<h3>';
148                 _e('You have the latest version of WordPress.');
149
150                 if ( wp_http_supports( array( 'ssl' ) ) ) {
151                         require_once ABSPATH . 'wp-admin/includes/class-wp-upgrader.php';
152                         $upgrader = new WP_Automatic_Updater;
153                         $future_minor_update = (object) array(
154                                 'current'       => $wp_version . '.1.next.minor',
155                                 'version'       => $wp_version . '.1.next.minor',
156                                 'php_version'   => $required_php_version,
157                                 'mysql_version' => $required_mysql_version,
158                         );
159                         $should_auto_update = $upgrader->should_update( 'core', $future_minor_update, ABSPATH );
160                         if ( $should_auto_update )
161                                 echo ' ' . __( 'Future security updates will be applied automatically.' );
162                 }
163                 echo '</h3>';
164         } else {
165                 echo '<div class="updated inline"><p>';
166                 _e('<strong>Important:</strong> before updating, please <a href="http://codex.wordpress.org/WordPress_Backups">back up your database and files</a>. For help with updates, visit the <a href="http://codex.wordpress.org/Updating_WordPress">Updating WordPress</a> Codex page.');
167                 echo '</p></div>';
168
169                 echo '<h3 class="response">';
170                 _e( 'An updated version of WordPress is available.' );
171                 echo '</h3>';
172         }
173
174         if ( isset( $updates[0] ) && $updates[0]->response == 'development' ) {
175                 require_once ABSPATH . 'wp-admin/includes/class-wp-upgrader.php';
176                 $upgrader = new WP_Automatic_Updater;
177                 if ( wp_http_supports( 'ssl' ) && $upgrader->should_update( 'core', $updates[0], ABSPATH ) )
178                         echo '<div class="updated inline"><p><strong>BETA TESTERS:</strong> This site is set up to install updates of future beta versions automatically.</p></div>';
179         }
180
181         echo '<ul class="core-updates">';
182         $alternate = true;
183         foreach( (array) $updates as $update ) {
184                 echo '<li>';
185                 list_core_update( $update );
186                 echo '</li>';
187         }
188         echo '</ul>';
189         // Don't show the maintenance mode notice when we are only showing a single re-install option.
190         if ( $updates && ( count( $updates ) > 1 || $updates[0]->response != 'latest' ) ) {
191                 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>';
192         } elseif ( ! $updates ) {
193                 list( $normalized_version ) = explode( '-', $wp_version );
194                 echo '<p>' . sprintf( __( '<a href="%s">Learn more about WordPress %s</a>.' ), esc_url( self_admin_url( 'about.php' ) ), $normalized_version ) . '</p>';
195         }
196         dismissed_updates();
197 }
198
199 function list_plugin_updates() {
200         global $wp_version;
201
202         $cur_wp_version = preg_replace('/-.*$/', '', $wp_version);
203
204         require_once(ABSPATH . 'wp-admin/includes/plugin-install.php');
205         $plugins = get_plugin_updates();
206         if ( empty( $plugins ) ) {
207                 echo '<h3>' . __( 'Plugins' ) . '</h3>';
208                 echo '<p>' . __( 'Your plugins are all up to date.' ) . '</p>';
209                 return;
210         }
211         $form_action = 'update-core.php?action=do-plugin-upgrade';
212
213         $core_updates = get_core_updates();
214         if ( !isset($core_updates[0]->response) || 'latest' == $core_updates[0]->response || 'development' == $core_updates[0]->response || version_compare( $core_updates[0]->current, $cur_wp_version, '=') )
215                 $core_update_version = false;
216         else
217                 $core_update_version = $core_updates[0]->current;
218         ?>
219 <h3><?php _e( 'Plugins' ); ?></h3>
220 <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>
221 <form method="post" action="<?php echo esc_url( $form_action ); ?>" name="upgrade-plugins" class="upgrade">
222 <?php wp_nonce_field('upgrade-core'); ?>
223 <p><input id="upgrade-plugins" class="button" type="submit" value="<?php esc_attr_e('Update Plugins'); ?>" name="upgrade" /></p>
224 <table class="widefat" id="update-plugins-table">
225         <thead>
226         <tr>
227                 <th scope="col" class="manage-column check-column"><input type="checkbox" id="plugins-select-all" /></th>
228                 <th scope="col" class="manage-column"><label for="plugins-select-all"><?php _e('Select All'); ?></label></th>
229         </tr>
230         </thead>
231
232         <tfoot>
233         <tr>
234                 <th scope="col" class="manage-column check-column"><input type="checkbox" id="plugins-select-all-2" /></th>
235                 <th scope="col" class="manage-column"><label for="plugins-select-all-2"><?php _e('Select All'); ?></label></th>
236         </tr>
237         </tfoot>
238         <tbody class="plugins">
239 <?php
240         foreach ( (array) $plugins as $plugin_file => $plugin_data) {
241                 $info = plugins_api('plugin_information', array('slug' => $plugin_data->update->slug ));
242                 // Get plugin compat for running version of WordPress.
243                 if ( isset($info->tested) && version_compare($info->tested, $cur_wp_version, '>=') ) {
244                         $compat = '<br />' . sprintf(__('Compatibility with WordPress %1$s: 100%% (according to its author)'), $cur_wp_version);
245                 } elseif ( isset($info->compatibility[$cur_wp_version][$plugin_data->update->new_version]) ) {
246                         $compat = $info->compatibility[$cur_wp_version][$plugin_data->update->new_version];
247                         $compat = '<br />' . sprintf(__('Compatibility with WordPress %1$s: %2$d%% (%3$d "works" votes out of %4$d total)'), $cur_wp_version, $compat[0], $compat[2], $compat[1]);
248                 } else {
249                         $compat = '<br />' . sprintf(__('Compatibility with WordPress %1$s: Unknown'), $cur_wp_version);
250                 }
251                 // Get plugin compat for updated version of WordPress.
252                 if ( $core_update_version ) {
253                         if ( isset($info->compatibility[$core_update_version][$plugin_data->update->new_version]) ) {
254                                 $update_compat = $info->compatibility[$core_update_version][$plugin_data->update->new_version];
255                                 $compat .= '<br />' . sprintf(__('Compatibility with WordPress %1$s: %2$d%% (%3$d "works" votes out of %4$d total)'), $core_update_version, $update_compat[0], $update_compat[2], $update_compat[1]);
256                         } else {
257                                 $compat .= '<br />' . sprintf(__('Compatibility with WordPress %1$s: Unknown'), $core_update_version);
258                         }
259                 }
260                 // Get the upgrade notice for the new plugin version.
261                 if ( isset($plugin_data->update->upgrade_notice) ) {
262                         $upgrade_notice = '<br />' . strip_tags($plugin_data->update->upgrade_notice);
263                 } else {
264                         $upgrade_notice = '';
265                 }
266
267                 $details_url = self_admin_url('plugin-install.php?tab=plugin-information&plugin=' . $plugin_data->update->slug . '&section=changelog&TB_iframe=true&width=640&height=662');
268                 $details_text = sprintf(__('View version %1$s details'), $plugin_data->update->new_version);
269                 $details = sprintf('<a href="%1$s" class="thickbox" title="%2$s">%3$s</a>.', esc_url($details_url), esc_attr($plugin_data->Name), $details_text);
270
271                 echo "
272         <tr>
273                 <th scope='row' class='check-column'><input type='checkbox' name='checked[]' value='" . esc_attr($plugin_file) . "' /></th>
274                 <td><p><strong>{$plugin_data->Name}</strong><br />" . sprintf(__('You have version %1$s installed. Update to %2$s.'), $plugin_data->Version, $plugin_data->update->new_version) . ' ' . $details . $compat . $upgrade_notice . "</p></td>
275         </tr>";
276         }
277 ?>
278         </tbody>
279 </table>
280 <p><input id="upgrade-plugins-2" class="button" type="submit" value="<?php esc_attr_e('Update Plugins'); ?>" name="upgrade" /></p>
281 </form>
282 <?php
283 }
284
285 function list_theme_updates() {
286         $themes = get_theme_updates();
287         if ( empty( $themes ) ) {
288                 echo '<h3>' . __( 'Themes' ) . '</h3>';
289                 echo '<p>' . __( 'Your themes are all up to date.' ) . '</p>';
290                 return;
291         }
292
293         $form_action = 'update-core.php?action=do-theme-upgrade';
294
295 ?>
296 <h3><?php _e( 'Themes' ); ?></h3>
297 <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>
298 <p><?php printf( __( '<strong>Please Note:</strong> Any customizations you have made to theme files will be lost. Please consider using <a href="%s">child themes</a> for modifications.' ), __( 'http://codex.wordpress.org/Child_Themes' ) ); ?></p>
299 <form method="post" action="<?php echo esc_url( $form_action ); ?>" name="upgrade-themes" class="upgrade">
300 <?php wp_nonce_field('upgrade-core'); ?>
301 <p><input id="upgrade-themes" class="button" type="submit" value="<?php esc_attr_e('Update Themes'); ?>" name="upgrade" /></p>
302 <table class="widefat" id="update-themes-table">
303         <thead>
304         <tr>
305                 <th scope="col" class="manage-column check-column"><input type="checkbox" id="themes-select-all" /></th>
306                 <th scope="col" class="manage-column"><label for="themes-select-all"><?php _e('Select All'); ?></label></th>
307         </tr>
308         </thead>
309
310         <tfoot>
311         <tr>
312                 <th scope="col" class="manage-column check-column"><input type="checkbox" id="themes-select-all-2" /></th>
313                 <th scope="col" class="manage-column"><label for="themes-select-all-2"><?php _e('Select All'); ?></label></th>
314         </tr>
315         </tfoot>
316         <tbody class="plugins">
317 <?php
318         foreach ( $themes as $stylesheet => $theme ) {
319                 echo "
320         <tr>
321                 <th scope='row' class='check-column'><input type='checkbox' name='checked[]' value='" . esc_attr( $stylesheet ) . "' /></th>
322                 <td class='plugin-title'><img src='" . esc_url( $theme->get_screenshot() ) . "' width='85' height='64' style='float:left; padding: 0 5px 5px' /><strong>" . $theme->display('Name') . '</strong> ' . sprintf( __( 'You have version %1$s installed. Update to %2$s.' ), $theme->display('Version'), $theme->update['new_version'] ) . "</td>
323         </tr>";
324         }
325 ?>
326         </tbody>
327 </table>
328 <p><input id="upgrade-themes-2" class="button" type="submit" value="<?php esc_attr_e('Update Themes'); ?>" name="upgrade" /></p>
329 </form>
330 <?php
331 }
332
333 function list_translation_updates() {
334         $updates = wp_get_translation_updates();
335         if ( ! $updates ) {
336                 if ( 'en_US' != get_locale() ) {
337                         echo '<h3>' . __( 'Translations' ) . '</h3>';
338                         echo '<p>' . __( 'Your translations are all up to date.' ) . '</p>';
339                 }
340                 return;
341         }
342
343         $form_action = 'update-core.php?action=do-translation-upgrade';
344         ?>
345         <h3><?php _e( 'Translations' ); ?></h3>
346         <form method="post" action="<?php echo esc_url( $form_action ); ?>" name="upgrade-themes" class="upgrade">
347                 <p><?php _e( 'Some of your translations are out of date.' ); ?></p>
348                 <?php wp_nonce_field('upgrade-translations'); ?>
349                 <p><input class="button" type="submit" value="<?php esc_attr_e( 'Update Translations' ); ?>" name="upgrade" /></p>
350         </form>
351         <?php
352 }
353
354 /**
355  * Upgrade WordPress core display.
356  *
357  * @since 2.7.0
358  *
359  * @return null
360  */
361 function do_core_upgrade( $reinstall = false ) {
362         global $wp_filesystem;
363
364         include_once ABSPATH . 'wp-admin/includes/class-wp-upgrader.php';
365
366         if ( $reinstall )
367                 $url = 'update-core.php?action=do-core-reinstall';
368         else
369                 $url = 'update-core.php?action=do-core-upgrade';
370         $url = wp_nonce_url($url, 'upgrade-core');
371
372         $version = isset( $_POST['version'] )? $_POST['version'] : false;
373         $locale = isset( $_POST['locale'] )? $_POST['locale'] : 'en_US';
374         $update = find_core_update( $version, $locale );
375         if ( !$update )
376                 return;
377
378 ?>
379         <div class="wrap">
380         <h2><?php _e('Update WordPress'); ?></h2>
381 <?php
382
383         if ( false === ( $credentials = request_filesystem_credentials( $url, '', false, ABSPATH ) ) ) {
384                 echo '</div>';
385                 return;
386         }
387
388         if ( ! WP_Filesystem( $credentials, ABSPATH ) ) {
389                 // Failed to connect, Error and request again
390                 request_filesystem_credentials( $url, '', true, ABSPATH );
391                 echo '</div>';
392                 return;
393         }
394
395         if ( $wp_filesystem->errors->get_error_code() ) {
396                 foreach ( $wp_filesystem->errors->get_error_messages() as $message )
397                         show_message($message);
398                 echo '</div>';
399                 return;
400         }
401
402         if ( $reinstall )
403                 $update->response = 'reinstall';
404
405         add_filter( 'update_feedback', 'show_message' );
406
407         $upgrader = new Core_Upgrader();
408         $result = $upgrader->upgrade( $update );
409
410         if ( is_wp_error($result) ) {
411                 show_message($result);
412                 if ('up_to_date' != $result->get_error_code() )
413                         show_message( __('Installation Failed') );
414                 echo '</div>';
415                 return;
416         }
417
418         show_message( __('WordPress updated successfully') );
419         show_message( '<span class="hide-if-no-js">' . sprintf( __( 'Welcome to WordPress %1$s. You will be redirected to the About WordPress screen. If not, click <a href="%2$s">here</a>.' ), $result, esc_url( self_admin_url( 'about.php?updated' ) ) ) . '</span>' );
420         show_message( '<span class="hide-if-js">' . sprintf( __( 'Welcome to WordPress %1$s. <a href="%2$s">Learn more</a>.' ), $result, esc_url( self_admin_url( 'about.php?updated' ) ) ) . '</span>' );
421         ?>
422         </div>
423         <script type="text/javascript">
424         window.location = '<?php echo self_admin_url( 'about.php?updated' ); ?>';
425         </script>
426         <?php
427 }
428
429 function do_dismiss_core_update() {
430         $version = isset( $_POST['version'] )? $_POST['version'] : false;
431         $locale = isset( $_POST['locale'] )? $_POST['locale'] : 'en_US';
432         $update = find_core_update( $version, $locale );
433         if ( !$update )
434                 return;
435         dismiss_core_update( $update );
436         wp_redirect( wp_nonce_url('update-core.php?action=upgrade-core', 'upgrade-core') );
437         exit;
438 }
439
440 function do_undismiss_core_update() {
441         $version = isset( $_POST['version'] )? $_POST['version'] : false;
442         $locale = isset( $_POST['locale'] )? $_POST['locale'] : 'en_US';
443         $update = find_core_update( $version, $locale );
444         if ( !$update )
445                 return;
446         undismiss_core_update( $version, $locale );
447         wp_redirect( wp_nonce_url('update-core.php?action=upgrade-core', 'upgrade-core') );
448         exit;
449 }
450
451 $action = isset($_GET['action']) ? $_GET['action'] : 'upgrade-core';
452
453 $upgrade_error = false;
454 if ( ( 'do-theme-upgrade' == $action || ( 'do-plugin-upgrade' == $action && ! isset( $_GET['plugins'] ) ) )
455         && ! isset( $_POST['checked'] ) ) {
456         $upgrade_error = $action == 'do-theme-upgrade' ? 'themes' : 'plugins';
457         $action = 'upgrade-core';
458 }
459
460 $title = __('WordPress Updates');
461 $parent_file = 'index.php';
462
463 $updates_overview  = '<p>' . __( 'On this screen, you can update to the latest version of WordPress, as well as update your themes and plugins from the WordPress.org repositories.' ) . '</p>';
464 $updates_overview .= '<p>' . __( 'If an update is available, you&#8127;ll see a notification appear in the Toolbar and navigation menu.' ) . ' ' . __( 'Keeping your site updated is important for security. It also makes the internet a safer place for you and your readers.' ) . '</p>';
465
466 get_current_screen()->add_help_tab( array(
467         'id'      => 'overview',
468         'title'   => __( 'Overview' ),
469         'content' => $updates_overview
470 ) );
471
472 $updates_howto  = '<p>' . __( '<strong>WordPress</strong> &mdash; Updating your WordPress installation is a simple one-click procedure: just <strong>click on the &#8220;Update Now&#8221; button</strong> when you are notified that a new version is available.' ) . ' ' . __( 'In most cases, WordPress will automatically apply maintenance and security updates in the background for you.' ) . '</p>';
473 $updates_howto .= '<p>' . __( '<strong>Themes and Plugins</strong> &mdash; To update individual themes or plugins from this screen, use the checkboxes to make your selection, then <strong>click on the appropriate &#8220;Update&#8221; button</strong>. To update all of your themes or plugins at once, you can check the box at the top of the section to select all before clicking the update button.' ) . '</p>';
474
475 if ( 'en_US' != get_locale() ) {
476         $updates_howto .= '<p>' . __( '<strong>Translations</strong> &mdash; The files translating WordPress into your language are updated for you whenever any other updates occur. But if these files are out of date, you can <strong>click the &#8220;Update Translations&#8221;</strong> button.' ) . '</p>';
477 }
478
479 get_current_screen()->add_help_tab( array(
480         'id'      => 'how-to-update',
481         'title'   => __( 'How to Update' ),
482         'content' => $updates_howto
483 ) );
484
485 get_current_screen()->set_help_sidebar(
486         '<p><strong>' . __('For more information:') . '</strong></p>' .
487         '<p>' . __( '<a href="http://codex.wordpress.org/Dashboard_Updates_Screen" target="_blank">Documentation on Updating WordPress</a>' ) . '</p>' .
488         '<p>' . __( '<a href="https://wordpress.org/support/" target="_blank">Support Forums</a>' ) . '</p>'
489 );
490
491 if ( 'upgrade-core' == $action ) {
492         // Force a update check when requested
493         $force_check = ! empty( $_GET['force-check'] );
494         wp_version_check( array(), $force_check );
495
496         require_once(ABSPATH . 'wp-admin/admin-header.php');
497         ?>
498         <div class="wrap">
499         <h2><?php _e('WordPress Updates'); ?></h2>
500         <?php
501         if ( $upgrade_error ) {
502                 echo '<div class="error"><p>';
503                 if ( $upgrade_error == 'themes' )
504                         _e('Please select one or more themes to update.');
505                 else
506                         _e('Please select one or more plugins to update.');
507                 echo '</p></div>';
508         }
509
510         echo '<p>';
511         /* translators: %1 date, %2 time. */
512         printf( __('Last checked on %1$s at %2$s.'), date_i18n( get_option( 'date_format' ) ), date_i18n( get_option( 'time_format' ) ) );
513         echo ' &nbsp; <a class="button" href="' . esc_url( self_admin_url('update-core.php?force-check=1') ) . '">' . __( 'Check Again' ) . '</a>';
514         echo '</p>';
515
516         if ( $core = current_user_can( 'update_core' ) )
517                 core_upgrade_preamble();
518         if ( $plugins = current_user_can( 'update_plugins' ) )
519                 list_plugin_updates();
520         if ( $themes = current_user_can( 'update_themes' ) )
521                 list_theme_updates();
522         if ( $core || $plugins || $themes )
523                 list_translation_updates();
524         unset( $core, $plugins, $themes );
525         /**
526          * Fires after the core, plugin, and theme update tables.
527          *
528          * @since 2.9.0
529          */
530         do_action( 'core_upgrade_preamble' );
531         echo '</div>';
532         include(ABSPATH . 'wp-admin/admin-footer.php');
533
534 } elseif ( 'do-core-upgrade' == $action || 'do-core-reinstall' == $action ) {
535
536         if ( ! current_user_can( 'update_core' ) )
537                 wp_die( __( 'You do not have sufficient permissions to update this site.' ) );
538
539         check_admin_referer('upgrade-core');
540
541         // do the (un)dismiss actions before headers,
542         // so that they can redirect
543         if ( isset( $_POST['dismiss'] ) )
544                 do_dismiss_core_update();
545         elseif ( isset( $_POST['undismiss'] ) )
546                 do_undismiss_core_update();
547
548         require_once(ABSPATH . 'wp-admin/admin-header.php');
549         if ( 'do-core-reinstall' == $action )
550                 $reinstall = true;
551         else
552                 $reinstall = false;
553
554         if ( isset( $_POST['upgrade'] ) )
555                 do_core_upgrade($reinstall);
556
557         include(ABSPATH . 'wp-admin/admin-footer.php');
558
559 } elseif ( 'do-plugin-upgrade' == $action ) {
560
561         if ( ! current_user_can( 'update_plugins' ) )
562                 wp_die( __( 'You do not have sufficient permissions to update this site.' ) );
563
564         check_admin_referer('upgrade-core');
565
566         if ( isset( $_GET['plugins'] ) ) {
567                 $plugins = explode( ',', $_GET['plugins'] );
568         } elseif ( isset( $_POST['checked'] ) ) {
569                 $plugins = (array) $_POST['checked'];
570         } else {
571                 wp_redirect( admin_url('update-core.php') );
572                 exit;
573         }
574
575         $url = 'update.php?action=update-selected&plugins=' . urlencode(implode(',', $plugins));
576         $url = wp_nonce_url($url, 'bulk-update-plugins');
577
578         $title = __('Update Plugins');
579
580         require_once(ABSPATH . 'wp-admin/admin-header.php');
581         echo '<div class="wrap">';
582         echo '<h2>' . esc_html__('Update Plugins') . '</h2>';
583         echo "<iframe src='$url' style='width: 100%; height: 100%; min-height: 750px;' frameborder='0'></iframe>";
584         echo '</div>';
585         include(ABSPATH . 'wp-admin/admin-footer.php');
586
587 } elseif ( 'do-theme-upgrade' == $action ) {
588
589         if ( ! current_user_can( 'update_themes' ) )
590                 wp_die( __( 'You do not have sufficient permissions to update this site.' ) );
591
592         check_admin_referer('upgrade-core');
593
594         if ( isset( $_GET['themes'] ) ) {
595                 $themes = explode( ',', $_GET['themes'] );
596         } elseif ( isset( $_POST['checked'] ) ) {
597                 $themes = (array) $_POST['checked'];
598         } else {
599                 wp_redirect( admin_url('update-core.php') );
600                 exit;
601         }
602
603         $url = 'update.php?action=update-selected-themes&themes=' . urlencode(implode(',', $themes));
604         $url = wp_nonce_url($url, 'bulk-update-themes');
605
606         $title = __('Update Themes');
607
608         require_once(ABSPATH . 'wp-admin/admin-header.php');
609         echo '<div class="wrap">';
610         echo '<h2>' . esc_html__('Update Themes') . '</h2>';
611         echo "<iframe src='$url' style='width: 100%; height: 100%; min-height: 750px;' frameborder='0'></iframe>";
612         echo '</div>';
613         include(ABSPATH . 'wp-admin/admin-footer.php');
614
615 } elseif ( 'do-translation-upgrade' == $action ) {
616
617         if ( ! current_user_can( 'update_core' ) && ! current_user_can( 'update_plugins' ) && ! current_user_can( 'update_themes' ) )
618                 wp_die( __( 'You do not have sufficient permissions to update this site.' ) );
619
620         check_admin_referer( 'upgrade-translations' );
621
622         require_once( ABSPATH . 'wp-admin/admin-header.php' );
623         include_once( ABSPATH . 'wp-admin/includes/class-wp-upgrader.php' );
624
625         $url = 'update-core.php?action=do-translation-upgrade';
626         $nonce = 'upgrade-translations';
627         $title = __( 'Update Translations' );
628         $context = WP_LANG_DIR;
629
630         $upgrader = new Language_Pack_Upgrader( new Language_Pack_Upgrader_Skin( compact( 'url', 'nonce', 'title', 'context' ) ) );
631         $result = $upgrader->bulk_upgrade();
632
633         require_once( ABSPATH . 'wp-admin/admin-footer.php' );
634
635 } else {
636         /**
637          * Fires for each custom update action on the WordPress Updates screen.
638          *
639          * The dynamic portion of the hook name, $action, refers to the
640          * passed update action. The hook fires in lieu of all available
641          * default update actions.
642          *
643          * @since 3.2.0
644          */
645         do_action( "update-core-custom_{$action}" );
646 }