Skip to main content
Drupal API
User account menu
  • Log in

Breadcrumb

  1. Drupal Core 11.1.x
  2. ChangeUserRoleBase.php

function 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();
}

API Navigation

  • Drupal Core 11.1.x
  • Topics
  • Classes
  • Functions
  • Constants
  • Globals
  • Files
  • Namespaces
  • Deprecated
  • Services
RSS feed
Powered by Drupal