You are here

protected function TagAccessHandler::checkAccess in Extensible BBCode 8.3

Same name and namespace in other branches
  1. 4.0.x src/TagAccessHandler.php \Drupal\xbbcode\TagAccessHandler::checkAccess()

Performs access checks.

This method is supposed to be overwritten by extending classes that do their own custom access checking.

Parameters

\Drupal\Core\Entity\EntityInterface $entity: The entity for which to check access.

string $operation: The entity operation. Usually one of 'view', 'view label', 'update' or 'delete'.

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

Return value

\Drupal\Core\Access\AccessResultInterface The access result.

Overrides EntityAccessControlHandler::checkAccess

File

src/TagAccessHandler.php, line 18

Class

TagAccessHandler
Control access to XBBCodeTag entities.

Namespace

Drupal\xbbcode

Code

protected function checkAccess(EntityInterface $entity, $operation, AccountInterface $account) {

  /** @var \Drupal\xbbcode\Entity\TagInterface $entity */
  if (($operation === 'update' || $operation === 'delete') && !$entity
    ->isEditable()) {
    return AccessResult::forbidden();
  }
  return parent::checkAccess($entity, $operation, $account);
}