braintree_cashier-8.x-4.x-dev/src/BraintreeCashierSubscriptionAccessControlHandler.php
src/BraintreeCashierSubscriptionAccessControlHandler.php
<?php
namespace Drupal\braintree_cashier;
use Drupal\Core\Entity\EntityAccessControlHandler;
use Drupal\Core\Entity\EntityInterface;
use Drupal\Core\Session\AccountInterface;
use Drupal\Core\Access\AccessResult;
/**
* Access controller for the Braintree Cashier Subscription entity.
*
* @see \Drupal\braintree_cashier\Entity\BraintreeCashierSubscription.
*/
class BraintreeCashierSubscriptionAccessControlHandler extends EntityAccessControlHandler {
/**
* {@inheritdoc}
*/
protected function checkAccess(EntityInterface $entity, $operation, AccountInterface $account) {
/** @var \Drupal\braintree_cashier\Entity\BraintreeCashierSubscriptionInterface $entity */
return AccessResult::allowedIfHasPermission($account, 'administer braintree cashier');
}
/**
* {@inheritdoc}
*/
protected function checkCreateAccess(AccountInterface $account, array $context, $entity_bundle = NULL) {
return AccessResult::allowedIfHasPermission($account, 'administer braintree cashier');
}
}
