Allow use of global roles array instead of options db. Useful for multi-blog setups.

git-svn-id: https://develop.svn.wordpress.org/trunk@4113 602fd350-edb4-49c9-b593-d223f7449a82
This commit is contained in:
Ryan Boren 2006-08-24 23:23:36 +00:00
parent 4a9ad00205
commit 88cd96ff72

View File

@ -6,6 +6,7 @@ class WP_Roles {
var $role_objects = array(); var $role_objects = array();
var $role_names = array(); var $role_names = array();
var $role_key; var $role_key;
var $use_db = true;
function WP_Roles() { function WP_Roles() {
$this->_init(); $this->_init();
@ -13,9 +14,14 @@ class WP_Roles {
function _init () { function _init () {
global $wpdb; global $wpdb;
global $wp_user_roles;
$this->role_key = $wpdb->prefix . 'user_roles'; $this->role_key = $wpdb->prefix . 'user_roles';
if ( ! empty($wp_user_roles) ) {
$this->roles = get_option($this->role_key); $this->roles = $wp_user_roles;
$this->use_db = false;
} else {
$this->roles = get_option($this->role_key);
}
if ( empty($this->roles) ) if ( empty($this->roles) )
return; return;
@ -35,7 +41,8 @@ class WP_Roles {
$this->roles[$role] = array( $this->roles[$role] = array(
'name' => $display_name, 'name' => $display_name,
'capabilities' => $capabilities); 'capabilities' => $capabilities);
update_option($this->role_key, $this->roles); if ( $this->use_db )
update_option($this->role_key, $this->roles);
$this->role_objects[$role] = new WP_Role($role, $capabilities); $this->role_objects[$role] = new WP_Role($role, $capabilities);
$this->role_names[$role] = $display_name; $this->role_names[$role] = $display_name;
return $this->role_objects[$role]; return $this->role_objects[$role];
@ -48,18 +55,21 @@ class WP_Roles {
unset($this->role_objects[$role]); unset($this->role_objects[$role]);
unset($this->role_names[$role]); unset($this->role_names[$role]);
unset($this->roles[$role]); unset($this->roles[$role]);
update_option($this->role_key, $this->roles); if ( $this->use_db )
update_option($this->role_key, $this->roles);
} }
function add_cap($role, $cap, $grant = true) { function add_cap($role, $cap, $grant = true) {
$this->roles[$role]['capabilities'][$cap] = $grant; $this->roles[$role]['capabilities'][$cap] = $grant;
update_option($this->role_key, $this->roles); if ( $this->use_db )
update_option($this->role_key, $this->roles);
} }
function remove_cap($role, $cap) { function remove_cap($role, $cap) {
unset($this->roles[$role]['capabilities'][$cap]); unset($this->roles[$role]['capabilities'][$cap]);
update_option($this->role_key, $this->roles); if ( $this->use_db )
update_option($this->role_key, $this->roles);
} }
function &get_role($role) { function &get_role($role) {