protected function OpignoCertificateAccessControlHandler::checkAccess in Opigno certificate 3.x
Same name and namespace in other branches
- 8 src/OpignoCertificateAccessControlHandler.php \Drupal\opigno_certificate\OpignoCertificateAccessControlHandler::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/
OpignoCertificateAccessControlHandler.php, line 20
Class
- OpignoCertificateAccessControlHandler
- Access controller for the Certificate entity.
Namespace
Drupal\opigno_certificateCode
protected function checkAccess(EntityInterface $entity, $operation, AccountInterface $account) {
/** @var \Drupal\opigno_certificate\Entity\OpignoCertificate $entity */
switch ($operation) {
case 'view':
if ($account
->hasPermission('administer certificates')) {
// Allow admins & platform-level managers to view any content.
return AccessResult::allowed();
}
if (!$entity
->isPublished()) {
return AccessResult::allowedIfHasPermission($account, 'view unpublished certificate entities');
}
return AccessResult::allowedIfHasPermission($account, 'view published certificate entities');
case 'update':
if ($entity
->getOwnerId() === $account
->id()) {
// Allow users to edit its own content.
return AccessResult::allowed();
}
return AccessResult::allowedIfHasPermission($account, 'edit certificate entities');
case 'delete':
if ($entity
->getOwnerId() === $account
->id()) {
// Allow users to delete its own content.
return AccessResult::allowed();
}
return AccessResult::allowedIfHasPermission($account, 'delete certificate entities');
}
// Unknown operation, no opinion.
return AccessResult::neutral();
}