first
This commit is contained in:
@ -0,0 +1,66 @@
|
||||
<?php
|
||||
/**
|
||||
* WPSEO plugin file.
|
||||
*
|
||||
* @package WPSEO\Admin\Roles
|
||||
*/
|
||||
|
||||
/**
|
||||
* VIP implementation of the Role Manager.
|
||||
*
|
||||
* @deprecated 19.9
|
||||
* @codeCoverageIgnore
|
||||
*/
|
||||
final class WPSEO_Role_Manager_VIP extends WPSEO_Abstract_Role_Manager {
|
||||
|
||||
/**
|
||||
* Adds a role to the system.
|
||||
*
|
||||
* @deprecated 19.9
|
||||
* @codeCoverageIgnore
|
||||
*
|
||||
* @param string $role Role to add.
|
||||
* @param string $display_name Name to display for the role.
|
||||
* @param array $capabilities Capabilities to add to the role.
|
||||
*
|
||||
* @return void
|
||||
*/
|
||||
protected function add_role( $role, $display_name, array $capabilities = [] ) {
|
||||
_deprecated_function( __METHOD__, 'Yoast SEO 19.9' );
|
||||
|
||||
$enabled_capabilities = [];
|
||||
$disabled_capabilities = [];
|
||||
|
||||
// Build lists of enabled and disabled capabilities.
|
||||
foreach ( $capabilities as $capability => $grant ) {
|
||||
if ( $grant ) {
|
||||
$enabled_capabilities[] = $capability;
|
||||
}
|
||||
|
||||
if ( ! $grant ) {
|
||||
$disabled_capabilities[] = $capability;
|
||||
}
|
||||
}
|
||||
|
||||
wpcom_vip_add_role( $role, $display_name, $enabled_capabilities );
|
||||
if ( $disabled_capabilities !== [] ) {
|
||||
wpcom_vip_remove_role_caps( $role, $disabled_capabilities );
|
||||
}
|
||||
}
|
||||
|
||||
/**
|
||||
* Removes a role from the system.
|
||||
*
|
||||
* @deprecated 19.9
|
||||
* @codeCoverageIgnore
|
||||
*
|
||||
* @param string $role Role to remove.
|
||||
*
|
||||
* @return void
|
||||
*/
|
||||
protected function remove_role( $role ) {
|
||||
_deprecated_function( __METHOD__, 'Yoast SEO 19.9' );
|
||||
|
||||
remove_role( $role );
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user