You are here

protected function FontAccessControlHandler::checkAccess in Open Social 8

Same name and namespace in other branches
  1. 8.9 modules/custom/social_font/src/FontAccessControlHandler.php \Drupal\social_font\FontAccessControlHandler::checkAccess()
  2. 8.2 modules/custom/social_font/src/FontAccessControlHandler.php \Drupal\social_font\FontAccessControlHandler::checkAccess()
  3. 8.3 modules/custom/social_font/src/FontAccessControlHandler.php \Drupal\social_font\FontAccessControlHandler::checkAccess()
  4. 8.4 modules/custom/social_font/src/FontAccessControlHandler.php \Drupal\social_font\FontAccessControlHandler::checkAccess()
  5. 8.5 modules/custom/social_font/src/FontAccessControlHandler.php \Drupal\social_font\FontAccessControlHandler::checkAccess()
  6. 8.6 modules/custom/social_font/src/FontAccessControlHandler.php \Drupal\social_font\FontAccessControlHandler::checkAccess()
  7. 8.7 modules/custom/social_font/src/FontAccessControlHandler.php \Drupal\social_font\FontAccessControlHandler::checkAccess()
  8. 8.8 modules/custom/social_font/src/FontAccessControlHandler.php \Drupal\social_font\FontAccessControlHandler::checkAccess()
  9. 10.3.x modules/custom/social_font/src/FontAccessControlHandler.php \Drupal\social_font\FontAccessControlHandler::checkAccess()
  10. 10.0.x modules/custom/social_font/src/FontAccessControlHandler.php \Drupal\social_font\FontAccessControlHandler::checkAccess()
  11. 10.1.x modules/custom/social_font/src/FontAccessControlHandler.php \Drupal\social_font\FontAccessControlHandler::checkAccess()
  12. 10.2.x modules/custom/social_font/src/FontAccessControlHandler.php \Drupal\social_font\FontAccessControlHandler::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

modules/custom/social_font/src/FontAccessControlHandler.php, line 20

Class

FontAccessControlHandler
Access controller for the Font entity.

Namespace

Drupal\social_font

Code

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

  /** @var \Drupal\social_font\Entity\FontInterface $entity */
  switch ($operation) {
    case 'view':
      if (!$entity
        ->isPublished()) {
        return AccessResult::allowedIfHasPermission($account, 'view unpublished font entities');
      }
      return AccessResult::allowedIfHasPermission($account, 'view published font entities');
    case 'update':
      return AccessResult::allowedIfHasPermission($account, 'edit font entities');
    case 'delete':
      return AccessResult::allowedIfHasPermission($account, 'delete font entities');
  }

  // Unknown operation, no opinion.
  return AccessResult::neutral();
}