protected function BillingScheduleAccessControlHandler::checkAccess in Commerce Recurring Framework 8
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 EntityAccessControlHandlerBase::checkAccess
File
- src/
BillingScheduleAccessControlHandler.php, line 58
Class
- BillingScheduleAccessControlHandler
- Controls access for the Billing Schedule entity type.
Namespace
Drupal\commerce_recurringCode
protected function checkAccess(EntityInterface $entity, $operation, AccountInterface $account) {
// Allow users with access to the 'commerce_subscription' entity type to
// view the label of 'commerce_billing_schedule' entities.
if ($operation === 'view label') {
$permissions = [
'administer commerce_billing_schedule',
'administer commerce_subscription',
'update any commerce_subscription',
'view any commerce_subscription',
'view own commerce_subscription',
];
return AccessResult::allowedIfHasPermissions($account, $permissions, 'OR');
}
elseif ($operation === 'delete') {
// Deny the "delete" operation if the billing schedule is referenced by
// subscriptions.
$is_referenced = (bool) $this->entityTypeManager
->getStorage('commerce_subscription')
->getQuery()
->accessCheck(FALSE)
->condition('billing_schedule', $entity
->id())
->count()
->execute();
if ($is_referenced) {
return AccessResult::forbidden();
}
}
return parent::checkAccess($entity, $operation, $account);
}