You are here

public function NodeAccessControlHandler::checkAllGrants in Zircon Profile 8

Same name and namespace in other branches
  1. 8.0 core/modules/node/src/NodeAccessControlHandler.php \Drupal\node\NodeAccessControlHandler::checkAllGrants()

Checks all grants for a given account.

Parameters

\Drupal\Core\Session\AccountInterface $account: A user object representing the user for whom the operation is to be performed.

Return value

int. Status of the access check.

Overrides NodeAccessControlHandlerInterface::checkAllGrants

File

core/modules/node/src/NodeAccessControlHandler.php, line 196
Contains \Drupal\node\NodeAccessControlHandler.

Class

NodeAccessControlHandler
Defines the access control handler for the node entity type.

Namespace

Drupal\node

Code

public function checkAllGrants(AccountInterface $account) {
  return $this->grantStorage
    ->checkAll($account);
}