55 | | $can_auto_update = wp_http_supports( 'ssl' ); |
| 55 | if ( current_user_can( 'update_core' ) ) { |
| 56 | $future_minor_update = (object) array( |
| 57 | 'current' => $wp_version . '.1.next.minor', |
| 58 | 'version' => $wp_version . '.1.next.minor', |
| 59 | 'php_version' => $required_php_version, |
| 60 | 'mysql_version' => $required_mysql_version, |
| 61 | ); |
| 62 | require_once ABSPATH . 'wp-admin/includes/class-wp-upgrader.php'; |
| 63 | $updater = new WP_Automatic_Updater; |
| 64 | $can_auto_update = wp_http_supports( 'ssl' ) && $updater->should_update( 'core', $future_minor_update, ABSPATH ); |
| 65 | |
57 | | require_once ABSPATH . 'wp-admin/includes/class-wp-upgrader.php'; |
58 | | $upgrader = new WP_Automatic_Updater; |
59 | | $future_minor_update = (object) array( |
60 | | 'current' => $wp_version . '.1.next.minor', |
61 | | 'version' => $wp_version . '.1.next.minor', |
62 | | 'php_version' => $required_php_version, |
63 | | 'mysql_version' => $required_mysql_version, |
64 | | ); |
65 | | $can_auto_update = $upgrader->should_update( 'core', $future_minor_update, ABSPATH ); |
| 67 | echo '<p class="about-auto-update cool">' . __( 'This site <strong>is</strong> able to apply these updates automatically. Cool!' ). '</p>'; |
| 68 | |
| 69 | // If the updater is disabled entirely, don't show them anything. |
| 70 | } elseif ( ! $updater->is_disabled() ) { |
| 71 | echo '<p class="about-auto-update">'; |
| 72 | // If notify_core_update is filtered to false, they won't get emails. |
| 73 | // Assumption: If the user can update core, they can see what the admin email is. |
| 74 | if ( apply_filters( 'notify_core_update', true, $future_minor_update ) ) { |
| 75 | printf( __( 'This site <strong>is not</strong> able to apply these updates automatically. But we’ll email %s when there is a new security release.' ), esc_html( get_site_option( 'admin_email' ) ) ); |
| 76 | } else { |
| 77 | _e( 'This site <strong>is not</strong> able to apply these updates automatically.' ); |
| 78 | } |
| 79 | echo '</p>'; |