]> scripts.mit.edu Git - autoinstalls/wordpress.git/blob - wp-admin/includes/update.php
WordPress 4.6.3
[autoinstalls/wordpress.git] / wp-admin / includes / update.php
1 <?php
2 /**
3  * WordPress Administration Update API
4  *
5  * @package WordPress
6  * @subpackage Administration
7  */
8
9 /**
10  * Selects the first update version from the update_core option.
11  *
12  * @return object|array|false The response from the API on success, false on failure.
13  */
14 function get_preferred_from_update_core() {
15         $updates = get_core_updates();
16         if ( ! is_array( $updates ) )
17                 return false;
18         if ( empty( $updates ) )
19                 return (object) array( 'response' => 'latest' );
20         return $updates[0];
21 }
22
23 /**
24  * Get available core updates.
25  *
26  * @param array $options Set $options['dismissed'] to true to show dismissed upgrades too,
27  *                           set $options['available'] to false to skip not-dismissed updates.
28  * @return array|false Array of the update objects on success, false on failure.
29  */
30 function get_core_updates( $options = array() ) {
31         $options = array_merge( array( 'available' => true, 'dismissed' => false ), $options );
32         $dismissed = get_site_option( 'dismissed_update_core' );
33
34         if ( ! is_array( $dismissed ) )
35                 $dismissed = array();
36
37         $from_api = get_site_transient( 'update_core' );
38
39         if ( ! isset( $from_api->updates ) || ! is_array( $from_api->updates ) )
40                 return false;
41
42         $updates = $from_api->updates;
43         $result = array();
44         foreach ( $updates as $update ) {
45                 if ( $update->response == 'autoupdate' )
46                         continue;
47
48                 if ( array_key_exists( $update->current . '|' . $update->locale, $dismissed ) ) {
49                         if ( $options['dismissed'] ) {
50                                 $update->dismissed = true;
51                                 $result[] = $update;
52                         }
53                 } else {
54                         if ( $options['available'] ) {
55                                 $update->dismissed = false;
56                                 $result[] = $update;
57                         }
58                 }
59         }
60         return $result;
61 }
62
63 /**
64  * Gets the best available (and enabled) Auto-Update for WordPress Core.
65  *
66  * If there's 1.2.3 and 1.3 on offer, it'll choose 1.3 if the install allows it, else, 1.2.3
67  *
68  * @since 3.7.0
69  *
70  * @return array|false False on failure, otherwise the core update offering.
71  */
72 function find_core_auto_update() {
73         $updates = get_site_transient( 'update_core' );
74         if ( ! $updates || empty( $updates->updates ) )
75                 return false;
76
77         include_once( ABSPATH . 'wp-admin/includes/class-wp-upgrader.php' );
78
79         $auto_update = false;
80         $upgrader = new WP_Automatic_Updater;
81         foreach ( $updates->updates as $update ) {
82                 if ( 'autoupdate' != $update->response )
83                         continue;
84
85                 if ( ! $upgrader->should_update( 'core', $update, ABSPATH ) )
86                         continue;
87
88                 if ( ! $auto_update || version_compare( $update->current, $auto_update->current, '>' ) )
89                         $auto_update = $update;
90         }
91         return $auto_update;
92 }
93
94 /**
95  * Gets and caches the checksums for the given version of WordPress.
96  *
97  * @since 3.7.0
98  *
99  * @param string $version Version string to query.
100  * @param string $locale  Locale to query.
101  * @return bool|array False on failure. An array of checksums on success.
102  */
103 function get_core_checksums( $version, $locale ) {
104         $url = $http_url = 'http://api.wordpress.org/core/checksums/1.0/?' . http_build_query( compact( 'version', 'locale' ), null, '&' );
105
106         if ( $ssl = wp_http_supports( array( 'ssl' ) ) )
107                 $url = set_url_scheme( $url, 'https' );
108
109         $options = array(
110                 'timeout' => ( ( defined('DOING_CRON') && DOING_CRON ) ? 30 : 3 ),
111         );
112
113         $response = wp_remote_get( $url, $options );
114         if ( $ssl && is_wp_error( $response ) ) {
115                 trigger_error( __( 'An unexpected error occurred. Something may be wrong with WordPress.org or this server&#8217;s configuration. If you continue to have problems, please try the <a href="https://wordpress.org/support/">support forums</a>.' ) . ' ' . __( '(WordPress could not establish a secure connection to WordPress.org. Please contact your server administrator.)' ), headers_sent() || WP_DEBUG ? E_USER_WARNING : E_USER_NOTICE );
116                 $response = wp_remote_get( $http_url, $options );
117         }
118
119         if ( is_wp_error( $response ) || 200 != wp_remote_retrieve_response_code( $response ) )
120                 return false;
121
122         $body = trim( wp_remote_retrieve_body( $response ) );
123         $body = json_decode( $body, true );
124
125         if ( ! is_array( $body ) || ! isset( $body['checksums'] ) || ! is_array( $body['checksums'] ) )
126                 return false;
127
128         return $body['checksums'];
129 }
130
131 /**
132  *
133  * @param object $update
134  * @return bool
135  */
136 function dismiss_core_update( $update ) {
137         $dismissed = get_site_option( 'dismissed_update_core' );
138         $dismissed[ $update->current . '|' . $update->locale ] = true;
139         return update_site_option( 'dismissed_update_core', $dismissed );
140 }
141
142 /**
143  *
144  * @param string $version
145  * @param string $locale
146  * @return bool
147  */
148 function undismiss_core_update( $version, $locale ) {
149         $dismissed = get_site_option( 'dismissed_update_core' );
150         $key = $version . '|' . $locale;
151
152         if ( ! isset( $dismissed[$key] ) )
153                 return false;
154
155         unset( $dismissed[$key] );
156         return update_site_option( 'dismissed_update_core', $dismissed );
157 }
158
159 /**
160  *
161  * @param string $version
162  * @param string $locale
163  * @return object|false
164  */
165 function find_core_update( $version, $locale ) {
166         $from_api = get_site_transient( 'update_core' );
167
168         if ( ! isset( $from_api->updates ) || ! is_array( $from_api->updates ) )
169                 return false;
170
171         $updates = $from_api->updates;
172         foreach ( $updates as $update ) {
173                 if ( $update->current == $version && $update->locale == $locale )
174                         return $update;
175         }
176         return false;
177 }
178
179 /**
180  *
181  * @param string $msg
182  * @return string
183  */
184 function core_update_footer( $msg = '' ) {
185         if ( !current_user_can('update_core') )
186                 return sprintf( __( 'Version %s' ), get_bloginfo( 'version', 'display' ) );
187
188         $cur = get_preferred_from_update_core();
189         if ( ! is_object( $cur ) )
190                 $cur = new stdClass;
191
192         if ( ! isset( $cur->current ) )
193                 $cur->current = '';
194
195         if ( ! isset( $cur->url ) )
196                 $cur->url = '';
197
198         if ( ! isset( $cur->response ) )
199                 $cur->response = '';
200
201         switch ( $cur->response ) {
202         case 'development' :
203                 return sprintf( __( 'You are using a development version (%1$s). Cool! Please <a href="%2$s">stay updated</a>.' ), get_bloginfo( 'version', 'display' ), network_admin_url( 'update-core.php' ) );
204
205         case 'upgrade' :
206                 return '<strong><a href="' . network_admin_url( 'update-core.php' ) . '">' . sprintf( __( 'Get Version %s' ), $cur->current ) . '</a></strong>';
207
208         case 'latest' :
209         default :
210                 return sprintf( __( 'Version %s' ), get_bloginfo( 'version', 'display' ) );
211         }
212 }
213
214 /**
215  *
216  * @global string $pagenow
217  * @return false|void
218  */
219 function update_nag() {
220         if ( is_multisite() && !current_user_can('update_core') )
221                 return false;
222
223         global $pagenow;
224
225         if ( 'update-core.php' == $pagenow )
226                 return;
227
228         $cur = get_preferred_from_update_core();
229
230         if ( ! isset( $cur->response ) || $cur->response != 'upgrade' )
231                 return false;
232
233         if ( current_user_can( 'update_core' ) ) {
234                 $msg = sprintf(
235                         /* translators: 1: Codex URL to release notes, 2: new WordPress version, 3: URL to network admin, 4: accessibility text */
236                         __( '<a href="%1$s">WordPress %2$s</a> is available! <a href="%3$s" aria-label="%4$s">Please update now</a>.' ),
237                         sprintf(
238                                 /* translators: %s: WordPress version */
239                                 esc_url( __( 'https://codex.wordpress.org/Version_%s' ) ),
240                                 $cur->current
241                         ),
242                         $cur->current,
243                         network_admin_url( 'update-core.php' ),
244                         esc_attr__( 'Please update WordPress now' )
245                 );
246         } else {
247                 $msg = sprintf(
248                         /* translators: 1: Codex URL to release notes, 2: new WordPress version */
249                         __( '<a href="%1$s">WordPress %2$s</a> is available! Please notify the site administrator.' ),
250                         sprintf(
251                                 /* translators: %s: WordPress version */
252                                 esc_url( __( 'https://codex.wordpress.org/Version_%s' ) ),
253                                 $cur->current
254                         ),
255                         $cur->current
256                 );
257         }
258         echo "<div class='update-nag'>$msg</div>";
259 }
260
261 // Called directly from dashboard
262 function update_right_now_message() {
263         $theme_name = wp_get_theme();
264         if ( current_user_can( 'switch_themes' ) ) {
265                 $theme_name = sprintf( '<a href="themes.php">%1$s</a>', $theme_name );
266         }
267
268         $msg = '';
269
270         if ( current_user_can('update_core') ) {
271                 $cur = get_preferred_from_update_core();
272
273                 if ( isset( $cur->response ) && $cur->response == 'upgrade' )
274                         $msg .= '<a href="' . network_admin_url( 'update-core.php' ) . '" class="button" aria-describedby="wp-version">' . sprintf( __( 'Update to %s' ), $cur->current ? $cur->current : __( 'Latest' ) ) . '</a> ';
275         }
276
277         /* translators: 1: version number, 2: theme name */
278         $content = __( 'WordPress %1$s running %2$s theme.' );
279
280         /**
281          * Filters the text displayed in the 'At a Glance' dashboard widget.
282          *
283          * Prior to 3.8.0, the widget was named 'Right Now'.
284          *
285          * @since 4.4.0
286          *
287          * @param string $content Default text.
288          */
289         $content = apply_filters( 'update_right_now_text', $content );
290
291         $msg .= sprintf( '<span id="wp-version">' . $content . '</span>', get_bloginfo( 'version', 'display' ), $theme_name );
292
293         echo "<p id='wp-version-message'>$msg</p>";
294 }
295
296 /**
297  * @since 2.9.0
298  *
299  * @return array
300  */
301 function get_plugin_updates() {
302         $all_plugins = get_plugins();
303         $upgrade_plugins = array();
304         $current = get_site_transient( 'update_plugins' );
305         foreach ( (array)$all_plugins as $plugin_file => $plugin_data) {
306                 if ( isset( $current->response[ $plugin_file ] ) ) {
307                         $upgrade_plugins[ $plugin_file ] = (object) $plugin_data;
308                         $upgrade_plugins[ $plugin_file ]->update = $current->response[ $plugin_file ];
309                 }
310         }
311
312         return $upgrade_plugins;
313 }
314
315 /**
316  * @since 2.9.0
317  */
318 function wp_plugin_update_rows() {
319         if ( !current_user_can('update_plugins' ) )
320                 return;
321
322         $plugins = get_site_transient( 'update_plugins' );
323         if ( isset($plugins->response) && is_array($plugins->response) ) {
324                 $plugins = array_keys( $plugins->response );
325                 foreach ( $plugins as $plugin_file ) {
326                         add_action( "after_plugin_row_$plugin_file", 'wp_plugin_update_row', 10, 2 );
327                 }
328         }
329 }
330
331 /**
332  * Displays update information for a plugin.
333  *
334  * @param string $file        Plugin basename.
335  * @param array  $plugin_data Plugin information.
336  * @return false|void
337  */
338 function wp_plugin_update_row( $file, $plugin_data ) {
339         $current = get_site_transient( 'update_plugins' );
340         if ( ! isset( $current->response[ $file ] ) ) {
341                 return false;
342         }
343
344         $response = $current->response[ $file ];
345
346         $plugins_allowedtags = array(
347                 'a'       => array( 'href' => array(), 'title' => array() ),
348                 'abbr'    => array( 'title' => array() ),
349                 'acronym' => array( 'title' => array() ),
350                 'code'    => array(),
351                 'em'      => array(),
352                 'strong'  => array(),
353         );
354
355         $plugin_name   = wp_kses( $plugin_data['Name'], $plugins_allowedtags );
356         $details_url   = self_admin_url( 'plugin-install.php?tab=plugin-information&plugin=' . $response->slug . '&section=changelog&TB_iframe=true&width=600&height=800' );
357
358         /** @var WP_Plugins_List_Table $wp_list_table */
359         $wp_list_table = _get_list_table( 'WP_Plugins_List_Table' );
360
361         if ( is_network_admin() || ! is_multisite() ) {
362                 if ( is_network_admin() ) {
363                         $active_class = is_plugin_active_for_network( $file ) ? ' active' : '';
364                 } else {
365                         $active_class = is_plugin_active( $file ) ? ' active' : '';
366                 }
367
368                 echo '<tr class="plugin-update-tr' . $active_class . '" id="' . esc_attr( $response->slug . '-update' ) . '" data-slug="' . esc_attr( $response->slug ) . '" data-plugin="' . esc_attr( $file ) . '"><td colspan="' . esc_attr( $wp_list_table->get_column_count() ) . '" class="plugin-update colspanchange"><div class="update-message notice inline notice-warning notice-alt"><p>';
369
370                 if ( ! current_user_can( 'update_plugins' ) ) {
371                         /* translators: 1: plugin name, 2: details URL, 3: additional link attributes, 4: version number */
372                         printf( __( 'There is a new version of %1$s available. <a href="%2$s" %3$s>View version %4$s details</a>.' ),
373                                 $plugin_name,
374                                 esc_url( $details_url ),
375                                 sprintf( 'class="thickbox open-plugin-details-modal" aria-label="%s"',
376                                         /* translators: 1: plugin name, 2: version number */
377                                         esc_attr( sprintf( __( 'View %1$s version %2$s details' ), $plugin_name, $response->new_version ) )
378                                 ),
379                                 $response->new_version
380                         );
381                 } elseif ( empty( $response->package ) ) {
382                         /* translators: 1: plugin name, 2: details URL, 3: additional link attributes, 4: version number */
383                         printf( __( 'There is a new version of %1$s available. <a href="%2$s" %3$s>View version %4$s details</a>. <em>Automatic update is unavailable for this plugin.</em>' ),
384                                 $plugin_name,
385                                 esc_url( $details_url ),
386                                 sprintf( 'class="thickbox open-plugin-details-modal" aria-label="%s"',
387                                         /* translators: 1: plugin name, 2: version number */
388                                         esc_attr( sprintf( __( 'View %1$s version %2$s details' ), $plugin_name, $response->new_version ) )
389                                 ),
390                                 $response->new_version
391                         );
392                 } else {
393                         /* translators: 1: plugin name, 2: details URL, 3: additional link attributes, 4: version number, 5: update URL, 6: additional link attributes */
394                         printf( __( 'There is a new version of %1$s available. <a href="%2$s" %3$s>View version %4$s details</a> or <a href="%5$s" %6$s>update now</a>.' ),
395                                 $plugin_name,
396                                 esc_url( $details_url ),
397                                 sprintf( 'class="thickbox open-plugin-details-modal" aria-label="%s"',
398                                         /* translators: 1: plugin name, 2: version number */
399                                         esc_attr( sprintf( __( 'View %1$s version %2$s details' ), $plugin_name, $response->new_version ) )
400                                 ),
401                                 $response->new_version,
402                                 wp_nonce_url( self_admin_url( 'update.php?action=upgrade-plugin&plugin=' ) . $file, 'upgrade-plugin_' . $file ),
403                                 sprintf( 'class="update-link" aria-label="%s"',
404                                         /* translators: %s: plugin name */
405                                         esc_attr( sprintf( __( 'Update %s now' ), $plugin_name ) )
406                                 )
407                         );
408                 }
409
410                 /**
411                  * Fires at the end of the update message container in each
412                  * row of the plugins list table.
413                  *
414                  * The dynamic portion of the hook name, `$file`, refers to the path
415                  * of the plugin's primary file relative to the plugins directory.
416                  *
417                  * @since 2.8.0
418                  *
419                  * @param array $plugin_data {
420                  *     An array of plugin metadata.
421                  *
422                  *     @type string $name        The human-readable name of the plugin.
423                  *     @type string $plugin_uri  Plugin URI.
424                  *     @type string $version     Plugin version.
425                  *     @type string $description Plugin description.
426                  *     @type string $author      Plugin author.
427                  *     @type string $author_uri  Plugin author URI.
428                  *     @type string $text_domain Plugin text domain.
429                  *     @type string $domain_path Relative path to the plugin's .mo file(s).
430                  *     @type bool   $network     Whether the plugin can only be activated network wide.
431                  *     @type string $title       The human-readable title of the plugin.
432                  *     @type string $author_name Plugin author's name.
433                  *     @type bool   $update      Whether there's an available update. Default null.
434                  * }
435                  * @param array $response {
436                  *     An array of metadata about the available plugin update.
437                  *
438                  *     @type int    $id          Plugin ID.
439                  *     @type string $slug        Plugin slug.
440                  *     @type string $new_version New plugin version.
441                  *     @type string $url         Plugin URL.
442                  *     @type string $package     Plugin update package URL.
443                  * }
444                  */
445                 do_action( "in_plugin_update_message-{$file}", $plugin_data, $response );
446
447                 echo '</p></div></td></tr>';
448         }
449 }
450
451 /**
452  *
453  * @return array
454  */
455 function get_theme_updates() {
456         $current = get_site_transient('update_themes');
457
458         if ( ! isset( $current->response ) )
459                 return array();
460
461         $update_themes = array();
462         foreach ( $current->response as $stylesheet => $data ) {
463                 $update_themes[ $stylesheet ] = wp_get_theme( $stylesheet );
464                 $update_themes[ $stylesheet ]->update = $data;
465         }
466
467         return $update_themes;
468 }
469
470 /**
471  * @since 3.1.0
472  */
473 function wp_theme_update_rows() {
474         if ( !current_user_can('update_themes' ) )
475                 return;
476
477         $themes = get_site_transient( 'update_themes' );
478         if ( isset($themes->response) && is_array($themes->response) ) {
479                 $themes = array_keys( $themes->response );
480
481                 foreach ( $themes as $theme ) {
482                         add_action( "after_theme_row_$theme", 'wp_theme_update_row', 10, 2 );
483                 }
484         }
485 }
486
487 /**
488  * Displays update information for a theme.
489  *
490  * @param string   $theme_key Theme stylesheet.
491  * @param WP_Theme $theme     Theme object.
492  * @return false|void
493  */
494 function wp_theme_update_row( $theme_key, $theme ) {
495         $current = get_site_transient( 'update_themes' );
496
497         if ( ! isset( $current->response[ $theme_key ] ) ) {
498                 return false;
499         }
500
501         $response = $current->response[ $theme_key ];
502
503         $details_url = add_query_arg( array(
504                 'TB_iframe' => 'true',
505                 'width'     => 1024,
506                 'height'    => 800,
507         ), $current->response[ $theme_key ]['url'] );
508
509         /** @var WP_MS_Themes_List_Table $wp_list_table */
510         $wp_list_table = _get_list_table( 'WP_MS_Themes_List_Table' );
511
512         $active = $theme->is_allowed( 'network' ) ? ' active' : '';
513
514         echo '<tr class="plugin-update-tr' . $active . '" id="' . esc_attr( $theme->get_stylesheet() . '-update' ) . '" data-slug="' . esc_attr( $theme->get_stylesheet() ) . '"><td colspan="' . $wp_list_table->get_column_count() . '" class="plugin-update colspanchange"><div class="update-message notice inline notice-warning notice-alt"><p>';
515         if ( ! current_user_can( 'update_themes' ) ) {
516                 /* translators: 1: theme name, 2: details URL, 3: additional link attributes, 4: version number */
517                 printf( __( 'There is a new version of %1$s available. <a href="%2$s" %3$s>View version %4$s details</a>.'),
518                         $theme['Name'],
519                         esc_url( $details_url ),
520                         sprintf( 'class="thickbox open-plugin-details-modal" aria-label="%s"',
521                                 /* translators: 1: theme name, 2: version number */
522                                 esc_attr( sprintf( __( 'View %1$s version %2$s details' ), $theme['Name'], $response['new_version'] ) )
523                         ),
524                         $response['new_version']
525                 );
526         } elseif ( empty( $response['package'] ) ) {
527                 /* translators: 1: theme name, 2: details URL, 3: additional link attributes, 4: version number */
528                 printf( __( 'There is a new version of %1$s available. <a href="%2$s" %3$s>View version %4$s details</a>. <em>Automatic update is unavailable for this theme.</em>' ),
529                         $theme['Name'],
530                         esc_url( $details_url ),
531                         sprintf( 'class="thickbox open-plugin-details-modal" aria-label="%s"',
532                                 /* translators: 1: theme name, 2: version number */
533                                 esc_attr( sprintf( __( 'View %1$s version %2$s details' ), $theme['Name'], $response['new_version'] ) )
534                         ),
535                         $response['new_version']
536                 );
537         } else {
538                 /* translators: 1: theme name, 2: details URL, 3: additional link attributes, 4: version number, 5: update URL, 6: additional link attributes */
539                 printf( __( 'There is a new version of %1$s available. <a href="%2$s" %3$s>View version %4$s details</a> or <a href="%5$s" %6$s>update now</a>.' ),
540                         $theme['Name'],
541                         esc_url( $details_url ),
542                         sprintf( 'class="thickbox open-plugin-details-modal" aria-label="%s"',
543                                 /* translators: 1: theme name, 2: version number */
544                                 esc_attr( sprintf( __( 'View %1$s version %2$s details' ), $theme['Name'], $response['new_version'] ) )
545                         ),
546                         $response['new_version'],
547                         wp_nonce_url( self_admin_url( 'update.php?action=upgrade-theme&theme=' ) . $theme_key, 'upgrade-theme_' . $theme_key ),
548                         sprintf( 'class="update-link" aria-label="%s"',
549                                 /* translators: %s: theme name */
550                                 esc_attr( sprintf( __( 'Update %s now' ), $theme['Name'] ) )
551                         )
552                 );
553         }
554
555         /**
556          * Fires at the end of the update message container in each
557          * row of the themes list table.
558          *
559          * The dynamic portion of the hook name, `$theme_key`, refers to
560          * the theme slug as found in the WordPress.org themes repository.
561          *
562          * @since 3.1.0
563          *
564          * @param WP_Theme $theme    The WP_Theme object.
565          * @param array    $response {
566          *     An array of metadata about the available theme update.
567          *
568          *     @type string $new_version New theme version.
569          *     @type string $url         Theme URL.
570          *     @type string $package     Theme update package URL.
571          * }
572          */
573         do_action( "in_theme_update_message-{$theme_key}", $theme, $response );
574
575         echo '</p></div></td></tr>';
576 }
577
578 /**
579  *
580  * @global int $upgrading
581  * @return false|void
582  */
583 function maintenance_nag() {
584         include( ABSPATH . WPINC . '/version.php' ); // include an unmodified $wp_version
585         global $upgrading;
586         $nag = isset( $upgrading );
587         if ( ! $nag ) {
588                 $failed = get_site_option( 'auto_core_update_failed' );
589                 /*
590                  * If an update failed critically, we may have copied over version.php but not other files.
591                  * In that case, if the install claims we're running the version we attempted, nag.
592                  * This is serious enough to err on the side of nagging.
593                  *
594                  * If we simply failed to update before we tried to copy any files, then assume things are
595                  * OK if they are now running the latest.
596                  *
597                  * This flag is cleared whenever a successful update occurs using Core_Upgrader.
598                  */
599                 $comparison = ! empty( $failed['critical'] ) ? '>=' : '>';
600                 if ( version_compare( $failed['attempted'], $wp_version, $comparison ) )
601                         $nag = true;
602         }
603
604         if ( ! $nag )
605                 return false;
606
607         if ( current_user_can('update_core') )
608                 $msg = sprintf( __('An automated WordPress update has failed to complete - <a href="%s">please attempt the update again now</a>.'), 'update-core.php' );
609         else
610                 $msg = __('An automated WordPress update has failed to complete! Please notify the site administrator.');
611
612         echo "<div class='update-nag'>$msg</div>";
613 }
614
615 /**
616  * Prints the JavaScript templates for update admin notices.
617  *
618  * Template takes one argument with four values:
619  *
620  *     param {object} data {
621  *         Arguments for admin notice.
622  *
623  *         @type string id        ID of the notice.
624  *         @type string className Class names for the notice.
625  *         @type string message   The notice's message.
626  *         @type string type      The type of update the notice is for. Either 'plugin' or 'theme'.
627  *     }
628  *
629  * @since 4.6.0
630  */
631 function wp_print_admin_notice_templates() {
632         ?>
633         <script id="tmpl-wp-updates-admin-notice" type="text/html">
634                 <div <# if ( data.id ) { #>id="{{ data.id }}"<# } #> class="notice {{ data.className }}"><p>{{{ data.message }}}</p></div>
635         </script>
636         <script id="tmpl-wp-bulk-updates-admin-notice" type="text/html">
637                 <div id="{{ data.id }}" class="{{ data.className }} notice <# if ( data.errors ) { #>notice-error<# } else { #>notice-success<# } #>">
638                         <p>
639                                 <# if ( data.successes ) { #>
640                                         <# if ( 1 === data.successes ) { #>
641                                                 <# if ( 'plugin' === data.type ) { #>
642                                                         <?php
643                                                         /* translators: %s: Number of plugins */
644                                                         printf( __( '%s plugin successfully updated.' ), '{{ data.successes }}' );
645                                                         ?>
646                                                 <# } else { #>
647                                                         <?php
648                                                         /* translators: %s: Number of themes */
649                                                         printf( __( '%s theme successfully updated.' ), '{{ data.successes }}' );
650                                                         ?>
651                                                 <# } #>
652                                         <# } else { #>
653                                                 <# if ( 'plugin' === data.type ) { #>
654                                                         <?php
655                                                         /* translators: %s: Number of plugins */
656                                                         printf( __( '%s plugins successfully updated.' ), '{{ data.successes }}' );
657                                                         ?>
658                                                 <# } else { #>
659                                                         <?php
660                                                         /* translators: %s: Number of themes */
661                                                         printf( __( '%s themes successfully updated.' ), '{{ data.successes }}' );
662                                                         ?>
663                                                 <# } #>
664                                         <# } #>
665                                 <# } #>
666                                 <# if ( data.errors ) { #>
667                                         <button class="button-link bulk-action-errors-collapsed" aria-expanded="false">
668                                                 <# if ( 1 === data.errors ) { #>
669                                                         <?php
670                                                         /* translators: %s: Number of failed updates */
671                                                         printf( __( '%s update failed.' ), '{{ data.errors }}' );
672                                                         ?>
673                                                 <# } else { #>
674                                                         <?php
675                                                         /* translators: %s: Number of failed updates */
676                                                         printf( __( '%s updates failed.' ), '{{ data.errors }}' );
677                                                         ?>
678                                                 <# } #>
679                                                 <span class="screen-reader-text"><?php _e( 'Show more details' ); ?></span>
680                                                 <span class="toggle-indicator" aria-hidden="true"></span>
681                                         </button>
682                                 <# } #>
683                         </p>
684                         <# if ( data.errors ) { #>
685                                 <ul class="bulk-action-errors hidden">
686                                         <# _.each( data.errorMessages, function( errorMessage ) { #>
687                                                 <li>{{ errorMessage }}</li>
688                                         <# } ); #>
689                                 </ul>
690                         <# } #>
691                 </div>
692         </script>
693         <?php
694 }
695
696 /**
697  * Prints the JavaScript templates for update and deletion rows in list tables.
698  *
699  * The update template takes one argument with four values:
700  *
701  *     param {object} data {
702  *         Arguments for the update row
703  *
704  *         @type string slug    Plugin slug.
705  *         @type string plugin  Plugin base name.
706  *         @type string colspan The number of table columns this row spans.
707  *         @type string content The row content.
708  *     }
709  *
710  * The delete template takes one argument with four values:
711  *
712  *     param {object} data {
713  *         Arguments for the update row
714  *
715  *         @type string slug    Plugin slug.
716  *         @type string plugin  Plugin base name.
717  *         @type string name    Plugin name.
718  *         @type string colspan The number of table columns this row spans.
719  *     }
720  *
721  * @since 4.6.0
722  */
723 function wp_print_update_row_templates() {
724         ?>
725         <script id="tmpl-item-update-row" type="text/template">
726                 <tr class="plugin-update-tr update" id="{{ data.slug }}-update" data-slug="{{ data.slug }}" <# if ( data.plugin ) { #>data-plugin="{{ data.plugin }}"<# } #>>
727                         <td colspan="{{ data.colspan }}" class="plugin-update colspanchange">
728                                 {{{ data.content }}}
729                         </td>
730                 </tr>
731         </script>
732         <script id="tmpl-item-deleted-row" type="text/template">
733                 <tr class="plugin-deleted-tr inactive deleted" id="{{ data.slug }}-deleted" data-slug="{{ data.slug }}" <# if ( data.plugin ) { #>data-plugin="{{ data.plugin }}"<# } #>>
734                         <td colspan="{{ data.colspan }}" class="plugin-update colspanchange">
735                                 <# if ( data.plugin ) { #>
736                                         <?php
737                                         printf(
738                                                 /* translators: %s: Plugin name */
739                                                 _x( '%s was successfully deleted.', 'plugin' ),
740                                                 '<strong>{{{ data.name }}}</strong>'
741                                         );
742                                         ?>
743                                 <# } else { #>
744                                         <?php
745                                         printf(
746                                                 /* translators: %s: Theme name */
747                                                 _x( '%s was successfully deleted.', 'theme' ),
748                                                 '<strong>{{{ data.name }}}</strong>'
749                                         );
750                                         ?>
751                                 <# } #>
752                         </td>
753                 </tr>
754         </script>
755         <?php
756 }