You are here

public function EntityField::access in Drupal 9

Same name and namespace in other branches
  1. 8 core/modules/views/src/Plugin/views/field/EntityField.php \Drupal\views\Plugin\views\field\EntityField::access()

Check whether given user has access to this handler.

Parameters

\Drupal\Core\Session\AccountInterface $account: The user account to check.

Return value

bool TRUE if the user has access to the handler, FALSE otherwise.

Overrides HandlerBase::access

File

core/modules/views/src/Plugin/views/field/EntityField.php, line 226

Class

EntityField
A field that displays entity field data.

Namespace

Drupal\views\Plugin\views\field

Code

public function access(AccountInterface $account) {
  $access_control_handler = $this->entityTypeManager
    ->getAccessControlHandler($this
    ->getEntityType());
  return $access_control_handler
    ->fieldAccess('view', $this
    ->getFieldDefinition(), $account);
}