function ChangeUserRoleBase::access

Same name and namespace in other branches
  1. 9 core/modules/user/src/Plugin/Action/ChangeUserRoleBase.php \Drupal\user\Plugin\Action\ChangeUserRoleBase::access()
  2. 8.9.x core/modules/user/src/Plugin/Action/ChangeUserRoleBase.php \Drupal\user\Plugin\Action\ChangeUserRoleBase::access()
  3. 11.x core/modules/user/src/Plugin/Action/ChangeUserRoleBase.php \Drupal\user\Plugin\Action\ChangeUserRoleBase::access()

Overrides ActionInterface::access

File

core/modules/user/src/Plugin/Action/ChangeUserRoleBase.php, line 97

Class

ChangeUserRoleBase
Provides a base class for operations to change a user's role.

Namespace

Drupal\user\Plugin\Action

Code

public function access($object, AccountInterface $account = NULL, $return_as_object = FALSE) {
    
    /** @var \Drupal\user\UserInterface $object */
    $access = $object->access('update', $account, TRUE)
        ->andIf($object->roles
        ->access('edit', $account, TRUE));
    return $return_as_object ? $access : $access->isAllowed();
}

Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.