/home/player95/public_html/mmsbee24.xyz/wp-includes/class-wp-roles.php
<?php
/**
 * User API: WP_Roles class
 *
 * @package WordPress
 * @subpackage Users
 * @since 4.4.0
 */

/**
 * Core class used to implement a user roles API.
 *
 * The role option is simple, the structure is organized by role name that store
 * the name in value of the 'name' key. The capabilities are stored as an array
 * in the value of the 'capability' key.
 *
 *     array (
 *          'rolename' => array (
 *              'name' => 'rolename',
 *              'capabilities' => array()
 *          )
 *     )
 *
 * @since 2.0.0
 */
#[AllowDynamicProperties]
class WP_Roles {
	/**
	 * List of roles and capabilities.
	 *
	 * @since 2.0.0
	 * @var array[]
	 */
	public $roles;

	/**
	 * List of the role objects.
	 *
	 * @since 2.0.0
	 * @var WP_Role[]
	 */
	public $role_objects = array();

	/**
	 * List of role names.
	 *
	 * @since 2.0.0
	 * @var string[]
	 */
	public $role_names = array();

	/**
	 * Option name for storing role list.
	 *
	 * @since 2.0.0
	 * @var string
	 */
	public $role_key;

	/**
	 * Whether to use the database for retrieval and storage.
	 *
	 * @since 2.1.0
	 * @var bool
	 */
	public $use_db = true;

	/**
	 * The site ID the roles are initialized for.
	 *
	 * @since 4.9.0
	 * @var int
	 */
	protected $site_id = 0;

	/**
	 * Constructor.
	 *
	 * @since 2.0.0
	 * @since 4.9.0 The `$site_id` argument was added.
	 *
	 * @global array $wp_user_roles Used to set the 'roles' property value.
	 *
	 * @param int $site_id Site ID to initialize roles for. Default is the current site.
	 */
	public function __construct( $site_id = null ) {
		global $wp_user_roles;

		$this->use_db = empty( $wp_user_roles );

		$this->for_site( $site_id );
	}

	/**
	 * Makes private/protected methods readable for backward compatibility.
	 *
	 * @since 4.0.0
	 *
	 * @param string $name      Method to call.
	 * @param array  $arguments Arguments to pass when calling.
	 * @return mixed|false Return value of the callback, false otherwise.
	 */
	public function __call( $name, $arguments ) {
		if ( '_init' === $name ) {
			return $this->_init( ...$arguments );
		}
		return false;
	}

	/**
	 * Sets up the object properties.
	 *
	 * The role key is set to the current prefix for the $wpdb object with
	 * 'user_roles' appended. If the $wp_user_roles global is set, then it will
	 * be used and the role option will not be updated or used.
	 *
	 * @since 2.1.0
	 * @deprecated 4.9.0 Use WP_Roles::for_site()
	 */
	protected function _init() {
		_deprecated_function( __METHOD__, '4.9.0', 'WP_Roles::for_site()' );

		$this->for_site();
	}

	/**
	 * Reinitializes the object.
	 *
	 * Recreates the role objects. This is typically called only by switch_to_blog()
	 * after switching wpdb to a new site ID.
	 *
	 * @since 3.5.0
	 * @deprecated 4.7.0 Use WP_Roles::for_site()
	 */
	public function reinit() {
		_deprecated_function( __METHOD__, '4.7.0', 'WP_Roles::for_site()' );

		$this->for_site();
	}

	/**
	 * Adds a role name with capabilities to the list.
	 *
	 * Updates the list of roles, if the role doesn't already exist.
	 *
	 * The capabilities are defined in the following format: `array( 'read' => true )`.
	 * To explicitly deny the role a capability, set the value for that capability to false.
	 *
	 * @since 2.0.0
	 *
	 * @param string $role         Role name.
	 * @param string $display_name Role display name.
	 * @param bool[] $capabilities Optional. List of capabilities keyed by the capability name,
	 *                             e.g. `array( 'edit_posts' => true, 'delete_posts' => false )`.
	 *                             Default empty array.
	 * @return WP_Role|void WP_Role object, if the role is added.
	 */
	public function add_role( $role, $display_name, $capabilities = array() ) {
		if ( empty( $role ) || isset( $this->roles[ $role ] ) ) {
			return;
		}

		$this->roles[ $role ] = array(
			'name'         => $display_name,
			'capabilities' => $capabilities,
		);
		if ( $this->use_db ) {
			update_option( $this->role_key, $this->roles, true );
		}
		$this->role_objects[ $role ] = new WP_Role( $role, $capabilities );
		$this->role_names[ $role ]   = $display_name;
		return $this->role_objects[ $role ];
	}

	/**
	 * Removes a role by name.
	 *
	 * @since 2.0.0
	 *
	 * @param string $role Role name.
	 */
	public function remove_role( $role ) {
		if ( ! isset( $this->role_objects[ $role ] ) ) {
			return;
		}

		unset( $this->role_objects[ $role ] );
		unset( $this->role_names[ $role ] );
		unset( $this->roles[ $role ] );

		if ( $this->use_db ) {
			update_option( $this->role_key, $this->roles );
		}

		if ( get_option( 'default_role' ) === $role ) {
			update_option( 'default_role', 'subscriber' );
		}
	}

	/**
	 * Adds a capability to role.
	 *
	 * @since 2.0.0
	 *
	 * @param string $role  Role name.
	 * @param string $cap   Capability name.
	 * @param bool   $grant Optional. Whether role is capable of performing capability.
	 *                      Default true.
	 */
	public function add_cap( $role, $cap, $grant = true ) {
		if ( ! isset( $this->roles[ $role ] ) ) {
			return;
		}

		$this->roles[ $role ]['capabilities'][ $cap ] = $grant;
		if ( $this->use_db ) {
			update_option( $this->role_key, $this->roles );
		}
	}

	/**
	 * Removes a capability from role.
	 *
	 * @since 2.0.0
	 *
	 * @param string $role Role name.
	 * @param string $cap  Capability name.
	 */
	public function remove_cap( $role, $cap ) {
		if ( ! isset( $this->roles[ $role ] ) ) {
			return;
		}

		unset( $this->roles[ $role ]['capabilities'][ $cap ] );
		if ( $this->use_db ) {
			update_option( $this->role_key, $this->roles );
		}
	}

	/**
	 * Retrieves a role object by name.
	 *
	 * @since 2.0.0
	 *
	 * @param string $role Role name.
	 * @return WP_Role|null WP_Role object if found, null if the role does not exist.
	 */
	public function get_role( $role ) {
		if ( isset( $this->role_objects[ $role ] ) ) {
			return $this->role_objects[ $role ];
		} else {
			return null;
		}
	}

	/**
	 * Retrieves a list of role names.
	 *
	 * @since 2.0.0
	 *
	 * @return string[] List of role names.
	 */
	public function get_names() {
		return $this->role_names;
	}

	/**
	 * Determines whether a role name is currently in the list of available roles.
	 *
	 * @since 2.0.0
	 *
	 * @param string $role Role name to look up.
	 * @return bool
	 */
	public function is_role( $role ) {
		return isset( $this->role_names[ $role ] );
	}

	/**
	 * Initializes all of the available roles.
	 *
	 * @since 4.9.0
	 */
	public function init_roles() {
		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'];
		}

		/**
		 * Fires after the roles have been initialized, allowing plugins to add their own roles.
		 *
		 * @since 4.7.0
		 *
		 * @param WP_Roles $wp_roles A reference to the WP_Roles object.
		 */
		do_action( 'wp_roles_init', $this );
	}

	/**
	 * Sets the site to operate on. Defaults to the current site.
	 *
	 * @since 4.9.0
	 *
	 * @global wpdb $wpdb WordPress database abstraction object.
	 *
	 * @param int $site_id Site ID to initialize roles for. Default is the current site.
	 */
	public function for_site( $site_id = null ) {
		global $wpdb;

		if ( ! empty( $site_id ) ) {
			$this->site_id = absint( $site_id );
		} else {
			$this->site_id = get_current_blog_id();
		}

		$this->role_key = $wpdb->get_blog_prefix( $this->site_id ) . 'user_roles';

		if ( ! empty( $this->roles ) && ! $this->use_db ) {
			return;
		}

		$this->roles = $this->get_roles_data();

		$this->init_roles();
	}

	/**
	 * Gets the ID of the site for which roles are currently initialized.
	 *
	 * @since 4.9.0
	 *
	 * @return int Site ID.
	 */
	public function get_site_id() {
		return $this->site_id;
	}

	/**
	 * Gets the available roles data.
	 *
	 * @since 4.9.0
	 *
	 * @global array $wp_user_roles Used to set the 'roles' property value.
	 *
	 * @return array Roles array.
	 */
	protected function get_roles_data() {
		global $wp_user_roles;

		if ( ! empty( $wp_user_roles ) ) {
			return $wp_user_roles;
		}

		if ( is_multisite() && get_current_blog_id() !== $this->site_id ) {
			remove_action( 'switch_blog', 'wp_switch_roles_and_user', 1 );

			$roles = get_blog_option( $this->site_id, $this->role_key, array() );

			add_action( 'switch_blog', 'wp_switch_roles_and_user', 1, 2 );

			return $roles;
		}

		return get_option( $this->role_key, array() );
	}
}
Path: home/player95/public_html/mmsbee24.xyz/wp-includes
  • [D] assets
  • [D] block-bindings
  • [D] block-patterns
  • [D] block-supports
  • [D] blocks
  • [D] certificates
  • [D] css
  • [D] customize
  • [D] fonts
  • [D] html-api
  • [D] ID3
  • [D] images
  • [D] interactivity-api
  • [D] IXR
  • [D] js
  • [D] l10n
  • [D] php-compat
  • [D] PHPMailer
  • [D] pomo
  • [D] Requests
  • [D] rest-api
  • [D] SimplePie
  • [D] sitemaps
  • [D] sodium_compat
  • [D] style-engine
  • [D] Text
  • [D] theme-compat
  • [D] widgets
  • [F] admin-bar.php
  • [F] atomlib.php
  • [F] author-template.php
  • [F] block-bindings.php
  • [F] block-editor.php
  • [F] block-i18n.json
  • [F] block-patterns.php
  • [F] block-template-utils.php
  • [F] block-template.php
  • [F] blocks.php
  • [F] bookmark-template.php
  • [F] bookmark.php
  • [F] cache-compat.php
  • [F] cache.php
  • [F] canonical.php
  • [F] capabilities.php
  • [F] category-template.php
  • [F] category.php
  • [F] class-avif-info.php
  • [F] class-feed.php
  • [F] class-http.php
  • [F] class-IXR.php
  • [F] class-json.php
  • [F] class-oembed.php
  • [F] class-phpass.php
  • [F] class-phpmailer.php
  • [F] class-pop3.php
  • [F] class-requests.php
  • [F] class-simplepie.php
  • [F] class-smtp.php
  • [F] class-snoopy.php
  • [F] class-walker-category-dropdown.php
  • [F] class-walker-category.php
  • [F] class-walker-comment.php
  • [F] class-walker-nav-menu.php
  • [F] class-walker-page-dropdown.php
  • [F] class-walker-page.php
  • [F] class-wp-admin-bar.php
  • [F] class-wp-ajax-response.php
  • [F] class-wp-application-passwords.php
  • [F] class-wp-block-bindings-registry.php
  • [F] class-wp-block-bindings-source.php
  • [F] class-wp-block-editor-context.php
  • [F] class-wp-block-list.php
  • [F] class-wp-block-metadata-registry.php
  • [F] class-wp-block-parser-block.php
  • [F] class-wp-block-parser-frame.php
  • [F] class-wp-block-parser.php
  • [F] class-wp-block-pattern-categories-registry.php
  • [F] class-wp-block-patterns-registry.php
  • [F] class-wp-block-styles-registry.php
  • [F] class-wp-block-supports.php
  • [F] class-wp-block-template.php
  • [F] class-wp-block-templates-registry.php
  • [F] class-wp-block-type-registry.php
  • [F] class-wp-block-type.php
  • [F] class-wp-block.php
  • [F] class-wp-classic-to-block-menu-converter.php
  • [F] class-wp-comment-query.php
  • [F] class-wp-comment.php
  • [F] class-wp-customize-control.php
  • [F] class-wp-customize-manager.php
  • [F] class-wp-customize-nav-menus.php
  • [F] class-wp-customize-panel.php
  • [F] class-wp-customize-section.php
  • [F] class-wp-customize-setting.php
  • [F] class-wp-customize-widgets.php
  • [F] class-wp-date-query.php
  • [F] class-wp-dependencies.php
  • [F] class-wp-dependency.php
  • [F] class-wp-duotone.php
  • [F] class-wp-editor.php
  • [F] class-wp-embed.php
  • [F] class-wp-error.php
  • [F] class-wp-exception.php
  • [F] class-wp-fatal-error-handler.php
  • [F] class-wp-feed-cache-transient.php
  • [F] class-wp-feed-cache.php
  • [F] class-wp-hook.php
  • [F] class-wp-http-cookie.php
  • [F] class-wp-http-curl.php
  • [F] class-wp-http-encoding.php
  • [F] class-wp-http-ixr-client.php
  • [F] class-wp-http-proxy.php
  • [F] class-wp-http-requests-hooks.php
  • [F] class-wp-http-requests-response.php
  • [F] class-wp-http-response.php
  • [F] class-wp-http-streams.php
  • [F] class-wp-http.php
  • [F] class-wp-image-editor-gd.php
  • [F] class-wp-image-editor-imagick.php
  • [F] class-wp-image-editor.php
  • [F] class-wp-list-util.php
  • [F] class-wp-locale-switcher.php
  • [F] class-wp-locale.php
  • [F] class-wp-matchesmapregex.php
  • [F] class-wp-meta-query.php
  • [F] class-wp-metadata-lazyloader.php
  • [F] class-wp-navigation-fallback.php
  • [F] class-wp-network-query.php
  • [F] class-wp-network.php
  • [F] class-wp-object-cache.php
  • [F] class-wp-oembed-controller.php
  • [F] class-wp-oembed.php
  • [F] class-wp-paused-extensions-storage.php
  • [F] class-wp-phpmailer.php
  • [F] class-wp-plugin-dependencies.php
  • [F] class-wp-post-type.php
  • [F] class-wp-post.php
  • [F] class-wp-query.php
  • [F] class-wp-recovery-mode-cookie-service.php
  • [F] class-wp-recovery-mode-email-service.php
  • [F] class-wp-recovery-mode-key-service.php
  • [F] class-wp-recovery-mode-link-service.php
  • [F] class-wp-recovery-mode.php
  • [F] class-wp-rewrite.php
  • [F] class-wp-role.php
  • [F] class-wp-roles.php
  • [F] class-wp-script-modules.php
  • [F] class-wp-scripts.php
  • [F] class-wp-session-tokens.php
  • [F] class-wp-simplepie-file.php
  • [F] class-wp-simplepie-sanitize-kses.php
  • [F] class-wp-site-query.php
  • [F] class-wp-site.php
  • [F] class-wp-speculation-rules.php
  • [F] class-wp-styles.php
  • [F] class-wp-tax-query.php
  • [F] class-wp-taxonomy.php
  • [F] class-wp-term-query.php
  • [F] class-wp-term.php
  • [F] class-wp-text-diff-renderer-inline.php
  • [F] class-wp-text-diff-renderer-table.php
  • [F] class-wp-textdomain-registry.php
  • [F] class-wp-theme-json-data.php
  • [F] class-wp-theme-json-resolver.php
  • [F] class-wp-theme-json-schema.php
  • [F] class-wp-theme-json.php
  • [F] class-wp-theme.php
  • [F] class-wp-token-map.php
  • [F] class-wp-url-pattern-prefixer.php
  • [F] class-wp-user-meta-session-tokens.php
  • [F] class-wp-user-query.php
  • [F] class-wp-user-request.php
  • [F] class-wp-user.php
  • [F] class-wp-walker.php
  • [F] class-wp-widget-factory.php
  • [F] class-wp-widget.php
  • [F] class-wp-xmlrpc-server.php
  • [F] class-wp.php
  • [F] class-wpdb.php
  • [F] class.wp-dependencies.php
  • [F] class.wp-scripts.php
  • [F] class.wp-styles.php
  • [F] comment-template.php
  • [F] comment.php
  • [F] compat.php
  • [F] cron.php
  • [F] date.php
  • [F] default-constants.php
  • [F] default-filters.php
  • [F] default-widgets.php
  • [F] deprecated.php
  • [F] embed-template.php
  • [F] embed.php
  • [F] error-protection.php
  • [F] feed-atom-comments.php
  • [F] feed-atom.php
  • [F] feed-rdf.php
  • [F] feed-rss.php
  • [F] feed-rss2-comments.php
  • [F] feed-rss2.php
  • [F] feed.php
  • [F] fonts.php
  • [F] formatting.php
  • [F] functions.php
  • [F] functions.wp-scripts.php
  • [F] functions.wp-styles.php
  • [F] general-template.php
  • [F] global-styles-and-settings.php
  • [F] http.php
  • [F] https-detection.php
  • [F] https-migration.php
  • [F] kses.php
  • [F] l10n.php
  • [F] link-template.php
  • [F] load.php
  • [F] locale.php
  • [F] media-template.php
  • [F] media.php
  • [F] meta.php
  • [F] ms-blogs.php
  • [F] ms-default-constants.php
  • [F] ms-default-filters.php
  • [F] ms-deprecated.php
  • [F] ms-files.php
  • [F] ms-functions.php
  • [F] ms-load.php
  • [F] ms-network.php
  • [F] ms-settings.php
  • [F] ms-site.php
  • [F] nav-menu-template.php
  • [F] nav-menu.php
  • [F] option.php
  • [F] pluggable-deprecated.php
  • [F] pluggable.php
  • [F] plugin.php
  • [F] post-formats.php
  • [F] post-template.php
  • [F] post-thumbnail-template.php
  • [F] post.php
  • [F] query.php
  • [F] registration-functions.php
  • [F] registration.php
  • [F] rest-api.php
  • [F] revision.php
  • [F] rewrite.php
  • [F] robots-template.php
  • [F] rss-functions.php
  • [F] rss.php
  • [F] script-loader.php
  • [F] script-modules.php
  • [F] session.php
  • [F] shortcodes.php
  • [F] sitemaps.php
  • [F] speculative-loading.php
  • [F] spl-autoload-compat.php
  • [F] style-engine.php
  • [F] taxonomy.php
  • [F] template-canvas.php
  • [F] template-loader.php
  • [F] template.php
  • [F] theme-i18n.json
  • [F] theme-previews.php
  • [F] theme-templates.php
  • [F] theme.json
  • [F] theme.php
  • [F] update.php
  • [F] user.php
  • [F] vars.php
  • [F] version.php
  • [F] widgets.php
  • [F] wp-db.php
  • [F] wp-diff.php
Page not found – mmsbee24
Skip to content

mmsbee24

  • Sample Page
  • Homepage
  • Error 404

Oops! That page can’t be found.

It looks like nothing was found at this location. Maybe try one of the links below or a search?

Random videos

Khwahish Hot Show Live Ass Slap
4
Khwahish Hot Show Live Ass Slap
Chubby babe riding
1
Chubby babe riding
Bringing stranger girl to my bedroom and fucked her pussy,hunter Asia
4 20:13
Bringing stranger girl to my bedroom and fucked her pussy,hunter Asia
Goddess Janisha Superb 121 Live Show
1
Goddess Janisha Superb 121 Live Show
Hot Ellie Sharma Quick Boob Flash and Teasing on Tango Live
1
Hot Ellie Sharma Quick Boob Flash and Teasing on Tango Live
fucking with Isabel,Jerk off with REAL GIRLS in sex video chat
0 17:27
fucking with Isabel,Jerk off with REAL GIRLS in sex video chat
Cute desi lady sexy navel and boobs in pink saree
8
Cute desi lady sexy navel and boobs in pink saree
Gunjan Aras-instagram Model & Gandi baat 4 fame
2
Gunjan Aras-instagram Model & Gandi baat 4 fame
Indian Milf ur_khwahishh pussy fingering, boobs pressing and Ass Showing
9
Indian Milf ur_khwahishh pussy fingering, boobs pressing and Ass Showing
Gandi Baat Anveshi Jain Flora Saini
2
Gandi Baat Anveshi Jain Flora Saini
Khwahish Private StripChat Show
13
Khwahish Private StripChat Show

Archives

  • November 2025

Categories

  • App Content
  • Big Boobs
  • Desi
  • StripChat
  • Tango
  • Uncategorized
All rights reserved. Powered by WP-Script.com
Registration is disabled.

Login to mmsbee24

Lost Password?

Reset Password

Enter the username or e-mail you used in your profile. A password reset link will be sent to you by email.


Loading...

Don't have an account? Sign up Already have an account? Login