Same name and namespace in other branches
  1. 10 core/modules/user/user.module \user_role_change_permissions()
  2. 8.9.x core/modules/user/user.module \user_role_change_permissions()
  3. 9 core/modules/user/user.module \user_role_change_permissions()

Change permissions for a user role.

This function may be used to grant and revoke multiple permissions at once. For example, when a form exposes checkboxes to configure permissions for a role, the form submit handler may directly pass the submitted values for the checkboxes form element to this function.

Parameters

$rid: The ID of a user role to alter.

$permissions: An associative array, where the key holds the permission name and the value determines whether to grant or revoke that permission. Any value that evaluates to TRUE will cause the permission to be granted. Any value that evaluates to FALSE will cause the permission to be revoked.

array(
  'administer nodes' => 0,
  // Revoke 'administer nodes'
  'administer blocks' => FALSE,
  // Revoke 'administer blocks'
  'access user profiles' => 1,
  // Grant 'access user profiles'
  'access content' => TRUE,
  // Grant 'access content'
  'access comments' => 'access comments',
);

Existing permissions are not changed, unless specified in $permissions.

See also

user_role_grant_permissions()

user_role_revoke_permissions()

16 calls to user_role_change_permissions()
CommentAnonymous::testAnonymous in modules/comment/comment.test
Test anonymous comment functionality.
CommentApprovalTest::testApprovalAdminInterface in modules/comment/comment.test
Test comment approval functionality through admin/content/comment.
CommentApprovalTest::testApprovalNodeInterface in modules/comment/comment.test
Test comment approval functionality through node interface.
CommentInterfaceTest::setEnvironment in modules/comment/comment.test
Re-configures the environment, module settings, and user permissions.
CommentInterfaceTest::testCommentNodeCommentStatistics in modules/comment/comment.test
Tests the node comment statistics.

... See full list

File

modules/user/user.module, line 3175
Enables the user registration and login system.

Code

function user_role_change_permissions($rid, array $permissions = array()) {

  // Grant new permissions for the role.
  $grant = array_filter($permissions);
  if (!empty($grant)) {
    user_role_grant_permissions($rid, array_keys($grant));
  }

  // Revoke permissions for the role.
  $revoke = array_diff_assoc($permissions, $grant);
  if (!empty($revoke)) {
    user_role_revoke_permissions($rid, array_keys($revoke));
  }
}