diff --git a/wp-admin/plugins.php b/wp-admin/plugins.php index 199fbedaa3..339056b282 100644 --- a/wp-admin/plugins.php +++ b/wp-admin/plugins.php @@ -602,6 +602,19 @@ if ( current_user_can( 'update_plugins' ) && wp_is_auto_update_enabled_for_type( $help_sidebar_autoupdates = '

' . __( 'Documentation on Auto-updates' ) . '

'; } +if ( current_user_can( 'install_plugins' ) ) { + get_current_screen()->add_help_tab( + array( + 'id' => 'plugins-dependencies', + 'title' => __( 'Dependencies' ), + 'content' => + '

' . __( 'Plugin Dependencies aims to make the process of installing and activating add-ons (dependents) and the plugins they rely on (dependencies) consistent and easy.' ) . '

' . + '

' . __( 'If a required plugin is deleted, a notice will be displayed on the Plugin administration screen informing the user that there is some missing dependencies to install and/or activate. Additionally, each plugin whose dependencies are not met will have an error notice on their plugin row.' ) . '

' . + '

' . __( 'If a dependent plugin is missing some dependencies, its activation button will be disabled until the required dependencies are activated.' ) . '

', + ) + ); +} + get_current_screen()->set_help_sidebar( '

' . __( 'For more information:' ) . '

' . '

' . __( 'Documentation on Managing Plugins' ) . '

' . diff --git a/wp-includes/version.php b/wp-includes/version.php index d185467ccc..d17e0a9bd1 100644 --- a/wp-includes/version.php +++ b/wp-includes/version.php @@ -16,7 +16,7 @@ * * @global string $wp_version */ -$wp_version = '6.7-alpha-59093'; +$wp_version = '6.7-alpha-59094'; /** * Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.