mirror of
https://github.com/gosticks/wordpress-develop.git
synced 2026-08-11 20:30:23 +00:00
Roles/Capabilities: Add a new wp_roles_init filter.
Historically, it's been difficult to extend user roles, but reasonable to work around by waiting until after `init` has fired, to add custom roles and capabilities. With the addition of Locale Switching, Core now potentially loads roles before `init` has fired, leaving a window where custom roles and capabilities are not handled. The new filter allows plugins to add their own custom roles whenever they're initialised (on page load, or when switching sites, for example), so that they can always be obeyed. `WP_Roles` has also been tidied up a little bit, to remove duplicate code. Props johnjamesjacoby, pento. Fixes #23016. git-svn-id: https://develop.svn.wordpress.org/trunk@39082 602fd350-edb4-49c9-b593-d223f7449a82
This commit is contained in:
@@ -127,6 +127,15 @@ class WP_Roles {
|
||||
$this->role_objects[$role] = new WP_Role( $role, $this->roles[$role]['capabilities'] );
|
||||
$this->role_names[$role] = $this->roles[$role]['name'];
|
||||
}
|
||||
|
||||
/**
|
||||
* After the roles have been initialized, allow plugins to add their own roles.
|
||||
*
|
||||
* @since 4.7.0
|
||||
*
|
||||
* @param WP_Roles A reference to the WP_Roles object.
|
||||
*/
|
||||
do_action( 'wp_roles_init', $this );
|
||||
}
|
||||
|
||||
/**
|
||||
@@ -136,28 +145,12 @@ class WP_Roles {
|
||||
* after switching wpdb to a new site ID.
|
||||
*
|
||||
* @since 3.5.0
|
||||
* @deprecated 4.7.0 Use new WP_Roles()
|
||||
* @access public
|
||||
*/
|
||||
public function reinit() {
|
||||
global $wpdb;
|
||||
|
||||
// There is no need to reinit if using the wp_user_roles global.
|
||||
if ( ! $this->use_db ) {
|
||||
return;
|
||||
}
|
||||
|
||||
// Duplicated from _init() to avoid an extra function call.
|
||||
$this->role_key = $wpdb->get_blog_prefix() . 'user_roles';
|
||||
$this->roles = get_option( $this->role_key );
|
||||
if ( empty( $this->roles ) )
|
||||
return;
|
||||
|
||||
$this->role_objects = array();
|
||||
$this->role_names = array();
|
||||
foreach ( array_keys( $this->roles ) as $role ) {
|
||||
$this->role_objects[$role] = new WP_Role( $role, $this->roles[$role]['capabilities'] );
|
||||
$this->role_names[$role] = $this->roles[$role]['name'];
|
||||
}
|
||||
__deprecated_function( __METHOD__, '4.7.0', 'new WP_Roles()' );
|
||||
$this->_init();
|
||||
}
|
||||
|
||||
/**
|
||||
|
||||
Reference in New Issue
Block a user