Plugins: Display a message on Plugins list table if a plugin requires a higher version of PHP or WordPress.
Installation and activation of incompatible plugins was previously disallowed in [43436] and [44978], but if such a plugin was installed manually, there was nothing on the Plugins screen that would show its compatibility status. Showing an appropriate notice with a documentation link makes the UI more consistent and improves user experience. Follow-up to [43436], [44937], [44939], [44978], [45043], [45165], [45546], [47573], [47816], [47819], [48172], [48636], [48637], [48638], [48640], [48652], [48653], [48654], [48660]. Props TacoVerdo, SergeyBiryukov. Fixes #53990. Built from https://develop.svn.wordpress.org/trunk@51678 git-svn-id: http://core.svn.wordpress.org/trunk@51284 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
parent
9aeacc728a
commit
0ae0fbedce
|
@ -798,7 +798,7 @@ p.pagenav {
|
|||
}
|
||||
|
||||
.row-actions {
|
||||
color: #dcdcde;
|
||||
color: #a7aaad;
|
||||
font-size: 13px;
|
||||
padding: 2px 0 0;
|
||||
position: relative;
|
||||
|
|
File diff suppressed because one or more lines are too long
|
@ -797,7 +797,7 @@ p.pagenav {
|
|||
}
|
||||
|
||||
.row-actions {
|
||||
color: #dcdcde;
|
||||
color: #a7aaad;
|
||||
font-size: 13px;
|
||||
padding: 2px 0 0;
|
||||
position: relative;
|
||||
|
|
File diff suppressed because one or more lines are too long
|
@ -586,6 +586,7 @@ class WP_Plugin_Install_List_Table extends WP_List_Table {
|
|||
_x( 'Active', 'plugin' )
|
||||
);
|
||||
} elseif ( current_user_can( 'activate_plugin', $status['file'] ) ) {
|
||||
if ( $compatible_php && $compatible_wp ) {
|
||||
$button_text = __( 'Activate' );
|
||||
/* translators: %s: Plugin name. */
|
||||
$button_label = _x( 'Activate %s', 'plugin' );
|
||||
|
@ -611,6 +612,12 @@ class WP_Plugin_Install_List_Table extends WP_List_Table {
|
|||
esc_attr( sprintf( $button_label, $plugin['name'] ) ),
|
||||
$button_text
|
||||
);
|
||||
} else {
|
||||
$action_links[] = sprintf(
|
||||
'<button type="button" class="button button-disabled" disabled="disabled">%s</button>',
|
||||
_x( 'Cannot Activate', 'plugin' )
|
||||
);
|
||||
}
|
||||
} else {
|
||||
$action_links[] = sprintf(
|
||||
'<button type="button" class="button button-disabled" disabled="disabled">%s</button>',
|
||||
|
|
|
@ -739,6 +739,12 @@ class WP_Plugins_List_Table extends WP_List_Table {
|
|||
$restrict_network_active = false;
|
||||
$restrict_network_only = false;
|
||||
|
||||
$requires_php = isset( $plugin_data['RequiresPHP'] ) ? $plugin_data['RequiresPHP'] : null;
|
||||
$requires_wp = isset( $plugin_data['RequiresWP'] ) ? $plugin_data['RequiresWP'] : null;
|
||||
|
||||
$compatible_php = is_php_version_compatible( $requires_php );
|
||||
$compatible_wp = is_wp_version_compatible( $requires_wp );
|
||||
|
||||
if ( 'mustuse' === $context ) {
|
||||
$is_active = true;
|
||||
} elseif ( 'dropins' === $context ) {
|
||||
|
@ -792,6 +798,7 @@ class WP_Plugins_List_Table extends WP_List_Table {
|
|||
}
|
||||
} else {
|
||||
if ( current_user_can( 'manage_network_plugins' ) ) {
|
||||
if ( $compatible_php && $compatible_wp ) {
|
||||
$actions['activate'] = sprintf(
|
||||
'<a href="%s" id="activate-%s" class="edit" aria-label="%s">%s</a>',
|
||||
wp_nonce_url( 'plugins.php?action=activate&plugin=' . urlencode( $plugin_file ) . '&plugin_status=' . $context . '&paged=' . $page . '&s=' . $s, 'activate-plugin_' . $plugin_file ),
|
||||
|
@ -800,6 +807,12 @@ class WP_Plugins_List_Table extends WP_List_Table {
|
|||
esc_attr( sprintf( _x( 'Network Activate %s', 'plugin' ), $plugin_data['Name'] ) ),
|
||||
__( 'Network Activate' )
|
||||
);
|
||||
} else {
|
||||
$actions['activate'] = sprintf(
|
||||
'<span>%s</span>',
|
||||
_x( 'Cannot Activate', 'plugin' )
|
||||
);
|
||||
}
|
||||
}
|
||||
|
||||
if ( current_user_can( 'delete_plugins' ) && ! is_plugin_active( $plugin_file ) ) {
|
||||
|
@ -846,6 +859,7 @@ class WP_Plugins_List_Table extends WP_List_Table {
|
|||
}
|
||||
} else {
|
||||
if ( current_user_can( 'activate_plugin', $plugin_file ) ) {
|
||||
if ( $compatible_php && $compatible_wp ) {
|
||||
$actions['activate'] = sprintf(
|
||||
'<a href="%s" id="activate-%s" class="edit" aria-label="%s">%s</a>',
|
||||
wp_nonce_url( 'plugins.php?action=activate&plugin=' . urlencode( $plugin_file ) . '&plugin_status=' . $context . '&paged=' . $page . '&s=' . $s, 'activate-plugin_' . $plugin_file ),
|
||||
|
@ -854,6 +868,12 @@ class WP_Plugins_List_Table extends WP_List_Table {
|
|||
esc_attr( sprintf( _x( 'Activate %s', 'plugin' ), $plugin_data['Name'] ) ),
|
||||
__( 'Activate' )
|
||||
);
|
||||
} else {
|
||||
$actions['activate'] = sprintf(
|
||||
'<span>%s</span>',
|
||||
_x( 'Cannot Activate', 'plugin' )
|
||||
);
|
||||
}
|
||||
}
|
||||
|
||||
if ( ! is_multisite() && current_user_can( 'delete_plugins' ) ) {
|
||||
|
@ -945,8 +965,6 @@ class WP_Plugins_List_Table extends WP_List_Table {
|
|||
|
||||
}
|
||||
|
||||
$requires_php = isset( $plugin_data['requires_php'] ) ? $plugin_data['requires_php'] : null;
|
||||
$compatible_php = is_php_version_compatible( $requires_php );
|
||||
$class = $is_active ? 'active' : 'inactive';
|
||||
$checkbox_id = 'checkbox_' . md5( $plugin_file );
|
||||
|
||||
|
@ -968,7 +986,9 @@ class WP_Plugins_List_Table extends WP_List_Table {
|
|||
$plugin_name = $plugin_data['Name'];
|
||||
}
|
||||
|
||||
if ( ! empty( $totals['upgrade'] ) && ! empty( $plugin_data['update'] ) ) {
|
||||
if ( ! empty( $totals['upgrade'] ) && ! empty( $plugin_data['update'] )
|
||||
|| ! $compatible_php || ! $compatible_wp
|
||||
) {
|
||||
$class .= ' update';
|
||||
}
|
||||
|
||||
|
@ -1190,6 +1210,62 @@ class WP_Plugins_List_Table extends WP_List_Table {
|
|||
|
||||
echo '</tr>';
|
||||
|
||||
if ( ! $compatible_php || ! $compatible_wp ) {
|
||||
printf(
|
||||
'<tr class="plugin-update-tr">' .
|
||||
'<td colspan="%s" class="plugin-update colspanchange">' .
|
||||
'<div class="update-message notice inline notice-error notice-alt"><p>',
|
||||
esc_attr( $this->get_column_count() )
|
||||
);
|
||||
|
||||
if ( ! $compatible_php && ! $compatible_wp ) {
|
||||
_e( 'This plugin doesn’t work with your versions of WordPress and PHP.' );
|
||||
if ( current_user_can( 'update_core' ) && current_user_can( 'update_php' ) ) {
|
||||
printf(
|
||||
/* translators: 1: URL to WordPress Updates screen, 2: URL to Update PHP page. */
|
||||
' ' . __( '<a href="%1$s">Please update WordPress</a>, and then <a href="%2$s">learn more about updating PHP</a>.' ),
|
||||
self_admin_url( 'update-core.php' ),
|
||||
esc_url( wp_get_update_php_url() )
|
||||
);
|
||||
wp_update_php_annotation( '</p><p><em>', '</em>' );
|
||||
} elseif ( current_user_can( 'update_core' ) ) {
|
||||
printf(
|
||||
/* translators: %s: URL to WordPress Updates screen. */
|
||||
' ' . __( '<a href="%s">Please update WordPress</a>.' ),
|
||||
self_admin_url( 'update-core.php' )
|
||||
);
|
||||
} elseif ( current_user_can( 'update_php' ) ) {
|
||||
printf(
|
||||
/* translators: %s: URL to Update PHP page. */
|
||||
' ' . __( '<a href="%s">Learn more about updating PHP</a>.' ),
|
||||
esc_url( wp_get_update_php_url() )
|
||||
);
|
||||
wp_update_php_annotation( '</p><p><em>', '</em>' );
|
||||
}
|
||||
} elseif ( ! $compatible_wp ) {
|
||||
_e( 'This plugin doesn’t work with your version of WordPress.' );
|
||||
if ( current_user_can( 'update_core' ) ) {
|
||||
printf(
|
||||
/* translators: %s: URL to WordPress Updates screen. */
|
||||
' ' . __( '<a href="%s">Please update WordPress</a>.' ),
|
||||
self_admin_url( 'update-core.php' )
|
||||
);
|
||||
}
|
||||
} elseif ( ! $compatible_php ) {
|
||||
_e( 'This plugin doesn’t work with your version of PHP.' );
|
||||
if ( current_user_can( 'update_php' ) ) {
|
||||
printf(
|
||||
/* translators: %s: URL to Update PHP page. */
|
||||
' ' . __( '<a href="%s">Learn more about updating PHP</a>.' ),
|
||||
esc_url( wp_get_update_php_url() )
|
||||
);
|
||||
wp_update_php_annotation( '</p><p><em>', '</em>' );
|
||||
}
|
||||
}
|
||||
|
||||
echo '</p></div></td></tr>';
|
||||
}
|
||||
|
||||
/**
|
||||
* Fires after each row in the Plugins list table.
|
||||
*
|
||||
|
|
|
@ -13,7 +13,7 @@
|
|||
*
|
||||
* @global string $wp_version
|
||||
*/
|
||||
$wp_version = '5.9-alpha-51677';
|
||||
$wp_version = '5.9-alpha-51678';
|
||||
|
||||
/**
|
||||
* Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.
|
||||
|
|
Loading…
Reference in New Issue