Make WordPress Core

Ticket #39165: 39165.12.diff

File 39165.12.diff, 31.3 KB (added by birgire, 7 years ago)
  • src/wp-admin/admin-footer.php

    diff --git src/wp-admin/admin-footer.php src/wp-admin/admin-footer.php
    index 6014d17..bc42ba1 100644
    global $hook_suffix; 
    4343                echo apply_filters( 'admin_footer_text', '<span id="footer-thankyou">' . $text . '</span>' );
    4444                ?>
    4545        </p>
     46    <p id="footer-debug" class="alignright">
     47                <?php
     48                printf(
     49                        '<a href="%s">%s</a>',
     50                        esc_url( admin_url( 'info.php' ) ),
     51                        __( 'Show debug info' )
     52                )
     53                ?>
     54    </p>
    4655        <p id="footer-upgrade" class="alignright">
    4756                <?php
    4857                /**
  • new file src/wp-admin/css/debug.css

    diff --git src/wp-admin/css/debug.css src/wp-admin/css/debug.css
    new file mode 100644
    index 0000000..4832316
    - +  
     1body.info-php tbody td {
     2    width: 80%;
     3}
     4
     5body.info-php tbody td ul,
     6body.info-php tbody td ol {
     7    margin: 0;
     8}
     9
     10body.info-php thead th:first-child,
     11body.info-php tbody td:first-child {
     12    width: 20%;
     13}
     14
     15#wpfooter #footer-debug {
     16    margin-left: 10px;
     17}
  • new file src/wp-admin/info.php

    diff --git src/wp-admin/info.php src/wp-admin/info.php
    new file mode 100644
    index 0000000..e646a78
    - +  
     1<?php
     2/**
     3 * Get system status for debugging and support.
     4 *
     5 * @package WordPress
     6 * @subpackage Administration
     7 */
     8
     9/** WordPress Administration Bootstrap */
     10require_once dirname( __FILE__ ) . '/admin.php';
     11
     12if ( ! current_user_can( 'update_core' ) ) {
     13        wp_die( __( 'Sorry, you do not have permission to access this page.' ) );
     14}
     15
     16global $wpdb;
     17
     18$title = __( 'System information' );
     19
     20require_once ABSPATH . 'wp-admin/admin-header.php';
     21?>
     22
     23        <div class="wrap">
     24                <h1 class="wp-heading-inline">
     25                        <?php echo esc_html( $title ); ?>
     26
     27                        <?php if ( function_exists( 'phpinfo' ) ) { ?>
     28                                <?php if ( ! isset( $_GET['phpinfo'] ) ) { ?>
     29                                        <a href="<?php echo esc_url( admin_url( 'info.php?phpinfo' ) ); ?>" class="page-title-action"><?php esc_html_e( 'PHP Information' ); ?></a>
     30                                <?php } else { ?>
     31                                        <a href="<?php echo esc_url( admin_url( 'info.php' ) ); ?>" class="page-title-action"><?php esc_html_e( 'Debug Information' ); ?></a>
     32                                <?php } ?>
     33                        <?php } ?>
     34                </h1>
     35
     36                <hr class="wp-header-end">
     37
     38                <?php
     39                if ( ! isset( $_GET['phpinfo'] ) ) {
     40
     41                        global $wpdb;
     42
     43                        $upload_dir = wp_upload_dir();
     44                        if ( file_exists( ABSPATH . 'wp-config.php' ) ) {
     45                                $wp_config_path = ABSPATH . 'wp-config.php';
     46                        } elseif ( file_exists( dirname( ABSPATH ) . '/wp-config.php' ) && ! file_exists( dirname( ABSPATH ) . '/wp-settings.php' ) ) {
     47                                $wp_config_path = dirname( ABSPATH ) . '/wp-config.php';
     48                        }
     49
     50                        $info = array(
     51                                'wp-core'             => array(
     52                                        'label'  => __( 'WordPress' ),
     53                                        'fields' => array(
     54                                                array(
     55                                                        'label' => __( 'Version' ),
     56                                                        'value' => get_bloginfo( 'version' ),
     57                                                ),
     58                                                array(
     59                                                        'label' => __( 'Site Language' ),
     60                                                        'value' => get_locale(),
     61                                                ),
     62                                                array(
     63                                                        'label'   => __( 'Home URL' ),
     64                                                        'value'   => get_bloginfo( 'url' ),
     65                                                        'private' => true,
     66                                                ),
     67                                                array(
     68                                                        'label'   => __( 'Site URL' ),
     69                                                        'value'   => get_bloginfo( 'wpurl' ),
     70                                                        'private' => true,
     71                                                ),
     72                                                array(
     73                                                        'label' => __( 'Permalink structure' ),
     74                                                        'value' => get_option( 'permalink_structure' ),
     75                                                ),
     76                                                array(
     77                                                        'label' => __( 'Is this site using HTTPS?' ),
     78                                                        'value' => ( is_ssl() ? __( 'Yes' ) : __( 'No' ) ),
     79                                                ),
     80                                                array(
     81                                                        'label' => __( 'Can anyone register on this site?' ),
     82                                                        'value' => ( get_option( 'users_can_register' ) ? __( 'Yes' ) : __( 'No' ) ),
     83                                                ),
     84                                                array(
     85                                                        'label' => __( 'Default comment status' ),
     86                                                        'value' => get_option( 'default_comment_status' ),
     87                                                ),
     88                                                array(
     89                                                        'label' => __( 'Is this a multisite?' ),
     90                                                        'value' => ( is_multisite() ? __( 'Yes' ) : __( 'No' ) ),
     91                                                ),
     92                                        ),
     93                                ),
     94                                'wp-dropins'          => array(
     95                                        'label'       => __( 'Drop-ins' ),
     96                                        'description' => __( 'Drop-ins are single files that replace or enhance WordPress features in ways that are not possible for traditional plugins' ),
     97                                        'fields'      => array(),
     98                                ),
     99                                'wp-active-theme'     => array(
     100                                        'label'  => __( 'Active Theme' ),
     101                                        'fields' => array(),
     102                                ),
     103                                'wp-themes'           => array(
     104                                        'label'      => __( 'Other themes' ),
     105                                        'show_count' => true,
     106                                        'fields'     => array(),
     107                                ),
     108                                'wp-mu-plugins'       => array(
     109                                        'label'      => __( 'Must Use Plugins' ),
     110                                        'show_count' => true,
     111                                        'fields'     => array(),
     112                                ),
     113                                'wp-plugins-active'   => array(
     114                                        'label'      => __( 'Active Plugins' ),
     115                                        'show_count' => true,
     116                                        'fields'     => array(),
     117                                ),
     118                                'wp-plugins-inactive' => array(
     119                                        'label'      => __( 'Inactive Plugins' ),
     120                                        'show_count' => true,
     121                                        'fields'     => array(),
     122                                ),
     123                                'wp-media'            => array(
     124                                        'label'  => __( 'Media handling' ),
     125                                        'fields' => array(),
     126                                ),
     127                                'wp-server'           => array(
     128                                        'label'       => __( 'Server' ),
     129                                        'description' => __( 'The options shown below relate to your server setup. If changes are required, you may need your web host\'s assistance.' ),
     130                                        'fields'      => array(),
     131                                ),
     132                                'wp-database'         => array(
     133                                        'label'  => __( 'Database' ),
     134                                        'fields' => array(),
     135                                ),
     136                                'wp-constants'        => array(
     137                                        'label'       => __( 'WordPress constants' ),
     138                                        'description' => __( 'These values represent values set in your websites code which affect WordPress in various ways that may be of importance when seeking help with your site.' ),
     139                                        'fields'      => array(
     140                                                array(
     141                                                        'label' => 'ABSPATH',
     142                                                        'value' => ( ! defined( 'ABSPATH' ) ? __( 'Undefined' ) : ABSPATH ),
     143                                                ),
     144                                                array(
     145                                                        'label' => 'WP_HOME',
     146                                                        'value' => ( ! defined( 'WP_HOME' ) ? __( 'Undefined' ) : WP_HOME ),
     147                                                ),
     148                                                array(
     149                                                        'label' => 'WP_SITEURL',
     150                                                        'value' => ( ! defined( 'WP_SITEURL' ) ? __( 'Undefined' ) : WP_SITEURL ),
     151                                                ),
     152                                                array(
     153                                                        'label' => 'WP_DEBUG',
     154                                                        'value' => ( ! defined( 'WP_DEBUG' ) ? __( 'Undefined' ) : ( WP_DEBUG ? __( 'Enabled' ) : __( 'Disabled' ) ) ),
     155                                                ),
     156                                                array(
     157                                                        'label' => 'WP_MAX_MEMORY_LIMIT',
     158                                                        'value' => ( ! defined( 'WP_MAX_MEMORY_LIMIT' ) ? __( 'Undefined' ) : WP_MAX_MEMORY_LIMIT ),
     159                                                ),
     160                                                array(
     161                                                        'label' => 'WP_DEBUG_DISPLAY',
     162                                                        'value' => ( ! defined( 'WP_DEBUG_DISPLAY' ) ? __( 'Undefined' ) : ( WP_DEBUG_DISPLAY ? __( 'Enabled' ) : __( 'Disabled' ) ) ),
     163                                                ),
     164                                                array(
     165                                                        'label' => 'WP_DEBUG_LOG',
     166                                                        'value' => ( ! defined( 'WP_DEBUG_LOG' ) ? __( 'Undefined' ) : ( WP_DEBUG_LOG ? __( 'Enabled' ) : __( 'Disabled' ) ) ),
     167                                                ),
     168                                                array(
     169                                                        'label' => 'SCRIPT_DEBUG',
     170                                                        'value' => ( ! defined( 'SCRIPT_DEBUG' ) ? __( 'Undefined' ) : ( SCRIPT_DEBUG ? __( 'Enabled' ) : __( 'Disabled' ) ) ),
     171                                                ),
     172                                                array(
     173                                                        'label' => 'WP_CACHE',
     174                                                        'value' => ( ! defined( 'WP_CACHE' ) ? __( 'Undefined' ) : ( WP_CACHE ? __( 'Enabled' ) : __( 'Disabled' ) ) ),
     175                                                ),
     176                                                array(
     177                                                        'label' => 'CONCATENATE_SCRIPTS',
     178                                                        'value' => ( ! defined( 'CONCATENATE_SCRIPTS' ) ? __( 'Undefined' ) : ( CONCATENATE_SCRIPTS ? __( 'Enabled' ) : __( 'Disabled' ) ) ),
     179                                                ),
     180                                                array(
     181                                                        'label' => 'COMPRESS_SCRIPTS',
     182                                                        'value' => ( ! defined( 'COMPRESS_SCRIPTS' ) ? __( 'Undefined' ) : ( COMPRESS_SCRIPTS ? __( 'Enabled' ) : __( 'Disabled' ) ) ),
     183                                                ),
     184                                                array(
     185                                                        'label' => 'COMPRESS_CSS',
     186                                                        'value' => ( ! defined( 'COMPRESS_CSS' ) ? __( 'Undefined' ) : ( COMPRESS_CSS ? __( 'Enabled' ) : __( 'Disabled' ) ) ),
     187                                                ),
     188                                                array(
     189                                                        'label' => 'WP_LOCAL_DEV',
     190                                                        'value' => ( ! defined( 'WP_LOCAL_DEV' ) ? __( 'Undefined' ) : ( WP_LOCAL_DEV ? __( 'Enabled' ) : __( 'Disabled' ) ) ),
     191                                                ),
     192                                        ),
     193                                ),
     194                                'wp-filesystem'       => array(
     195                                        'label'       => __( 'Filesystem permissions' ),
     196                                        'description' => __( 'The status of various locations WordPress needs to write files in various scenarios.' ),
     197                                        'fields'      => array(
     198                                                array(
     199                                                        'label' => __( 'The main WordPress directory' ),
     200                                                        'value' => ( wp_is_writable( ABSPATH ) ? __( 'Writable' ) : __( 'Not writable' ) ),
     201                                                ),
     202                                                array(
     203                                                        'label' => __( 'The wp-content directory' ),
     204                                                        'value' => ( wp_is_writable( WP_CONTENT_DIR ) ? __( 'Writable' ) : __( 'Not writable' ) ),
     205                                                ),
     206                                                array(
     207                                                        'label' => __( 'The uploads directory' ),
     208                                                        'value' => ( wp_is_writable( $upload_dir['basedir'] ) ? __( 'Writable' ) : __( 'Not writable' ) ),
     209                                                ),
     210                                                array(
     211                                                        'label' => __( 'The plugins directory' ),
     212                                                        'value' => ( wp_is_writable( WP_PLUGIN_DIR ) ? __( 'Writable' ) : __( 'Not writable' ) ),
     213                                                ),
     214                                                array(
     215                                                        'label' => __( 'The themes directory' ),
     216                                                        'value' => ( wp_is_writable( get_template_directory() . '/..' ) ? __( 'Writable' ) : __( 'Not writable' ) ),
     217                                                ),
     218                                        ),
     219                                ),
     220                        );
     221
     222                        if ( is_multisite() ) {
     223                                $network_query = new WP_Network_Query();
     224                                $network_ids   = $network_query->query( array(
     225                                        'fields'        => 'ids',
     226                                        'number'        => 100,
     227                                        'no_found_rows' => false,
     228                                ) );
     229
     230                                $site_count = 0;
     231                                foreach ( $network_ids as $network_id ) {
     232                                        $site_count += get_blog_count( $network_id );
     233                                }
     234
     235                                $info['wp-core']['fields'][] = array(
     236                                        'label' => __( 'User Count' ),
     237                                        'value' => get_user_count(),
     238                                );
     239                                $info['wp-core']['fields'][] = array(
     240                                        'label' => __( 'Site Count' ),
     241                                        'value' => $site_count,
     242                                );
     243                                $info['wp-core']['fields'][] = array(
     244                                        'label' => __( 'Network Count' ),
     245                                        'value' => $network_query->found_networks,
     246                                );
     247                        } else {
     248                                $user_count = count_users();
     249
     250                                $info['wp-core']['fields'][] = array(
     251                                        'label' => __( 'User Count' ),
     252                                        'value' => $user_count['total_users'],
     253                                );
     254                        }
     255
     256                        // WordPress features requiring processing.
     257                        $wp_dotorg = wp_remote_get( 'https://wordpress.org', array( 'timeout' => 10 ) );
     258                        if ( ! is_wp_error( $wp_dotorg ) ) {
     259                                $info['wp-core']['fields'][] = array(
     260                                        'label' => __( 'Communication with WordPress.org' ),
     261                                        'value' => sprintf(
     262                                                __( 'WordPress.org is reachable' )
     263                                        ),
     264                                );
     265                        } else {
     266                                $info['wp-core']['fields'][] = array(
     267                                        'label' => __( 'Communication with WordPress.org' ),
     268                                        'value' => sprintf(
     269                                                // translators: %1$s: The IP address WordPress.org resolves to. %2$s: The error returned by the lookup.
     270                                                __( 'Unable to reach WordPress.org at %1$s: %2$s' ),
     271                                                gethostbyname( 'wordpress.org' ),
     272                                                $wp_dotorg->get_error_message()
     273                                        ),
     274                                );
     275                        }
     276
     277                        // Get drop-ins.
     278                        $dropins            = get_dropins();
     279                        $dropin_description = _get_dropins();
     280                        foreach ( $dropins as $dropin_key => $dropin ) {
     281                                $info['wp-dropins']['fields'][] = array(
     282                                        'label' => $dropin_key,
     283                                        'value' => $dropin_description[ $dropin_key ][0],
     284                                );
     285                        }
     286
     287                        // Populate the media fields.
     288                        $info['wp-media']['fields'][] = array(
     289                                'label' => __( 'Active editor' ),
     290                                'value' => _wp_image_editor_choose(),
     291                        );
     292
     293                        // Get ImageMagic information, if available.
     294                        if ( class_exists( 'Imagick' ) ) {
     295                                // Save the Imagick instance for later use.
     296                                $imagick         = new Imagick();
     297                                $imagick_version = $imagick->getVersion();
     298                        } else {
     299                                $imagick_version = 'Imagick not available';
     300                        }
     301                        $info['wp-media']['fields'][] = array(
     302                                'label' => __( 'Imagick Module Version' ),
     303                                'value' => ( is_array( $imagick_version ) ? $imagick_version['versionNumber'] : $imagick_version ),
     304                        );
     305                        $info['wp-media']['fields'][] = array(
     306                                'label' => __( 'ImageMagick Version' ),
     307                                'value' => ( is_array( $imagick_version ) ? $imagick_version['versionString'] : $imagick_version ),
     308                        );
     309
     310                        // Get GD information, if available.
     311                        if ( function_exists( 'gd_info' ) ) {
     312                                $gd = gd_info();
     313                        } else {
     314                                $gd = false;
     315                        }
     316                        $info['wp-media']['fields'][] = array(
     317                                'label' => __( 'GD Version' ),
     318                                'value' => ( is_array( $gd ) ? $gd['GD Version'] : 'GD not available' ),
     319                        );
     320
     321                        // Get Ghostscript information, if available.
     322                        if ( function_exists( 'exec' ) ) {
     323                                $gs = exec( 'gs --version' );
     324                                $gs = ( ! empty( $gs ) ? $gs : 'Not available' );
     325                        } else {
     326                                $gs = __( 'Unable to determine if Ghostscript is installed' );
     327                        }
     328                        $info['wp-media']['fields'][] = array(
     329                                'label' => __( 'Ghostscript Version' ),
     330                                'value' => $gs,
     331                        );
     332
     333                        // Populate the server debug fields.
     334                        $info['wp-server']['fields'][] = array(
     335                                'label' => __( 'Server architecture' ),
     336                                'value' => ( ! function_exists( 'php_uname' ) ? __( 'Unable to determine server architecture' ) : sprintf( '%s %s %s', php_uname( 's' ), php_uname( 'r' ), php_uname( 'm' ) ) ),
     337                        );
     338                        $info['wp-server']['fields'][] = array(
     339                                'label' => __( 'PHP Version' ),
     340                                'value' => ( ! function_exists( 'phpversion' ) ? __( 'Unable to determine PHP version' ) : sprintf(
     341                                        '%s %s',
     342                                        phpversion(),
     343                                        ( 64 === PHP_INT_SIZE * 8 ? __( '(Supports 64bit values)' ) : '' )
     344                                )
     345                                ),
     346                        );
     347                        $info['wp-server']['fields'][] = array(
     348                                'label' => __( 'PHP SAPI' ),
     349                                'value' => ( ! function_exists( 'php_sapi_name' ) ? __( 'Unable to determine PHP SAPI' ) : php_sapi_name() ),
     350                        );
     351
     352                        if ( ! function_exists( 'ini_get' ) ) {
     353                                $info['wp-server']['fields'][] = array(
     354                                        'label' => __( 'Server settings' ),
     355                                        'value' => __( 'Unable to determine some settings as the ini_get() function has been disabled' ),
     356                                );
     357                        } else {
     358                                $info['wp-server']['fields'][] = array(
     359                                        'label' => __( 'PHP max input variables' ),
     360                                        'value' => ini_get( 'max_input_vars' ),
     361                                );
     362                                $info['wp-server']['fields'][] = array(
     363                                        'label' => __( 'PHP time limit' ),
     364                                        'value' => ini_get( 'max_execution_time' ),
     365                                );
     366                                $info['wp-server']['fields'][] = array(
     367                                        'label' => __( 'PHP memory limit' ),
     368                                        'value' => ini_get( 'memory_limit' ),
     369                                );
     370                                $info['wp-server']['fields'][] = array(
     371                                        'label' => __( 'Max input time' ),
     372                                        'value' => ini_get( 'max_input_time' ),
     373                                );
     374                                $info['wp-server']['fields'][] = array(
     375                                        'label' => __( 'Upload max filesize' ),
     376                                        'value' => ini_get( 'upload_max_filesize' ),
     377                                );
     378                                $info['wp-server']['fields'][] = array(
     379                                        'label' => __( 'PHP post max size' ),
     380                                        'value' => ini_get( 'post_max_size' ),
     381                                );
     382                        }
     383
     384                        if ( function_exists( 'curl_version' ) ) {
     385                                $curl                          = curl_version();
     386                                $info['wp-server']['fields'][] = array(
     387                                        'label' => __( 'cURL Version' ),
     388                                        'value' => sprintf( '%s %s', $curl['version'], $curl['ssl_version'] ),
     389                                );
     390                        } else {
     391                                $info['wp-server']['fields'][] = array(
     392                                        'label' => __( 'cURL Version' ),
     393                                        'value' => __( 'Your server does not support cURL' ),
     394                                );
     395                        }
     396
     397                        $info['wp-server']['fields'][] = array(
     398                                'label' => __( 'SUHOSIN installed' ),
     399                                'value' => ( ( extension_loaded( 'suhosin' ) || ( defined( 'SUHOSIN_PATCH' ) && constant( 'SUHOSIN_PATCH' ) ) ) ? __( 'Yes' ) : __( 'No' ) ),
     400                        );
     401
     402                        $info['wp-server']['fields'][] = array(
     403                                'label' => __( 'Is the Imagick library available' ),
     404                                'value' => ( extension_loaded( 'imagick' ) ? __( 'Yes' ) : __( 'No' ) ),
     405                        );
     406
     407                        // Populate the database debug fields.
     408                        if ( is_resource( $wpdb->dbh ) ) {
     409                                // Old mysql extension.
     410                                $extension = 'mysql';
     411                        } elseif ( is_object( $wpdb->dbh ) ) {
     412                                // mysqli or PDO.
     413                                $extension = get_class( $wpdb->dbh );
     414                        } else {
     415                                // Unknown sql extension.
     416                                $extension = null;
     417                        }
     418
     419                        if ( method_exists( $wpdb, 'db_version' ) ) {
     420                                if ( $wpdb->use_mysqli ) {
     421                                        $server = mysqli_get_server_info( $wpdb->dbh );
     422                                } else {
     423                                        $server = mysql_get_server_info( $wpdb->dbh );
     424                                }
     425                        } else {
     426                                $server = null;
     427                        }
     428
     429                        if ( isset( $wpdb->use_mysqli ) && $wpdb->use_mysqli ) {
     430                                $client_version = $wpdb->dbh->client_info;
     431                        } else {
     432                                if ( preg_match( '|[0-9]{1,2}\.[0-9]{1,2}\.[0-9]{1,2}|', mysql_get_client_info(), $matches ) ) {
     433                                        $client_version = $matches[0];
     434                                } else {
     435                                        $client_version = null;
     436                                }
     437                        }
     438
     439                        $info['wp-database']['fields'][] = array(
     440                                'label' => __( 'Extension' ),
     441                                'value' => $extension,
     442                        );
     443                        $info['wp-database']['fields'][] = array(
     444                                'label' => __( 'Server version' ),
     445                                'value' => $server,
     446                        );
     447                        $info['wp-database']['fields'][] = array(
     448                                'label' => __( 'Client version' ),
     449                                'value' => $client_version,
     450                        );
     451                        $info['wp-database']['fields'][] = array(
     452                                'label'   => __( 'Database user' ),
     453                                'value'   => $wpdb->dbuser,
     454                                'private' => true,
     455                        );
     456                        $info['wp-database']['fields'][] = array(
     457                                'label'   => __( 'Database host' ),
     458                                'value'   => $wpdb->dbhost,
     459                                'private' => true,
     460                        );
     461                        $info['wp-database']['fields'][] = array(
     462                                'label'   => __( 'Database name' ),
     463                                'value'   => $wpdb->dbname,
     464                                'private' => true,
     465                        );
     466                        $info['wp-database']['fields'][] = array(
     467                                'label' => __( 'Database prefix' ),
     468                                'value' => $wpdb->prefix,
     469                        );
     470
     471
     472                        // List must use plugins if there are any.
     473                        $mu_plugins = get_mu_plugins();
     474
     475                        foreach ( $mu_plugins as $plugin_path => $plugin ) {
     476                                $plugin_version = $plugin['Version'];
     477                                $plugin_author  = $plugin['Author'];
     478
     479                                $plugin_version_string = __( 'No version or author information available' );
     480
     481                                if ( ! empty( $plugin_version ) && ! empty( $plugin_author ) ) {
     482                                        // translators: %1$s: Plugin version number. %2$s: Plugin author name.
     483                                        $plugin_version_string = sprintf( __( 'Version %1$s by %2$s' ), $plugin_version, $plugin_author );
     484                                }
     485                                if ( empty( $plugin_version ) && ! empty( $plugin_author ) ) {
     486                                        // translators: %s: Plugin author name.
     487                                        $plugin_version_string = sprintf( __( 'By %s' ), $plugin_author );
     488                                }
     489                                if ( ! empty( $plugin_version ) && empty( $plugin_author ) ) {
     490                                        // translators: %s: Plugin version number.
     491                                        $plugin_version_string = sprintf( __( 'Version %s' ), $plugin_version );
     492                                }
     493
     494                                $info['wp-mu-plugins']['fields'][] = array(
     495                                        'label' => $plugin['Name'],
     496                                        'value' => $plugin_version_string,
     497                                );
     498                        }
     499
     500                        // List all available plugins.
     501                        $plugins = get_plugins();
     502
     503                        foreach ( $plugins as $plugin_path => $plugin ) {
     504                                $plugin_part = ( is_plugin_active( $plugin_path ) ) ? 'wp-plugins-active' : 'wp-plugins-inactive';
     505
     506                                $plugin_version = $plugin['Version'];
     507                                $plugin_author  = $plugin['Author'];
     508
     509                                $plugin_version_string = __( 'No version or author information available' );
     510
     511                                if ( ! empty( $plugin_version ) && ! empty( $plugin_author ) ) {
     512                                        // translators: %1$s: Plugin version number. %2$s: Plugin author name.
     513                                        $plugin_version_string = sprintf( __( 'Version %1$s by %2$s' ), $plugin_version, $plugin_author );
     514                                }
     515                                if ( empty( $plugin_version ) && ! empty( $plugin_author ) ) {
     516                                        // translators: %s: Plugin author name.
     517                                        $plugin_version_string = sprintf( __( 'By %s' ), $plugin_author );
     518                                }
     519                                if ( ! empty( $plugin_version ) && empty( $plugin_author ) ) {
     520                                        // translators: %s: Plugin version number.
     521                                        $plugin_version_string = sprintf( __( 'Version %s' ), $plugin_version );
     522                                }
     523
     524                                $info[ $plugin_part ]['fields'][] = array(
     525                                        'label' => $plugin['Name'],
     526                                        'value' => $plugin_version_string,
     527                                );
     528                        }
     529
     530                        // Populate the section for the currently active theme.
     531                        global $_wp_theme_features;
     532                        $theme_features = array();
     533                        if ( ! empty( $_wp_theme_features ) ) {
     534                                foreach ( $_wp_theme_features as $feature => $options ) {
     535                                        $theme_features[] = $feature;
     536                                }
     537                        }
     538
     539                        $active_theme                      = wp_get_theme();
     540                        $info['wp-active-theme']['fields'] = array(
     541                                array(
     542                                        'label' => __( 'Name' ),
     543                                        'value' => $active_theme->Name,
     544                                ),
     545                                array(
     546                                        'label' => __( 'Version' ),
     547                                        'value' => $active_theme->Version,
     548                                ),
     549                                array(
     550                                        'label' => __( 'Author' ),
     551                                        'value' => wp_kses( $active_theme->Author, array() ),
     552                                ),
     553                                array(
     554                                        'label' => __( 'Author website' ),
     555                                        'value' => ( $active_theme->offsetGet( 'Author URI' ) ? $active_theme->offsetGet( 'Author URI' ) : __( 'Undefined' ) ),
     556                                ),
     557                                array(
     558                                        'label' => __( 'Parent theme' ),
     559                                        'value' => ( $active_theme->parent_theme ? $active_theme->parent_theme : __( 'Not a child theme' ) ),
     560                                ),
     561                                array(
     562                                        'label' => __( 'Supported theme features' ),
     563                                        'value' => implode( ', ', $theme_features ),
     564                                ),
     565                        );
     566
     567                        // Populate a list of all themes available in the install.
     568                        $all_themes = wp_get_themes();
     569
     570                        foreach ( $all_themes as $theme_slug => $theme ) {
     571                                // Ignore the currently active theme from the list of all themes.
     572                                if ( $active_theme->stylesheet === $theme_slug ) {
     573                                        continue;
     574                                }
     575
     576                                $theme_version = $theme->Version;
     577                                $theme_author  = $theme->Author;
     578
     579                                $theme_version_string = __( 'No version or author information available' );
     580
     581                                if ( ! empty( $theme_version ) && ! empty( $theme_author ) ) {
     582                                        // translators: %1$s: Theme version number. %2$s: Theme author name.
     583                                        $theme_version_string = sprintf( __( 'Version %1$s by %2$s' ), $theme_version, wp_kses( $theme_author, array() ) );
     584                                }
     585                                if ( empty( $theme_version ) && ! empty( $theme_author ) ) {
     586                                        // translators: %s: Theme author name.
     587                                        $theme_version_string = sprintf( __( 'By %s' ), wp_kses( $theme_author, array() ) );
     588                                }
     589                                if ( ! empty( $theme_version ) && empty( $theme_author ) ) {
     590                                        // translators: %s: Theme version number.
     591                                        $theme_version_string = sprintf( __( 'Version %s' ), $theme_version );
     592                                }
     593
     594
     595                                $info['wp-themes']['fields'][] = array(
     596                                        // translators: %1$s: Theme name. %2$s: Theme slug.
     597                                        'label' => sprintf( __( '%1$s (%2$s)' ), $theme->Name, $theme_slug ),
     598                                        'value' => $theme_version_string,
     599                                );
     600                        }
     601
     602                        // Add more filesystem checks.
     603                        if ( defined( 'WPMU_PLUGIN_DIR' ) && is_dir( WPMU_PLUGIN_DIR ) ) {
     604                                $info['wp-filesystem']['fields'][] = array(
     605                                        'label' => __( 'The Must Use Plugins directory' ),
     606                                        'value' => ( wp_is_writable( WPMU_PLUGIN_DIR ) ? __( 'Writable' ) : __( 'Not writable' ) ),
     607                                );
     608                        }
     609
     610                        /**
     611                         * Add or modify new debug sections.
     612                         *
     613                         * Plugin or themes may wish to introduce their own debug information without creating additional admin pages for this
     614                         * kind of information as it is rarely needed, they can then utilize this filter to introduce their own sections.
     615                         *
     616                         * This filter intentionally does not include the fields introduced by core as those should always be un-modified
     617                         * and reliable for support related scenarios, take note that the core fields will take priority if a filtered value
     618                         * is trying to use the same array keys.
     619                         *
     620                         * Array keys added by core are all prefixed with `wp-`, plugins and themes are encouraged to use their own slug as
     621                         * a prefix, both for consistency as well as avoiding key collisions.
     622                         *
     623                         * @since 5.0.0
     624                         *
     625                         * @param array $args {
     626                         *     The debug information to be added to the core information page.
     627                         *
     628                         *     @type string  $label        The title for this section of the debug output.
     629                         *     @type string  $description  Optional. A description for your information section which may contain basic HTML
     630                         *                                 markup: `em`, `strong` and `a` for linking to documentation or putting emphasis.
     631                         *     @type boolean $show_count   Optional. If set to `true` the amount of fields will be included in the title for
     632                         *                                 this section.
     633                         *     @type boolean $private      Optional. If set to `true` the section and all associated fields will be excluded
     634                         *                                 from the copy-paste text area.
     635                         *     @type array   $fields {
     636                         *         An associative array containing the data to be displayed.
     637                         *
     638                         *         @type string  $label    The label for this piece of information.
     639                         *         @type string  $value    The output that is of interest for this field.
     640                         *         @type boolean $private  Optional. If set to `true` the field will not be included in the copy-paste text area
     641                         *                                 on top of the page, allowing you to show, for example, API keys here.
     642                         *     }
     643                         * }
     644                         */
     645                        $external_info = apply_filters( 'debug_information', array() );
     646
     647                        // Merge the core and external debug fields.
     648                        $info = array_replace_recursive( $info, array_replace_recursive( $external_info, $info ) );
     649                        ?>
     650
     651                        <div class="notice notice-info">
     652                                <p>
     653                                        <?php esc_html_e( 'The system information shown below can also be copied and pasted into support requests such as on the WordPress.org forums, or to your theme and plugin developers.' ); ?>
     654                                </p>
     655                                <p>
     656                                        <button type="button" class="button button-primary" onclick="document.getElementById('system-information-copy-wrapper').style.display = 'block'; this.style.display = 'none';"><?php esc_html_e( 'Show copy and paste field' ); ?></button>
     657                                </p>
     658
     659                                <div id="system-information-copy-wrapper" style="display: none;">
     660                                        <textarea id="system-information-copy-field" class="widefat" rows="10">`
     661                                        <?php
     662                                        foreach ( $info as $section => $details ) {
     663                                                // Skip this section if there are no fields, or the section has been declared as private.
     664                                                if ( empty( $details['fields'] ) || ( isset( $details['private'] ) && $details['private'] ) ) {
     665                                                        continue;
     666                                                }
     667
     668                                                printf(
     669                                                        "### %s%s ###\n\n",
     670                                                        esc_html( $details['label'] ),
     671                                                        ( isset( $details['show_count'] ) && $details['show_count'] ? sprintf( ' (%d)', count( $details['fields'] ) ) : '' )
     672                                                );
     673
     674                                                foreach ( $details['fields'] as $field ) {
     675                                                        if ( isset( $field['private'] ) && true === $field['private'] ) {
     676                                                                continue;
     677                                                        }
     678
     679                                                        printf(
     680                                                                "%s: %s\n",
     681                                                                esc_html( $field['label'] ),
     682                                                                esc_html( $field['value'] )
     683                                                        );
     684                                                }
     685                                                echo "\n";
     686                                        }
     687                                        ?>
     688                                        </textarea>
     689                                        <p>
     690                                                <?php esc_html_e( 'Some information may be filtered out from the list you are about to copy, this is information that may be considered private, and is not meant to be shared in a public forum.' ); ?>
     691                                                <br>
     692                                                <button type="button" class="button button-primary" onclick="document.getElementById('system-information-copy-field').select(); document.execCommand( 'copy' );"><?php esc_html_e( 'Copy' ); ?></button>
     693                                        </p>
     694                                </div>
     695                        </div>
     696
     697                        <div id="system-information-table-of-contents">
     698                                <?php
     699                                $toc = array();
     700
     701                                foreach ( $info as $section => $details ) {
     702                                        if ( empty( $details['fields'] ) ) {
     703                                                continue;
     704                                        }
     705
     706                                        $toc[] = sprintf(
     707                                                '<a href="#%s" class="debug-toc">%s</a>',
     708                                                esc_attr( $section ),
     709                                                esc_html( $details['label'] )
     710                                        );
     711                                }
     712
     713                                echo implode( ' | ', $toc );
     714                                ?>
     715                        </div>
     716
     717                        <?php
     718                        foreach ( $info as $section => $details ) {
     719                                if ( ! isset( $details['fields'] ) || empty( $details['fields'] ) ) {
     720                                        continue;
     721                                }
     722
     723                                printf(
     724                                        '<h2 id="%s">%s%s</h2>',
     725                                        esc_attr( $section ),
     726                                        esc_html( $details['label'] ),
     727                                        ( isset( $details['show_count'] ) && $details['show_count'] ? sprintf( ' (%d)', count( $details['fields'] ) ) : '' )
     728                                );
     729
     730                                if ( isset( $details['description'] ) && ! empty( $details['description'] ) ) {
     731                                        printf(
     732                                                '<p>%s</p>',
     733                                                wp_kses( $details['description'], array(
     734                                                        'a'      => array(
     735                                                                'href' => true,
     736                                                        ),
     737                                                        'strong' => true,
     738                                                        'em'     => true,
     739                                                ) )
     740                                        );
     741                                }
     742                                ?>
     743                                <table class="widefat striped">
     744                                        <tbody>
     745                                        <?php
     746                                        foreach ( $details['fields'] as $field ) {
     747                                                printf(
     748                                                        '<tr><td>%s</td><td>%s</td></tr>',
     749                                                        esc_html( $field['label'] ),
     750                                                        esc_html( $field['value'] )
     751                                                );
     752                                        }
     753                                        ?>
     754                                        </tbody>
     755                                </table>
     756                                <span style="display: block; width: 100%; text-align: <?php echo ( is_rtl() ? 'left' : 'right' ); ?>">
     757                                        <a href="#system-information-table-of-contents" class="debug-toc"><?php esc_html_e( 'Return to table of contents' ); ?></a>
     758                                </span>
     759                                <?php
     760                        }
     761                } else {
     762                        if ( ! function_exists( 'phpinfo' ) ) {
     763                        ?>
     764
     765                                <div class="notice notice-error">
     766                                        <p>
     767                                                <?php esc_html_e( 'The phpinfo() function has been disabled by your host. Please contact the host if you need more information about your setup.' ); ?>
     768                                        </p>
     769                                </div>
     770
     771                        <?php } else { ?>
     772
     773                                <div class="notice notice-warning">
     774                                        <p>
     775                                                <?php esc_html_e( 'Some scenarios require you to look up more detailed server configurations than what is normally required. This page allows you to view all available configuration options for your PHP setup. Please be advised that WordPress does not guarantee that any information shown on this page may not be considered private.' ); ?>
     776                                        </p>
     777                                </div>
     778
     779                                <?php
     780                                ob_start();
     781                                phpinfo();
     782                                $phpinfo_raw = ob_get_clean();
     783
     784                                // Extract the body of the `phpinfo()` call, to avoid all the styles they introduce.
     785                                preg_match_all( '/<body[^>]*>(.*)<\/body>/siU', $phpinfo_raw, $phpinfo );
     786
     787                                // Extract the styles `phpinfo()` creates for this page.
     788                                preg_match_all( '/<style[^>]*>(.*)<\/style>/siU', $phpinfo_raw, $styles );
     789
     790                                // We remove various styles that break the visual flow of wp-admin.
     791                                $remove_patterns = array(
     792                                        "/a:.+?\n/si",
     793                                        "/body.+?\n/si",
     794                                );
     795
     796                                // Output the styles as an inline style block.
     797                                if ( isset( $styles[1][0] ) ) {
     798                                        $styles = preg_replace( $remove_patterns, '', $styles[1][0] );
     799                                        echo '<style type="text/css">' . $styles . '</style>';
     800                                }
     801
     802                                // Output the actual phpinfo data.
     803                                if ( isset( $phpinfo[1][0] ) ) {
     804                                        echo $phpinfo[1][0];
     805                                }
     806                                ?>
     807
     808                        <?php } ?>
     809
     810                <?php } ?>
     811        </div>
     812
     813<script type="text/javascript">
     814        jQuery(document).ready( function( $ ) {
     815                $(".debug-toc").click( function( e ) {
     816                        e.preventDefault();
     817                        // Remove the height of the admin bar, and an extra 10px for better positioning.           
     818                        var offset = $( $(this).attr('href') ).offset().top - $("#wpadminbar").height() - 10;
     819                        $('html, body').animate({
     820                                scrollTop: offset           
     821                        }, 1200);
     822                });
     823        });
     824</script>
     825
     826<?php
     827require ABSPATH . 'wp-admin/admin-footer.php';
  • src/wp-includes/script-loader.php

    diff --git src/wp-includes/script-loader.php src/wp-includes/script-loader.php
    index 6a1a7f2..a074b92 100644
    function wp_default_styles( &$styles ) { 
    10691069        $styles->add( 'site-icon', "/wp-admin/css/site-icon$suffix.css" );
    10701070        $styles->add( 'l10n', "/wp-admin/css/l10n$suffix.css" );
    10711071        $styles->add( 'code-editor', "/wp-admin/css/code-editor$suffix.css", array( 'wp-codemirror' ) );
     1072        $styles->add( 'debug', "/wp-admin/css/debug$suffix.css" );
    10721073
    1073         $styles->add( 'wp-admin', false, array( 'dashicons', 'common', 'forms', 'admin-menu', 'dashboard', 'list-tables', 'edit', 'revisions', 'media', 'themes', 'about', 'nav-menus', 'widgets', 'site-icon', 'l10n' ) );
     1074        $styles->add( 'wp-admin', false, array( 'dashicons', 'common', 'forms', 'admin-menu', 'dashboard', 'list-tables', 'edit', 'revisions', 'media', 'themes', 'about', 'nav-menus', 'widgets', 'site-icon', 'l10n', 'debug' ) );
    10741075
    10751076        $styles->add( 'login', "/wp-admin/css/login$suffix.css", array( 'dashicons', 'buttons', 'forms', 'l10n' ) );
    10761077        $styles->add( 'install', "/wp-admin/css/install$suffix.css", array( 'buttons' ) );