wp_maybe_grant_site_health_caps( bool[] $allcaps, string[] $caps, array $args, WP_User $user )

Filters the user capabilities to grant the ‘view_site_health_checks’ capabilities as necessary.

Parameters

$allcaps

(bool[]) (Required) An array of all the user's capabilities.

$caps

(string[]) (Required) Required primitive capabilities for the requested capability.

$args

(array) (Required) Arguments that accompany the requested capability check.

  • (string) Requested capability.
  • '1'
    (int) Concerned user ID.
  • '...$2'
    (mixed) Optional second and further parameters, typically object ID.

$user

(WP_User) (Required) The user object.

Return

(bool[]) Filtered array of the user's capabilities.

Source

File: wp-includes/capabilities.php

function wp_maybe_grant_site_health_caps( $allcaps, $caps, $args, $user ) {
	if ( ! empty( $allcaps['install_plugins'] ) && ( ! is_multisite() || is_super_admin( $user->ID ) ) ) {
		$allcaps['view_site_health_checks'] = true;
	}

	return $allcaps;
}

Changelog

Version Description
5.2.2 Introduced.

© 2003–2021 WordPress Foundation
Licensed under the GNU GPLv2+ License.
https://developer.wordpress.org/reference/functions/wp_maybe_grant_site_health_caps