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