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

Breadcrumb

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

function UnblockUser::access

Overrides ActionInterface::access

File

core/modules/user/src/Plugin/Action/UnblockUser.php, line 34

Class

UnblockUser
Unblocks a user.

Namespace

Drupal\user\Plugin\Action

Code

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