wpseek.com
A WordPress-centric search engine for devs and theme authors



wp_maybe_grant_site_health_caps › WordPress Function

Since5.2.2
Deprecatedn/a
wp_maybe_grant_site_health_caps ( $allcaps, $caps, $args, $user )
Parameters: (4)
  • (bool[]) $allcaps An array of all the user's capabilities.
    Required: Yes
  • (string[]) $caps Required primitive capabilities for the requested capability.
    Required: Yes
  • (array) $args { Arguments that accompany the requested capability check. @type string $0 Requested capability. @type int $1 Concerned user ID. @type mixed ...$2 Optional second and further parameters, typically object ID. }
    Required: Yes
  • (WP_User) $user The user object.
    Required: Yes
Returns:
  • (bool[]) Filtered array of the user's capabilities.
Defined at:
Codex:

Filters the user capabilities to grant the 'view_site_health_checks' capabilities as necessary.



Source

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;
}