Make WordPress Core

Ticket #41191: 41191.5.diff

File 41191.5.diff, 6.0 KB (added by flixos90, 7 years ago)
  • src/wp-admin/css/dashboard.css

     
    11161116        font-size: 16px;
    11171117}
    11181118
     1119/* PHP Nag */
     1120#dashboard_php_nag h2.hndle {
     1121        border-left: 4px solid #dc3232;
     1122}
     1123
     1124#dashboard_php_nag h3 {
     1125        font-weight: 600;
     1126}
     1127
     1128#dashboard_php_nag .notice-upgrade-button-wrap {
     1129        text-align: center;
     1130}
     1131
     1132#dashboard_php_nag .button.button-hero.notice-upgrade-button {
     1133        display: block;
     1134        margin-bottom: 1em;
     1135        text-align: center;
     1136}
     1137
    11191138/* =Media Queries
    11201139-------------------------------------------------------------- */
    11211140
  • src/wp-admin/includes/dashboard.php

     
    3535                }
    3636        }
    3737
     38        // PHP Version
     39        $response = wp_check_php_version();
     40        if ( $response && ! $response['is_acceptable'] && current_user_can( 'upgrade_php' ) ) {
     41                $title = ! $response['is_secure'] ? __( 'Your site could be much faster and more secure!' ) : __( 'Your site could be much faster!' );
     42                wp_add_dashboard_widget( 'dashboard_php_nag', $title, 'wp_dashboard_php_nag' );
     43        }
     44
    3845        // Right Now
    3946        if ( is_blog_admin() && current_user_can( 'edit_posts' ) ) {
    4047                wp_add_dashboard_widget( 'dashboard_right_now', __( 'At a Glance' ), 'wp_dashboard_right_now' );
     
    16001607}
    16011608
    16021609/**
     1610 * Displays the PHP upgrade nag.
     1611 *
     1612 * @since 5.0.0
     1613 */
     1614function wp_dashboard_php_nag() {
     1615        $response = wp_check_php_version();
     1616
     1617        if ( ! $response ) {
     1618                return;
     1619        }
     1620
     1621        $information_url = _x( 'https://wordpress.org/support/upgrade-php/', 'localized PHP upgrade information page' );
     1622
     1623        /**
     1624         * Filters the URL to environment-specific instructions on how to upgrade the PHP version.
     1625         *
     1626         * By default, no such URL is provided.
     1627         *
     1628         * @since 5.0.0
     1629         *
     1630         * @param string $update_url PHP version upgrade URL. Default empty string.
     1631         */
     1632        $update_url = apply_filters( 'php_update_url', '' );
     1633
     1634        $msg = __( 'Hi, it's your friends at WordPress here.' );
     1635        if ( ! $response['is_secure'] ) {
     1636                $msg .= ' ' . __( 'We noticed that your site is running on an insecure version of PHP, which is why we're showing you this notice.' );
     1637        } else {
     1638                $msg .= ' ' . __( 'We noticed that your site is running on an outdated version of PHP, which is why we're showing you this notice.' );
     1639        }
     1640
     1641        ?>
     1642        <p><?php echo $msg; ?></p>
     1643
     1644        <h3><?php _e( 'What is PHP and why should I care?' ); ?></h3>
     1645        <p><?php _e( 'PHP is the programming language that WordPress is built on. Newer versions of PHP are both faster and more secure, so upgrading is better for your site, and better for the people who are building WordPress.' ); ?></p>
     1646        <p><?php _e( 'If you want to know exactly how PHP works and why it is important, continue reading.' ); ?></p>
     1647
     1648        <h3><?php _e( 'Okay, how do I update?' ); ?></h3>
     1649        <p><?php _e( 'The button below will take you to a page with more details on what PHP is, how to upgrade your PHP version, and what to do if it turns out you can&apos;t.' ); ?></p>
     1650        <p class="notice-upgrade-button-wrap">
     1651                <?php if ( ! empty( $update_url ) ) : ?>
     1652                        <a class="notice-upgrade-button button button-primary button-hero" href="<?php echo esc_url( $information_url ); ?>"><?php _e( 'Learn more about upgrading PHP' ); ?></a>
     1653                        <a href="<?php echo esc_url( $update_url ); ?>"><?php _e( 'or upgrade right away' ); ?></a>
     1654                <?php else : ?>
     1655                        <a class="notice-upgrade-button button button-primary button-hero" href="<?php echo esc_url( $information_url ); ?>"><?php _e( 'Show me how to upgrade my PHP' ); ?></a>
     1656                <?php endif; ?>
     1657        </p>
     1658
     1659        <h3><?php _e( 'Thank you for taking the time to read this!' ); ?></h3>
     1660        <p><?php _e( 'If you follow the instructions we&apos;ve provided to the letter, upgrading shouldn&apos;t take more than a few minutes, and it is generally very safe to do.' ); ?></p>
     1661        <p><?php _e( 'Good luck and happy blogging!' ); ?></p>
     1662        <?php
     1663}
     1664
     1665/**
     1666 * Checks if the user needs to upgrade PHP.
     1667 *
     1668 * @since 5.0.0
     1669 *
     1670 * @return array Array of PHP version data.
     1671 */
     1672function wp_check_php_version() {
     1673        $version = phpversion();
     1674        $key     = md5( $version );
     1675
     1676        $response = get_site_transient( 'php_check_' . $key );
     1677        if ( false === $response ) {
     1678                $url = 'http://api.wordpress.org/core/serve-happy/1.0/';
     1679                if ( wp_http_supports( array( 'ssl' ) ) ) {
     1680                        $url = set_url_scheme( $url, 'https' );
     1681                }
     1682
     1683                $url = add_query_arg( 'php_version', $version, $url );
     1684
     1685                $response = wp_remote_get( $url );
     1686
     1687                if ( is_wp_error( $response ) || 200 != wp_remote_retrieve_response_code( $response ) ) {
     1688                        return false;
     1689                }
     1690
     1691                /**
     1692                 * Response should be an array with:
     1693                 *  'recommended_version' - string - The PHP version recommended by WordPress
     1694                 *  'is_supported' - boolean - Whether the PHP version is actively supported
     1695                 *  'is_secure' - boolean - Whether the PHP version receives security updates
     1696                 *  'is_acceptable' - boolean - Whether the PHP version is still acceptable for WordPress
     1697                 */
     1698                $response = json_decode( wp_remote_retrieve_body( $response ), true );
     1699
     1700                if ( ! is_array( $response ) ) {
     1701                        return false;
     1702                }
     1703
     1704                set_site_transient( 'php_check_' . $key, $response, WEEK_IN_SECONDS );
     1705        }
     1706
     1707        return $response;
     1708}
     1709
     1710/**
    16031711 * Empty function usable by plugins to output empty dashboard widget (to be populated later by JS).
    16041712 */
    16051713function wp_dashboard_empty() {}
  • src/wp-includes/capabilities.php

     
    550550                                $caps[] = 'manage_options';
    551551                        }
    552552                        break;
     553                case 'upgrade_php':
     554                        if ( is_multisite() && ! is_super_admin( $user_id ) ) {
     555                                $caps[] = 'do_not_allow';
     556                        } else {
     557                                $caps[] = 'update_core';
     558                        }
     559                        break;
    553560                default:
    554561                        // Handle meta capabilities for custom post types.
    555562                        global $post_type_meta_caps;