Plugins: Show the required PHP version in the plugin details view, if specified.

Props xkon.
Fixes #43650.

Built from https://develop.svn.wordpress.org/trunk@42998


git-svn-id: http://core.svn.wordpress.org/trunk@42827 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
Felix Arntz 2018-04-24 11:41:25 +00:00
parent e22489f06c
commit c1efc2519b
2 changed files with 10 additions and 2 deletions

View File

@ -642,12 +642,20 @@ function install_plugin_information() {
<li> <li>
<strong><?php _e( 'Requires WordPress Version:' ); ?></strong> <strong><?php _e( 'Requires WordPress Version:' ); ?></strong>
<?php <?php
/* translators: %s: WordPress version */ /* translators: %s: version number */
printf( __( '%s or higher' ), $api->requires ); printf( __( '%s or higher' ), $api->requires );
?> ?>
</li> </li>
<?php } if ( ! empty( $api->tested ) ) { ?> <?php } if ( ! empty( $api->tested ) ) { ?>
<li><strong><?php _e( 'Compatible up to:' ); ?></strong> <?php echo $api->tested; ?></li> <li><strong><?php _e( 'Compatible up to:' ); ?></strong> <?php echo $api->tested; ?></li>
<?php } if ( ! empty( $api->requires_php ) ) { ?>
<li>
<strong><?php _e( 'Requires PHP Version:' ); ?></strong>
<?php
/* translators: %s: version number */
printf( __( '%s or higher' ), $api->requires_php );
?>
</li>
<?php } if ( isset( $api->active_installs ) ) { ?> <?php } if ( isset( $api->active_installs ) ) { ?>
<li><strong><?php _e( 'Active Installations:' ); ?></strong> <li><strong><?php _e( 'Active Installations:' ); ?></strong>
<?php <?php

View File

@ -4,7 +4,7 @@
* *
* @global string $wp_version * @global string $wp_version
*/ */
$wp_version = '5.0-alpha-42997'; $wp_version = '5.0-alpha-42998';
/** /**
* Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema. * Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.